oasis_en.js 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078
  1. const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
  2. module.exports = {
  3. en: {
  4. languageName: "English",
  5. extended: "Multiverse",
  6. extendedDescription: [
  7. "When you support someone you may download posts from the inhabitants they support, and those posts show up here, sorted by recency.",
  8. ],
  9. popular: "Highlights",
  10. popularDescription: [
  11. "Posts from inhabitants in your network, ",
  12. strong("sorted by spreads"),
  13. ". Select the period of time, to get a list.",
  14. ],
  15. day: "DAY",
  16. week: "WEEK",
  17. month: "MONTH",
  18. year: "YEAR",
  19. latest: "Latest",
  20. latestDescription: [
  21. strong("Posts"),
  22. " from yourself and inhabitants you support, sorted by recency.",
  23. ],
  24. topics: "Topics",
  25. topicsDescription: [
  26. strong("Topics"),
  27. " from yourself and inhabitants you support, sorted by recency.",
  28. ],
  29. summaries: "Summaries",
  30. summariesDescription: [
  31. strong("Topics that have comments"),
  32. " from yourself and inhabitants you support, sorted by recency.",
  33. ],
  34. threads: "Threads",
  35. threadsDescription: [
  36. strong("Posts that have comments"),
  37. " from inhabitants you support (included from multiverse), sorted by recency.",
  38. ],
  39. profile: "Avatar",
  40. inhabitants: "Inhabitants",
  41. manualMode: "Manual Mode",
  42. mentions: "Mentions",
  43. mentionsDescription: [
  44. strong("Posts that @mention you"),
  45. ", sorted by recency.",
  46. ],
  47. nextPage: "Next",
  48. previousPage: "Previous",
  49. noMentions: "You haven't received @mentions, yet.",
  50. private: "Inbox",
  51. privateDescription: "View and manage your private messages.",
  52. privateInbox: "INBOX",
  53. privateSent: "SENT",
  54. privateFrom: "From",
  55. privateTo: "To",
  56. privateDate: "Date",
  57. privateDelete: "Delete",
  58. pmCreateButton: "Write a PM",
  59. pmReply: "Reply",
  60. pmReplies: "replies",
  61. pmNew: "new",
  62. pmMarkRead: "Mark as read",
  63. inReplyTo: "IN REPLY TO",
  64. pmPreview: "Preview",
  65. pmPreviewTitle: "Message preview",
  66. noPrivateMessages: "You haven't received any private message, yet.",
  67. peers: "Peers",
  68. privateDescription: ["Private messages are ",strong("encrypted for your public key")," and have a maximum of 7 recipients."],
  69. search: "Search",
  70. searchDescription: "Description",
  71. imageSearch: "Image Search",
  72. searchPlaceholder: "Seek for @inhabitants, #tags and keywords...",
  73. settings: "Settings",
  74. continueReading: "Continue reading",
  75. moreComments: "more comment",
  76. readThread: "read the rest of the thread",
  77. pixeliaTitle: 'Pixelia',
  78. pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.',
  79. coordLabel: 'Coordinate (e.g., A3)',
  80. coordPlaceholder: 'Enter coordinate',
  81. contributorsTitle: "Contributors",
  82. pixeliaBy: "by",
  83. colorLabel: 'Pick a color',
  84. paintButton: 'Paint it!',
  85. invalidCoordinate: 'Incorrect coordinate',
  86. goToMuralButton: "View Mural",
  87. totalPixels: 'Total Pixels',
  88. modules: "Modules",
  89. modulesViewTitle: "Modules",
  90. modulesViewDescription: "Set your environment by enabling or disabling modules.",
  91. inbox: "Inbox",
  92. multiverse: "Multiverse",
  93. popularLabel: "Highlights",
  94. topicsLabel: "Topics",
  95. latestLabel: "Latest",
  96. summariesLabel: "Summaries",
  97. threadsLabel: "Threads",
  98. multiverseLabel: "Multiverse",
  99. inboxLabel: "Inbox",
  100. invitesLabel: "Invites",
  101. walletLabel: "Wallet",
  102. legacyLabel: "Keys",
  103. cipherLabel: "Crypter",
  104. bookmarksLabel: "Bookmarks",
  105. videosLabel: "Videos",
  106. torrentsLabel: "Torrents",
  107. docsLabel: "Documents",
  108. audiosLabel: "Audios",
  109. tagsLabel: "Tags",
  110. imagesLabel: "Images",
  111. inhabitantsLabel: "Inhabitants",
  112. trendingLabel: "Trending",
  113. eventsLabel: "Events",
  114. tasksLabel: "Tasks",
  115. transfersTitle: "Transfers",
  116. marketTitle: "Market",
  117. opinionsTitle: "Opinions",
  118. saveSettings: "Save configuration",
  119. apply: "Apply",
  120. menuPersonal: "Personal",
  121. menuContent: "Content",
  122. menuGovernance: "Governance",
  123. menuOffice: "Office",
  124. menuMultiverse: "Multiverse",
  125. menuNetwork: "Network",
  126. menuCreative: "Creative",
  127. menuEconomy: "Economy",
  128. menuMedia: "Media",
  129. menuTools: "Tools",
  130. comment: "Comment",
  131. subtopic: "Subtopic",
  132. json: "JSON",
  133. createdAt: "Created At",
  134. createdBy: "by",
  135. unfollow: "Unsupport",
  136. follow: "Support",
  137. block: "Block",
  138. unblock: "Unblock",
  139. newerPosts: "Newer posts",
  140. olderPosts: "Older posts",
  141. feedRangeEmpty: "The given range is empty for this feed. Try viewing the ",
  142. seeFullFeed: "full feed",
  143. feedEmpty: "The Oasis network has never seen posts from this account.",
  144. beginningOfFeed: "This is the beginning of the feed",
  145. noNewerPosts: "No newer posts have been received yet.",
  146. relationshipNotFollowing: "You are not supported",
  147. relationshipTheyFollow: "Supports you",
  148. relationshipMutuals: "Mutual support",
  149. relationshipFollowing: "You are supporting",
  150. relationshipYou: "You",
  151. relationshipBlocking: "You are blocking",
  152. relationshipBlockedBy: "You are blocked",
  153. relationshipMutualBlock: "Mutual block",
  154. relationshipNone: "You are not supporting",
  155. relationshipConflict: "Conflict",
  156. relationshipBlockingPost: "Blocked post",
  157. viewLikes: "View spreads",
  158. spreadedDescription: "List of posts spread by the inhabitant.",
  159. totalspreads: "Total spreads",
  160. attachFiles: "Attach files",
  161. preview: "Preview",
  162. publish: "Write",
  163. contentWarningPlaceholder: "Add a subject to the post (optional)",
  164. privateWarningPlaceholder: "Add inhabitants to send a private post (optional)",
  165. publishWarningPlaceholder: "...",
  166. publishCustomDescription: [
  167. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  168. ],
  169. commentWarning: [
  170. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  171. ],
  172. commentPublic: "public",
  173. commentPrivate: "private",
  174. commentLabel: ({ publicOrPrivate, markdownUrl }) => [
  175. ],
  176. publishLabel: ({ markdownUrl, linkTarget }) => [
  177. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  178. ],
  179. replyLabel: ({ markdownUrl }) => [
  180. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  181. ],
  182. publishCustomInfo: ({ href }) => [
  183. "If you have experience, you can also ",
  184. a({ href }, "write an advanced post"),
  185. ".",
  186. ],
  187. publishBasicInfo: ({ href }) => [
  188. "If you have not experience, you should ",
  189. a({ href }, "write a post"),
  190. ".",
  191. ],
  192. publishCustom: "Write advanced post",
  193. subtopicLabel: "Create a subtopic of this post",
  194. messagePreview: "Post Preview",
  195. mentionsMatching: "Matching Mentions",
  196. mentionsName: "Name",
  197. mentionsRelationship: "Relationship",
  198. updateit: "GET UPDATES!",
  199. updateBannerText: "A new version of Oasis is available.",
  200. updateBannerAction: "Update now →",
  201. info: "Info",
  202. settingsIntro: ({ version }) => [
  203. `[SNH] ꖒ OASIS [ v.${version} ]`,
  204. ],
  205. timeAgo: "ago",
  206. sendTime: "about ",
  207. theme: "Theme",
  208. legacy: "Keys",
  209. legacyTitle: "Keys",
  210. legacyDescription: "Manage your secret (private key) quickly and safely.",
  211. legacyExportButton: "Export",
  212. legacyImportButton: "Import",
  213. ssbLogStream: "Blokchain",
  214. ssbLogStreamDescription: "Configure the message limit for Blockchain streams.",
  215. saveSettings: "Save settings",
  216. exportTitle: "Export data",
  217. exportDescription: "Set password (min 32 characters long) to encrypt your key",
  218. exportDataTitle: "Backup",
  219. exportDataDescription: "Download your data (secret key excluded!)",
  220. exportDataButton: "Download database",
  221. pubWallet: "PUB Wallet",
  222. pubWalletDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).",
  223. pubWalletConfiguration: "Save configuration",
  224. importTitle: "Import data",
  225. importDescription: "Import your encrypted secret (private key) to enable your avatar",
  226. importAttach: "Attach encrypted file (.enc)",
  227. passwordLengthInfo: "Password must be at least 32 characters long.",
  228. passwordImport: "Write your password to decrypt data that will be saved at your system home (name: secret)",
  229. randomPassword: "Random password",
  230. exportPasswordPlaceholder: "Use lowercase, uppercase, numbers & symbols",
  231. fileInfo: "Your encrypted secret key will be saved at your system home (name: oasis.enc)",
  232. themeIntro:
  233. "Choose a theme.",
  234. setTheme: "Set theme",
  235. language: "Language",
  236. languageDescription:
  237. "If you'd like to use another language, select it here.",
  238. setLanguage: "Set language",
  239. status: "Status",
  240. peerConnections: "Peers",
  241. peerConnectionsIntro: "Manage all your connections with other peers.",
  242. online: "Online",
  243. offline: "Offline",
  244. discovered: 'Discovered',
  245. unknown: 'Unknown',
  246. pub: 'PUB',
  247. supported: "Supported",
  248. recommended: "Recommended",
  249. blocked: "Blocked",
  250. noConnections: "No peers connected.",
  251. noDiscovered: "No peers discovered.",
  252. noSupportedConnections: "No peers supported.",
  253. noBlockedConnections: "No peers blocked.",
  254. noRecommendedConnections: "No peers recommended.",
  255. connectionActionIntro:
  256. "",
  257. startNetworking: "Start networking",
  258. stopNetworking: "Stop networking",
  259. restartNetworking: "Restart networking",
  260. sync: "Sync network",
  261. indexes: "Indexes",
  262. indexesDescription:
  263. "Rebuilding your indexes is safe, and may fix some types of bugs.",
  264. homePageTitle: "Home",
  265. homePageDescription: "Select which module you want as your home page.",
  266. saveHomePage: "Set home",
  267. invites: "Invites",
  268. invitesTitle: "Invites",
  269. invitesInvites: "Invitations",
  270. invitesDescription: "Manage and apply invite codes in your network.",
  271. invitesTribesTitle: "Tribes",
  272. invitesTribeInviteCodePlaceholder: "Enter tribe invite code",
  273. invitesTribeJoinButton: "Join Tribe",
  274. invitesPubsTitle: "PUBs",
  275. invitesPubInviteCodePlaceholder: "Enter PUB invite code",
  276. invitesAcceptInvite: "Join PUB",
  277. invitesAcceptedInvites: "Federated Networks",
  278. invitesNoInvites: "No invitations accepted, yet.",
  279. invitesUnfollow: "Unfollow",
  280. invitesFollow: "Follow",
  281. invitesUnfollowedInvites: "Unfederated Networks",
  282. invitesNoFederatedPubs: "No federated networks.",
  283. invitesNoUnfollowed: "No unfederated networks.",
  284. invitesUnreachablePubs: "Unreachable Networks",
  285. invitesNoUnreachablePubs: "No unreachable networks.",
  286. currentlyUnreachable: "ERROR!",
  287. errorDetails: "Error Details",
  288. genericError: "An error occurred.",
  289. panicMode: "Panic Mode!",
  290. encryptData: "Set password (min 32 characters long) to encrypt your blockchain",
  291. decryptData: "Enter password to decrypt your blockchain",
  292. panicModeDescription: "Encrypt/Decrypt or DELETE your blockchain",
  293. removeDataDescription: "WARNING: This process cannot be undone.",
  294. encryptPanicButton: "Encrypt blockchain",
  295. decryptPanicButton: "Decrypt blockchain",
  296. removePanicButton: "DELETE ALL YOUR DATA!",
  297. searchTitle: "Search",
  298. searchDescriptionLabel: "Search for content in your network.",
  299. searchLanguagesLabel: "Languages",
  300. searchSkillsLabel: "Skills",
  301. searchPlaceholder:"Search for content...",
  302. searchSubmit:"Search!",
  303. tribeLocationLabel:"Location",
  304. tribeModeLabel:"Invite Mode",
  305. tribeMembersCount:"Members Count",
  306. searchDateLabel:"Date",
  307. searchLocationLabel:"Location",
  308. searchPriceLabel:"Price",
  309. searchUrlLabel:"URL",
  310. searchCategoryLabel:"Category",
  311. searchStartLabel:"Start Time",
  312. searchEndLabel:"End Time",
  313. searchPriorityLabel:"Priority",
  314. searchStatusLabel:"Status",
  315. statusLabel:"Status",
  316. totalVotesLabel:"Total Votes",
  317. votesLabel:"Votes",
  318. noResultsFound:"No results found.",
  319. author:"Author",
  320. createdAtLabel:"Created at",
  321. hashtagDescription:"Explore the content associated with this hashtag",
  322. tribeDescriptionLabel:"Description",
  323. votesOption:"Vote Options",
  324. voteYesLabel:"Yes",
  325. voteNoLabel:"No",
  326. allTypesLabel: "UNLIMITED",
  327. ABSTENTIONLabel:"ABSTENTION",
  328. YESLabel:"YES",
  329. NOLabel:"NO",
  330. FOLLOW_MAJORITYLabel: "FOLLOW MAJORITY",
  331. CONFUSEDLabel: "CONFUSED",
  332. NOT_INTERESTEDLabel: "NOT INTERESTED",
  333. voteOptionYes:"Yes",
  334. voteOptionNo:"No",
  335. voteOptionAbstention:"Abstention",
  336. StatusLabel:"Status",
  337. votesOptionYesLabel:"Yes",
  338. votesOptionNoLabel:"No",
  339. votesOptionAbstentionLabel:"Abstention",
  340. votesQuestionLabel:"Question",
  341. votesCreatedByLabel:"Created by",
  342. voteStatusOpen:"OPEN",
  343. voteStatusClosed:"CLOSED",
  344. imageSearchLabel: "Enter words to search for images labelled with them.",
  345. commentDescription: ({ parentUrl }) => [
  346. " commented on ",
  347. a({ href: parentUrl }, " thread"),
  348. ],
  349. commentTitle: ({ authorName }) => [`Comment on @${authorName}'s post`],
  350. subtopicDescription: ({ parentUrl }) => [
  351. " created a subtopic from ",
  352. a({ href: parentUrl }, " a post"),
  353. ],
  354. subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`],
  355. mysteryDescription: "posted a mysterious post",
  356. oasisDescription: "OASIS Project Network",
  357. searchSubmit: "Let's Search...",
  358. hashtagDescription: "Posts tagged with this hashtag.",
  359. postLabel: "POSTS",
  360. aboutLabel: "INHABITANTS",
  361. feedLabel: "FEEDS",
  362. votesLabel: "VOTATIONS",
  363. reportLabel: "REPORTS",
  364. imageLabel: "IMAGES",
  365. videoLabel: "VIDEOS",
  366. audioLabel: "AUDIOS",
  367. documentLabel: "DOCUMENTS",
  368. pdfFallbackLabel: "PDF Document",
  369. eventLabel: "EVENTS",
  370. taskLabel: "TASKS",
  371. transferLabel: "TRANSFERS",
  372. curriculumLabel: "CURRICULUM",
  373. bookmarkLabel: "BOOKMARKS",
  374. tribeLabel: "TRIBES",
  375. marketLabel: "MARKET",
  376. shopLabel: "SHOPS",
  377. shopProductLabel: "SHOP PRODUCTS",
  378. mapLabel: "MAPS",
  379. jobLabel: "JOBS",
  380. forumLabel: "FORUMS",
  381. projectLabel: "PROJECTS",
  382. bankWalletLabel: "WALLETS",
  383. bankClaimLabel: "UBI CLAIMS",
  384. voteLabel: "VOTES",
  385. contactLabel: "CONTACTS",
  386. pubLabel: "PUBS",
  387. cvLabel: "CVs",
  388. submit: "Submit",
  389. subjectLabel: "Subject",
  390. editProfile: "Edit Avatar",
  391. editProfileDescription:
  392. "",
  393. profileName: "Name",
  394. profileImage: "Avatar Image",
  395. profileDescription: "Description",
  396. hashtagDescription:
  397. "Posts from inhabitants in your network that reference this #hashtag, sorted by recency.",
  398. rebuildName: "Rebuild database",
  399. wallet: "Wallet",
  400. walletAddress: "Address",
  401. walletAmount: "Amount",
  402. walletAddressLine: ({ address }) => `Address: ${address}`,
  403. walletAmountLine: ({ amount }) => `Amount: ${amount} ECO`,
  404. walletBack: "Back",
  405. walletBalanceTitle: "Balance",
  406. walletWalletSendTitle: "Send",
  407. walletReceiveTitle: "Receive",
  408. walletHistoryTitle: "History",
  409. walletBalanceLine: ({ balance }) => `${balance} ECO`,
  410. walletCnfrs: "Cnfrs",
  411. walletConfirm: "Confirm",
  412. walletDescription: "Manage your digital assets, including sending and receiving ECOin, viewing your balance, and accessing your transaction history.",
  413. walletDate: "Date",
  414. walletFee: "Fee (The higher the fee, the faster your transaction will be processed)",
  415. walletFeeLine: ({ fee }) => `Fee: ECO ${fee}`,
  416. walletHistory: "History",
  417. walletReceive: "Receive",
  418. walletReset: "Reset",
  419. walletSend: "Send",
  420. walletStatus: "Status",
  421. walletDisconnected: [
  422. "ECOin ",
  423. strong("wallet disconnected"),
  424. ". Check ",
  425. a({ href: '/settings' }, "your settings"),
  426. " or connection status.",
  427. ],
  428. walletSentToLine: ({ destination, amount }) => `Sent ECO ${amount} to ${destination}`,
  429. walletSettingsTitle: "Wallet",
  430. walletSettingsDescription: "Integrate Oasis with your ECOin wallet.",
  431. walletSettingsDocLink: "ECOin installation guide",
  432. walletStatusMessages: {
  433. invalid_amount: "Invalid amount",
  434. invalid_dest: "Invalid destination address",
  435. invalid_fee: "Invalid fee",
  436. validation_errors: "Validation errors",
  437. send_tx_success: "Transaction successful",
  438. },
  439. walletTitle: "Wallet",
  440. walletTotalCostLine: ({ totalCost }) => `Total cost: ECO ${totalCost}`,
  441. walletTransactionId: "Transaction ID",
  442. walletTxId: "Tx ID",
  443. walletType: "Type",
  444. walletUser: "Username",
  445. walletPass: "Password",
  446. walletConfiguration: "Set wallet",
  447. cipher: "Crypter",
  448. cipherTitle: "Crypter",
  449. cipherDescription: "Encrypt and decrypt your text symmetrically (using a shared password).",
  450. randomPassword: "Random Password",
  451. cipherEncryptTitle: "Encrypt Text",
  452. cipherEncryptDescription: "Enter text to encrypt",
  453. cipherTextLabel: "Text to Encrypt",
  454. cipherTextPlaceholder: "Enter text to encrypt...",
  455. cipherPasswordLabel: "Set password (min 32 characters long) to encrypt your text",
  456. cipherPasswordDecryptLabel: "Set password (min 32 characters long) to decrypt your text",
  457. cipherPasswordPlaceholder: "Enter a password...",
  458. cipherEncryptButton: "Encrypt",
  459. cipherDecryptTitle: "Decrypt Text",
  460. cipherDecryptDescription: "Enter text to decrypt",
  461. cipherEncryptedMessageLabel: "Encrypted Text",
  462. cipherDecryptedMessageLabel: "Decrypted Text",
  463. cipherPasswordUsedLabel: "Password used to encrypt (keep it!)",
  464. cipherEncryptedTextPlaceholder: "Enter the encrypted text...",
  465. cipherIvLabel: "IV",
  466. cipherIvPlaceholder: "Enter the initialization vector...",
  467. cipherDecryptButton: "Decrypt",
  468. password: "Password",
  469. text: "Text",
  470. encryptedText: "Encrypted Text",
  471. iv: "Initialization Vector (IV)",
  472. encryptTitle: "Encrypt your text",
  473. encryptDescription: "Enter the text you want to encrypt and provide a password.",
  474. encryptButton: "Encrypt",
  475. decryptTitle: "Decrypt your text",
  476. decryptDescription: "Enter the encrypted text and provide the same password used for encryption.",
  477. decryptButton: "Decrypt",
  478. passwordLengthError: "Password must be at least 32 characters long.",
  479. missingFieldsError: "Text, password or IV not provided.",
  480. encryptionError: "Error encrypting text.",
  481. decryptionError: "Error decrypting text.",
  482. bookmarkTitle: "Bookmarks",
  483. bookmarkDescription: "Discover and manage bookmarks in your network.",
  484. bookmarkAllSectionTitle: "Bookmarks",
  485. bookmarkMineSectionTitle: "Your Bookmarks",
  486. bookmarkRecentSectionTitle: "Recent Bookmarks",
  487. bookmarkTopSectionTitle: "Top Bookmarks",
  488. bookmarkFavoritesSectionTitle: "Favorites",
  489. bookmarkCreateSectionTitle: "Create Bookmark",
  490. bookmarkUpdateSectionTitle: "Update Bookmark",
  491. bookmarkFilterAll: "ALL",
  492. bookmarkFilterMine: "MINE",
  493. bookmarkFilterTop: "TOP",
  494. bookmarkFilterFavorites: "FAVORITES",
  495. bookmarkFilterRecent: "RECENT",
  496. bookmarkCreateButton: "Create Bookmark",
  497. bookmarkUpdateButton: "Update",
  498. bookmarkDeleteButton: "Delete",
  499. bookmarkAddFavoriteButton: "Add favorite",
  500. bookmarkRemoveFavoriteButton: "Remove favorite",
  501. bookmarkUrlLabel: "Link",
  502. bookmarkUrlPlaceholder: "https://example.com",
  503. bookmarkDescriptionLabel: "Description",
  504. bookmarkDescriptionPlaceholder: "Optional",
  505. bookmarkTagsLabel: "Tags",
  506. bookmarkTagsPlaceholder: "Enter tags separated by commas",
  507. bookmarkCategoryLabel: "Category",
  508. bookmarkCategoryPlaceholder: "Optional",
  509. bookmarkLastVisitLabel: "Last Visit",
  510. bookmarkSearchPlaceholder: "Search URL, tags, category, author...",
  511. bookmarkSortRecent: "Most recent",
  512. bookmarkSortOldest: "Oldest",
  513. bookmarkSortTop: "Most voted",
  514. bookmarkSearchButton: "Search",
  515. bookmarkUpdatedAt: "Updated",
  516. bookmarkNoMatch: "No bookmarks match your search.",
  517. noBookmarks: "No bookmarks available.",
  518. noUrl: "No link",
  519. noCategory: "No category",
  520. noLastVisit: "No last visit",
  521. videoTitle: "Videos",
  522. videoDescription: "Explore and manage video content in your network.",
  523. videoPluginTitle: "Title",
  524. videoPluginDescription: "Description",
  525. videoMineSectionTitle: "Your Videos",
  526. videoCreateSectionTitle: "Upload Video",
  527. videoUpdateSectionTitle: "Update Video",
  528. videoAllSectionTitle: "Videos",
  529. videoRecentSectionTitle: "Recent Videos",
  530. videoTopSectionTitle: "Top Videos",
  531. videoFavoritesSectionTitle: "Favorites",
  532. videoFilterAll: "ALL",
  533. videoFilterMine: "MINE",
  534. videoFilterRecent: "RECENT",
  535. videoFilterTop: "TOP",
  536. videoFilterFavorites: "FAVORITES",
  537. videoCreateButton: "Upload Video",
  538. videoUpdateButton: "Update",
  539. videoDeleteButton: "Delete",
  540. videoAddFavoriteButton: "Add favorite",
  541. videoRemoveFavoriteButton: "Remove favorite",
  542. videoFileLabel: "Select a video file (.mp4, .webm, .ogv, .mov)",
  543. videoTagsLabel: "Tags",
  544. videoTagsPlaceholder: "Enter tags separated by commas",
  545. videoTitleLabel: "Title",
  546. videoTitlePlaceholder: "Optional",
  547. videoDescriptionLabel: "Description",
  548. videoDescriptionPlaceholder: "Optional",
  549. videoNoFile: "No video file provided",
  550. noVideos: "No videos available.",
  551. videoSearchPlaceholder: "Search title, tags, author...",
  552. videoSortRecent: "Most recent",
  553. videoSortOldest: "Oldest",
  554. videoSortTop: "Most voted",
  555. videoSearchButton: "Search",
  556. videoMessageAuthorButton: "PM",
  557. videoUpdatedAt: "Updated",
  558. videoNoMatch: "No videos match your search.",
  559. documentTitle: "Documents",
  560. documentDescription: "Discover and manage documents in your network.",
  561. documentAllSectionTitle: "Documents",
  562. documentMineSectionTitle: "Your Documents",
  563. documentRecentSectionTitle: "Recent Documents",
  564. documentTopSectionTitle: "Top Documents",
  565. documentFavoritesSectionTitle: "Favorites",
  566. documentCreateSectionTitle: "Upload Document",
  567. documentUpdateSectionTitle: "Edit Document",
  568. documentFilterAll: "ALL",
  569. documentFilterMine: "MINE",
  570. documentFilterRecent: "RECENT",
  571. documentFilterTop: "TOP",
  572. documentFilterFavorites: "FAVORITES",
  573. documentCreateButton: "Upload Document",
  574. documentUpdateButton: "Update",
  575. documentDeleteButton: "Delete",
  576. documentAddFavoriteButton: "Add favorite",
  577. documentRemoveFavoriteButton: "Remove from favorites",
  578. documentMessageAuthorButton: "PM",
  579. documentFileLabel: "Upload Document (.pdf)",
  580. documentTagsLabel: "Tags",
  581. documentTagsPlaceholder: "Enter tags separated by commas",
  582. documentTitleLabel: "Title",
  583. documentTitlePlaceholder: "Optional",
  584. documentDescriptionLabel: "Description",
  585. documentDescriptionPlaceholder: "Optional",
  586. documentNoFile: "No file.",
  587. noDocuments: "No documents available.",
  588. documentSearchPlaceholder: "Search title, tags, description, author...",
  589. documentSortRecent: "Most recent",
  590. documentSortOldest: "Oldest",
  591. documentSortTop: "Most voted",
  592. documentSearchButton: "Search",
  593. documentNoMatch: "No documents match your search.",
  594. documentUpdatedAt: "Updated",
  595. audioTitle: "Audios",
  596. audioDescription: "Explore and manage audio content in your network.",
  597. audioPluginTitle: "Title",
  598. audioPluginDescription: "Description",
  599. audioMineSectionTitle: "Your Audios",
  600. audioCreateSectionTitle: "Upload Audio",
  601. audioUpdateSectionTitle: "Update Audio",
  602. audioAllSectionTitle: "Audios",
  603. audioRecentSectionTitle: "Recent Audios",
  604. audioTopSectionTitle: "Top Audios",
  605. audioFilterAll: "ALL",
  606. audioFilterMine: "MINE",
  607. audioFilterRecent: "RECENT",
  608. audioFilterTop: "TOP",
  609. audioCreateButton: "Upload Audio",
  610. audioUpdateButton: "Update",
  611. audioDeleteButton: "Delete",
  612. audioAddFavoriteButton: "Add favorite",
  613. audioRemoveFavoriteButton: "Remove favorite",
  614. audioFileLabel: "Select an audio file (.mp3, .wav, .ogg)",
  615. audioTagsLabel: "Tags",
  616. audioTagsPlaceholder: "Enter tags separated by commas",
  617. audioTitleLabel: "Title",
  618. audioTitlePlaceholder: "Optional",
  619. audioDescriptionLabel: "Description",
  620. audioDescriptionPlaceholder: "Optional",
  621. audioNoFile: "No audio file provided",
  622. noAudios: "No audios available.",
  623. audioSearchPlaceholder: "Search title, tags, author...",
  624. audioSortRecent: "Most recent",
  625. audioSortOldest: "Oldest",
  626. audioSortTop: "Most voted",
  627. audioSearchButton: "Search",
  628. audioMessageAuthorButton: "PM",
  629. audioUpdatedAt: "Updated",
  630. audioNoMatch: "No audios match your search.",
  631. audioFavoritesSectionTitle: "Favorites",
  632. audioFilterFavorites: "FAVORITES",
  633. favoritesTitle: "Favorites",
  634. favoritesDescription: "All your favorited media in one place.",
  635. favoritesFilterAll: "ALL",
  636. favoritesFilterRecent: "RECENT",
  637. favoritesFilterAudios: "AUDIOS",
  638. favoritesFilterBookmarks: "BOOKMARKS",
  639. favoritesFilterDocuments: "DOCUMENTS",
  640. favoritesFilterImages: "IMAGES",
  641. favoritesFilterMaps: "MAPS",
  642. favoritesFilterPads: "PADS",
  643. favoritesFilterChats: "CHATS",
  644. favoritesFilterCalendars: "CALENDARS",
  645. favoritesFilterVideos: "VIDEOS",
  646. favoritesRemoveButton: "Remove from favorites",
  647. favoritesNoItems: "No favorites yet.",
  648. yourContacts: "Your Contacts",
  649. allInhabitants: "Inhabitants",
  650. allCVs: "All CVs",
  651. discoverPeople: "Discover inhabitants in your network.",
  652. allInhabitantsButton: "ALL",
  653. contactsButton: "SUPPORTS",
  654. CVsButton: "CVs",
  655. matchSkills: "Match Skills",
  656. matchSkillsButton: "MATCH SKILLS",
  657. suggestedButton: "SUGGESTED",
  658. searchInhabitantsPlaceholder: "FILTER inhabitants BY NAME …",
  659. filterLocation: "FILTER inhabitants BY LOCATION …",
  660. filterLanguage: "FILTER inhabitants BY LANGUAGE …",
  661. filterSkills: "FILTER inhabitants BY SKILLS …",
  662. applyFilters: "Apply Filters",
  663. locationLabel: "Location",
  664. languagesLabel: "Languages",
  665. skillsLabel: "Skills",
  666. commonSkills: "Common Skills",
  667. mutualFollowers: "Mutual Followers",
  668. latestInteractions: "Latest Interactions",
  669. viewAvatar: "View Avatar",
  670. viewCV: "View CV",
  671. suggestedSectionTitle: "Suggested",
  672. topkarmaSectionTitle: "Top Karma",
  673. topactivitySectionTitle: "Top Activity",
  674. blockedSectionTitle: "Blocked",
  675. gallerySectionTitle: "GALLERY",
  676. blockedButton: "BLOCKED",
  677. blockedLabel: "Blocked User",
  678. inhabitantviewDetails: "View Details",
  679. viewDetails: "View Details",
  680. keepReading: "Keep reading...",
  681. oasisId: "ID",
  682. noInhabitantsFound: "No inhabitants found, yet.",
  683. inhabitantActivityLevel: "Activity Level",
  684. deviceLabel: "Device",
  685. parliamentTitle: "Parliament",
  686. parliamentDescription: "Explore forms of government and collective management laws.",
  687. parliamentFilterGovernment: "GOVERMENT",
  688. parliamentFilterCandidatures: "CANDIDATURES",
  689. parliamentFilterProposals: "PROPOSALS",
  690. parliamentFilterLaws: "LAWS",
  691. parliamentFilterHistorical: "HISTORICAL",
  692. parliamentFilterLeaders: "LEADERS",
  693. parliamentFilterRules: "RULES",
  694. parliamentGovernmentCard: "Current Government",
  695. parliamentGovMethod: "GOVERMENT METHOD",
  696. parliamentActorInPowerInhabitant: 'INHABITANT RULING',
  697. parliamentActorInPowerTribe: 'TRIBE RULING',
  698. parliamentHistoricalGovernmentsTitle: 'GOVERMENTS',
  699. parliamentHistoricalElectionsTitle: 'ELECTION CYCLES',
  700. parliamentHistoricalLawsTitle: 'HISTORICAL',
  701. parliamentHistoricalLeadersTitle: 'LEADERS',
  702. parliamentThCycles: 'CYCLES',
  703. parliamentThTimesInPower: 'RULING',
  704. parliamentThTotalCandidatures: 'CANDIDATURES',
  705. parliamentThProposed: 'LAWS PROPOSED',
  706. parliamentThApproved: 'LAWS APPROVED',
  707. parliamentThDeclined: 'LAWS DECLINED',
  708. parliamentThDiscarded: 'LAWS DISCARDED',
  709. parliamentVotesReceived: "VOTES RECIEVED",
  710. parliamentMembers: "MEMBERS",
  711. parliamentLegSince: "CYCLE SINCE",
  712. parliamentLegEnd: "CYCLE END",
  713. parliamentPoliciesProposal: "LAWS PROPOSAL",
  714. parliamentPoliciesApproved: "LAWS APPROVED",
  715. parliamentPoliciesDeclined: "LAWS DECLINED",
  716. parliamentPoliciesDiscarded: "LAWS DISCARDED",
  717. parliamentEfficiency: "% EFFICIENCY",
  718. parliamentFilterRevocations: 'REVOCATIONS',
  719. parliamentRevocationFormTitle: 'Revocate Law',
  720. parliamentRevocationLaw: 'Law',
  721. parliamentRevocationTitle: 'Title',
  722. parliamentRevocationReasons: 'Reasons',
  723. parliamentRevocationPublish: 'Publish Revocation',
  724. parliamentCurrentRevocationsTitle: 'Current Revocations',
  725. parliamentFutureRevocationsTitle: 'Future Revocations',
  726. parliamentPoliciesRevocated: 'LAWS REVOCATED',
  727. parliamentPoliciesTitle: 'HISTORICAL',
  728. parliamentLawsTitle: 'LAWS APPROVED',
  729. parliamentRulesRevocations: 'Any approved law can be revocate using current goverment method ruling.',
  730. parliamentNoStableGov: "No goverment choosen, yet.",
  731. parliamentNoGovernments: "There are not governments, yet.",
  732. parliamentCandidatureFormTitle: "Propose Candidature",
  733. parliamentCandidatureId: "Candidature",
  734. parliamentCandidatureIdPh: "Oasis ID (@...) or Tribe name",
  735. parliamentCandidatureSlogan: "Slogan (max 140 chars)",
  736. parliamentCandidatureSloganPh: "A short motto",
  737. parliamentCandidatureMethod: "Method",
  738. parliamentCandidatureProposeBtn: "Publish Candidature",
  739. parliamentThType: "Type",
  740. parliamentThId: "ID",
  741. parliamentThDate: "Proposal date",
  742. parliamentThSlogan: "Slogan",
  743. parliamentThMethod: "Method",
  744. parliamentThKarma: "Karma",
  745. parliamentThSince: "Profile since",
  746. parliamentThVotes: "Votes recieved",
  747. parliamentThVoteAction: "Vote",
  748. parliamentTypeUser: "Inhabitant",
  749. parliamentTypeTribe: "Tribe",
  750. parliamentVoteBtn: "Vote",
  751. parliamentProposalFormTitle: "Propose Law",
  752. parliamentProposalTitle: "Title",
  753. parliamentProposalDescription: "Description (≤1000)",
  754. parliamentProposalPublish: "Publish Proposal",
  755. parliamentOpenVote: "Open vote",
  756. parliamentFinalize: "Finalize",
  757. parliamentDeadline: "Deadline",
  758. parliamentStatus: "Status",
  759. parliamentNoProposals: "There are not law proposals, yet.",
  760. parliamentNoLaws: "There are not laws approved, yet.",
  761. parliamentLawMethod: "Method",
  762. parliamentLawProposer: "Proposed by",
  763. parliamentLawVotes: "YES/Total",
  764. parliamentLawEnacted: "Enacted at",
  765. parliamentMethodDEMOCRACY: "Democracy",
  766. parliamentMethodMAJORITY: "Majority (80%)",
  767. parliamentMethodMINORITY: "Minority (20%)",
  768. parliamentMethodDICTATORSHIP: "Dictatorship",
  769. parliamentMethodKARMATOCRACY: "Karmatocracy",
  770. parliamentMethodANARCHY: "Anarchy",
  771. parliamentThId: "ID",
  772. parliamentThProposalDate: "Proposal date",
  773. parliamentThMethod: "Method",
  774. parliamentThKarma: "Karma",
  775. parliamentThSupports: "Supports",
  776. parliamentThVote: "Vote",
  777. parliamentCurrentProposalsTitle: "Current Proposals",
  778. parliamentVotesSlashTotal: "Votes/Total",
  779. parliamentVotesNeeded: "Votes Needed",
  780. parliamentFutureLawsTitle: "Future Laws",
  781. parliamentNoFutureLaws: "No future laws, yet.",
  782. parliamentVoteAction: "Vote",
  783. parliamentLeadersTitle: "Leaders",
  784. parliamentThLeader: "AVATAR",
  785. parliamentPopulation: "Population",
  786. parliamentThType: "Type",
  787. parliamentThInPower: "In power",
  788. parliamentThPresented: "CANDIDATURES",
  789. parliamentNoLeaders: "No leaders, yet.",
  790. typeParliament: "PARLIAMENT",
  791. typeParliamentCandidature: "Parliament · Candidature",
  792. typeParliamentTerm: "Parliament · Term",
  793. typeParliamentProposal: "Parliament · Proposal",
  794. typeParliamentLaw: "Parliament · New Law",
  795. typeCourts: "Courts",
  796. parliamentLawQuestion: "Question",
  797. parliamentStatus: "Status",
  798. parliamentCandidaturesListTitle: "List of Candidatures",
  799. parliamentElectionsEnd: "Election end",
  800. parliamentTimeRemaining: "Time remaining",
  801. parliamentCurrentLeader: "Winning candidature",
  802. parliamentNoLeader: "No winning candidature, yet.",
  803. parliamentElectionsStatusTitle: "Next Government",
  804. parliamentElectionsStart: "Election start",
  805. parliamentProposalDeadlineLabel: "Deadline",
  806. parliamentProposalTimeLeft: "Time left",
  807. parliamentProposalOnTrack: "On track to pass",
  808. parliamentProposalOffTrack: "Not enough support yet",
  809. parliamentRulesTitle: "How Parliament works",
  810. parliamentRulesIntro: "Election resolve every 2 months; candidatures are continuous and reset when a government is chosen.",
  811. 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.",
  812. parliamentRulesElection: "The winner is the candidature with the most votes at resolution time.",
  813. parliamentRulesTies: "Tie-break order: highest inhabitant karma; if tied, oldest profile; if still tied, earliest proposal; then lexicographic by ID.",
  814. parliamentRulesFallback: "If no one votes, the latest proposed candidature wins. If there are no candidatures, a random tribe is selected.",
  815. parliamentRulesTerm: "The Government tab shows the current government and stats.",
  816. parliamentRulesMethods: "Forms: Anarchy (simple majority), Democracy (50%+1), Majority (80%), Minority (20%), Karmatocracy (highest-karma proposals), Dictatorship (instant approval).",
  817. parliamentRulesAnarchy: "Anarchy is the default mode: if no candidature is elected at resolution, Anarchy is proclaimed. Under Anarchy, any inhabitant can propose laws.",
  818. 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.",
  819. parliamentRulesLimit: "Each inhabitant may publish at most 3 law proposals per cycle.",
  820. parliamentRulesLaws: "When a proposal meets its threshold, it becomes a Law and appears in the Laws tab with its enactment date.",
  821. parliamentRulesHistorical: "In the Historical tab you can see every government cycle that has occurred and data about its management.",
  822. parliamentRulesLeaders: "In the Leaders tab you can see a ranking of inhabitants/tribes that have governed (or stood as candidates), ordered by efficiency.",
  823. parliamentProposalVoteStatusLabel: "Vote status",
  824. parliamentProposalOnTrackYes: "Threshold reached",
  825. parliamentProposalOnTrackNo: "Below threshold",
  826. courtsTitle: "Courts",
  827. courtsDescription: "Explore forms of conflict resolution and collective justice management.",
  828. courtsFilterCases: "CASES",
  829. courtsFilterMyCases: "MINE",
  830. courtsFilterJudges: "JUDGES",
  831. courtsFilterHistory: "HISTORY",
  832. courtsFilterRules: "RULES",
  833. courtsFilterOpenCase: "OPEN CASE",
  834. courtsCaseFormTitle: "Open Case",
  835. courtsCaseTitle: "Title",
  836. courtsCaseRespondent: "Accused / Respondent",
  837. courtsCaseRespondentPh: "Oasis ID (@...) or Tribe name",
  838. courtsCaseMediatorsAccuser: "Mediators (accuser)",
  839. courtsCaseMediatorsPh: "Oasis IDs, separated by comma",
  840. courtsCaseMethod: "Resolution method",
  841. courtsCaseDescription: "Description (max 1000 chars.)",
  842. courtsCaseEvidenceTitle: "Case evidence",
  843. courtsCaseEvidenceHelp: "Attach images, audios, documents (PDF) or videos that support your case.",
  844. courtsCaseSubmit: "File Case",
  845. courtsNominateJudge: "Nominate Judge",
  846. courtsJudgeId: "Judge",
  847. courtsJudgeIdPh: "Oasis ID (@...) or Inhabitant name",
  848. courtsNominateBtn: "Nominate",
  849. courtsAddEvidence: "Add evidence",
  850. courtsEvidenceText: "Text",
  851. courtsEvidenceLink: "Link",
  852. courtsEvidenceLinkPh: "https://…",
  853. courtsEvidenceSubmit: "Attach",
  854. courtsAnswerTitle: "Answer the claim",
  855. courtsAnswerText: "Response brief",
  856. courtsAnswerSubmit: "Send response",
  857. courtsStanceDENY: "Deny",
  858. courtsStanceADMIT: "Admit",
  859. courtsStancePARTIAL: "Partial",
  860. courtsVerdictTitle: "Issue verdict",
  861. courtsVerdictResult: "Result",
  862. courtsVerdictOrders: "Orders",
  863. courtsVerdictOrdersPh: "Actions, deadlines, restorative steps ...",
  864. courtsIssueVerdict: "Issue verdict",
  865. courtsMediationPropose: "Propose settlement",
  866. courtsSettlementText: "Terms",
  867. courtsSettlementProposeBtn: "Propose",
  868. courtsNominationsTitle: "Judiciary nominations",
  869. courtsThJudge: "Judge",
  870. courtsThSupports: "Supports",
  871. courtsThDate: "Date",
  872. courtsThVote: "Vote",
  873. courtsNoNominations: "No nominations yet.",
  874. courtsAccuser: "Accuser",
  875. courtsRespondent: "Respondent",
  876. courtsRespondentInvalid: "Must be a valid SSB ID (@...ed25519)",
  877. courtsThStatus: "Status",
  878. courtsThAnswerBy: "Answer by",
  879. courtsThEvidenceBy: "Evidence by",
  880. courtsThDecisionBy: "Decision by",
  881. courtsThCase: "Case",
  882. courtsThCreatedAt: "Start date",
  883. courtsThActions: "Actions",
  884. courtsCaseMediatorsRespondentTitle: "Add defence mediators",
  885. courtsCaseMediatorsRespondent: "Mediators (defence)",
  886. courtsMediatorsAccuserLabel: "Mediators (accuser)",
  887. courtsMediatorsRespondentLabel: "Mediators (defence)",
  888. courtsMediatorsSubmit: "Save mediators",
  889. courtsVotesNeeded: "Votes needed",
  890. courtsVotesSlashTotal: "YES / TOTAL",
  891. courtsOpenVote: "Open vote",
  892. courtsPublicPrefLabel: "Visibility after resolution",
  893. courtsPublicPrefYes: "I agree this case can be fully public",
  894. courtsPublicPrefNo: "I prefer to keep the details private",
  895. courtsPublicPrefSubmit: "Save visibility preference",
  896. courtsNoCases: "No cases.",
  897. courtsNoMyCases: "You have no conflicts yet.",
  898. courtsNoHistory: "No recorded trials yet.",
  899. courtsMethodJUDGE: "Judge",
  900. courtsMethodDICTATOR: "Dictator",
  901. courtsMethodPOPULAR: "Popular",
  902. courtsMethodMEDIATION: "Mediation",
  903. courtsMethodKARMATOCRACY: "Karmatocracy",
  904. courtsMethod: "Method",
  905. courtsRulesTitle: "How Courts work",
  906. courtsRulesIntro: "Courts are a community-run process to resolve conflicts and promote restorative justice. Dialogue, clear evidence, and proportional remedies are prioritized.",
  907. 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).",
  908. 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.",
  909. courtsRulesEvidence: "Description up to 1000 characters. Attach relevant and lawful images, audio, video, and PDF documents. Do not share sensitive private data without consent.",
  910. courtsRulesDeliberation: "Hearings may be public or private. Judges ensure respect, request clarifications, and may discard irrelevant or unlawful material.",
  911. courtsRulesVerdict: "Restoration is prioritized: apologies, mediation agreements, content moderation, temporary restrictions, or other proportional measures. The reasoning must be recorded.",
  912. courtsRulesAppeals: "Appeal: allowed when there is new evidence or a clear procedural error. Must be filed within 7 days unless otherwise stated.",
  913. 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.",
  914. courtsRulesMisconduct: "Harassment, manipulation, or fabricated evidence may lead to immediate negative resolution.",
  915. courtsRulesGlossary: "Case: record of a conflict. Evidence: materials that support claims. Verdict: decision with remedy. Appeal: request to review the verdict.",
  916. courtsFilterActions: "ACTIONS",
  917. courtsNoActions: "No pending actions for your role.",
  918. courtsCaseTitlePlaceholder: "Short description of the conflict",
  919. courtsCaseSeverity: "Severity",
  920. courtsCaseSeverityNone: "No severity tag",
  921. courtsCaseSeverityLOW: "Low",
  922. courtsCaseSeverityMEDIUM: "Medium",
  923. courtsCaseSeverityHIGH: "High",
  924. courtsCaseSeverityCRITICAL: "Critical",
  925. courtsCaseSubject: "Topic",
  926. courtsCaseSubjectNone: "No topic tag",
  927. courtsCaseSubjectBEHAVIOUR: "Behaviour",
  928. courtsCaseSubjectCONTENT: "Content",
  929. courtsCaseSubjectGOVERNANCE: "Governance / rules",
  930. courtsCaseSubjectFINANCIAL: "Financial / resources",
  931. courtsCaseSubjectOTHER: "Other",
  932. courtsHiddenRespondent: "Hidden (only visible to involved roles).",
  933. courtsThRole: "Role",
  934. courtsRoleAccuser: "Accuser",
  935. courtsRoleDefence: "Defence",
  936. courtsRoleMediator: "Mediator",
  937. courtsRoleJudge: "Judge",
  938. courtsRoleDictator: "Dictator",
  939. courtsAssignJudgeTitle: "Choose judge",
  940. courtsAssignJudgeBtn: "Choose judge",
  941. trendingTitle: "Trending",
  942. exploreTrending: "Explore the most popular content in your network.",
  943. ALLButton: "ALL",
  944. MINEButton: "MINE",
  945. RECENTButton: "RECENT",
  946. TOPButton: "TOP",
  947. bookmarkButton: "BOOKMARKS",
  948. transferButton: "TRANSFERS",
  949. eventButton: "EVENTS",
  950. taskButton: "TASKS",
  951. votesButton: "VOTATIONS",
  952. reportButton: "REPORTS",
  953. feedButton: "FEED",
  954. marketButton: "MARKET",
  955. imageButton: "IMAGES",
  956. audioButton: "AUDIOS",
  957. videoButton: "VIDEOS",
  958. documentButton: "DOCUMENTS",
  959. author: "By",
  960. createdAtLabel: "Created At",
  961. totalVotes: "Total Votes",
  962. noTrendingFound: "No trending content found.",
  963. noContentMessage: "No trending content available, yet.",
  964. trendingDescription: "Description",
  965. trendingDate: "Date",
  966. trendingLocation: "Location",
  967. trendingPrice: "Price",
  968. trendingUrl: "URL",
  969. trendingCategory: "Category",
  970. trendingStart: "Start",
  971. trendingEnd: "End",
  972. trendingPriority: "Priority",
  973. trendingStatus: "Status",
  974. trendingFrom: "From",
  975. trendingTo: "To",
  976. trendingConcept: "Concept",
  977. trendingAmount: "Amount",
  978. trendingDeadline: "Deadline",
  979. trendingItemStatus: "Item Status",
  980. trendingTotalVotes: "Total Votes",
  981. trendingTotalOpinions: "Total Opinions",
  982. trendingNoContentMessage: "No trending content available, yet.",
  983. trendingAuthor: "By",
  984. trendingCreatedAtLabel: "Created At",
  985. trendingTotalCount: "Total Count",
  986. tasksTitle: "Tasks",
  987. tasksDescription: "Discover and manage tasks in your network.",
  988. taskTitleLabel: "Title",
  989. taskDescriptionLabel: "Description",
  990. taskStartTimeLabel: "Start Time",
  991. taskEndTimeLabel: "End Time",
  992. taskPriorityLabel: "Priority",
  993. taskPrioritySelect: "Select priority",
  994. taskPriorityUrgent: "Urgent",
  995. taskPriorityHigh: "High",
  996. taskPriorityMedium: "Medium",
  997. taskPriorityLow: "Low",
  998. taskLocationLabel: "Location",
  999. taskTagsLabel: "Tags",
  1000. taskVisibilityLabel: "Visibility",
  1001. taskPublic: "public",
  1002. taskPrivate: "private",
  1003. taskCreatedAt: "Created At",
  1004. taskBy: "By",
  1005. taskStatus: "Status",
  1006. taskStatusOpen: "Open",
  1007. taskStatusInProgress: "In Progress",
  1008. taskStatusClosed: "Closed",
  1009. taskAssignedTo: "Assigned to",
  1010. taskAssignees: "Assignees",
  1011. taskAssignButton: "Assign to Me",
  1012. taskUnassignButton: "Unassign",
  1013. taskCreateButton: "Create Task",
  1014. taskUpdateButton: "Update",
  1015. taskDeleteButton: "Delete",
  1016. taskFilterAll: "ALL",
  1017. taskFilterMine: "MINE",
  1018. taskFilterOpen: "OPEN",
  1019. taskFilterInProgress: "IN-PROGRESS",
  1020. taskFilterClosed: "CLOSED",
  1021. taskFilterAssigned: "ASSIGNED",
  1022. taskFilterArchived: "ARCHIVED",
  1023. taskFilterUrgent: "URGENT",
  1024. taskFilterHigh: "HIGH",
  1025. taskFilterMedium: "MEDIUM",
  1026. taskFilterLow: "LOW",
  1027. taskAllSectionTitle: "Tasks",
  1028. taskMineSectionTitle: "Your Tasks",
  1029. taskCreateSectionTitle: "Create Task",
  1030. taskUpdateSectionTitle: "Update",
  1031. taskOpenTitle: "Open Tasks",
  1032. taskInProgressTitle: "In Progress Tasks",
  1033. taskClosedTitle: "Closed Tasks",
  1034. taskAssignedTitle: "Assigned Tasks",
  1035. taskArchivedTitle: "Archived Tasks",
  1036. taskPublicTitle: "Public Tasks",
  1037. taskPrivateTitle: "Private Tasks",
  1038. notasks: "No tasks available.",
  1039. noLocation: "No location specified",
  1040. taskSetStatus: "Set Status",
  1041. eventTitle: "Events",
  1042. eventDateLabel: "Date",
  1043. eventsTitle: "Events",
  1044. eventsDescription: "Discover and manage events in your network.",
  1045. eventDescription: "Description",
  1046. eventPrice: "Price",
  1047. eventStatus: "Status",
  1048. eventOrganizer: "Organizer",
  1049. eventAllSectionTitle: "Events",
  1050. eventMineSectionTitle: "Your Events",
  1051. eventArchivedTitle: "Archived Events",
  1052. eventCreateSectionTitle: "Create Event",
  1053. eventUpdateSectionTitle: "Update Event",
  1054. eventDeleteButton: "Delete",
  1055. eventCreateButton: "Create Event",
  1056. eventTitleLabel: "Title",
  1057. eventDescriptionLabel: "Description",
  1058. eventDescriptionPlaceholder: "Enter event description...",
  1059. eventUpdateButton: "Update",
  1060. eventAttendeesLabel: "Attendees",
  1061. eventAttendeesPlaceholder: "Enter attendees, separated by commas...",
  1062. eventTagsLabel: "Tags",
  1063. eventTagsPlaceholder: "Enter event tags, separated by commas...",
  1064. eventTags: "Tags",
  1065. eventPriceLabel: "Price",
  1066. eventUrlLabel: "URL",
  1067. eventAttendees: "Attendees",
  1068. noAttendees: "No attendees yet",
  1069. eventCreatedAt: "Created At",
  1070. eventLocation: "Location",
  1071. eventLocationLabel: "Location",
  1072. eventNoLocation: "No location specified",
  1073. eventNoURL: "No URL specified",
  1074. eventBy: "By",
  1075. noevents: "No events available.",
  1076. eventDate: "Date",
  1077. eventDateFormat: "DD:MM:YYYY HH:mm",
  1078. eventAttendButton: "Attend Event",
  1079. eventUnattendButton: "Unattend Event",
  1080. eventCreatedBy: "Created By",
  1081. eventAttendeesCount: "Attendees Count",
  1082. eventCreatedByYou: "You created this event",
  1083. eventAttendConfirmation: "You are now attending this event",
  1084. eventUnattendConfirmation: "You are no longer attending this event",
  1085. eventFilterAll: "ALL",
  1086. eventFilterMine: "MINE",
  1087. eventFilterToday: "TODAY",
  1088. eventFilterWeek: "THIS WEEK",
  1089. eventFilterMonth: "THIS MONTH",
  1090. eventFilterYear: "THIS YEAR",
  1091. eventFilterArchived: "ARCHIVED",
  1092. eventTodayTitle: "Today's Events",
  1093. eventThisWeekTitle: "This Week's Events",
  1094. eventThisMonthTitle: "This Month's Events",
  1095. eventThisYearTitle: "This Year's Events",
  1096. eventPrivacyLabel: "Visibility",
  1097. eventPublic: "Public",
  1098. eventPrivate: "Private",
  1099. eventPublicTitle: "Public Events",
  1100. eventNoPrice: "Free Event",
  1101. eventNoImage: "No image uploaded",
  1102. eventAttendConfirmation: "You are now attending this event",
  1103. eventUnattendConfirmation: "You are no longer attending this event",
  1104. eventAttended: "Attended",
  1105. eventUnattended: "Unattended",
  1106. eventStatusOpen: "Open",
  1107. eventStatusClosed: "Closed",
  1108. tagsTitle: "Tags",
  1109. tagsDescription: "Discover and explore taxonomy patterns in your network.",
  1110. tagsAllSectionTitle: "Tags",
  1111. tagsTopSectionTitle: "Top Tags",
  1112. tagsCloudSectionTitle: "Tags Cloud",
  1113. tagsFilterAll: "ALL",
  1114. tagsFilterTop: "TOP",
  1115. tagsFilterCloud: "CLOUD",
  1116. tagsNoItems: "No tags available.",
  1117. tagsTableHeaderTag: "TAG/LINK:",
  1118. tagsTableHeaderCount: "COUNTER:",
  1119. transfersTitle: "Transfers",
  1120. transfersDescription: "Discover and manage transfers in your network.",
  1121. transfersFrom: "From",
  1122. transfersTo: "To",
  1123. transfersFilterAll: "ALL",
  1124. transfersFilterMine: "MINE",
  1125. transfersFilterUBI: "UBI",
  1126. transfersFilterMarket: "MARKET",
  1127. transfersFilterTop: "TOP",
  1128. transfersFilterPending: "PENDING",
  1129. transfersFilterUnconfirmed: "UNCONFIRMED",
  1130. transfersFilterClosed: "CLOSED",
  1131. transfersFilterDiscarded: "DISCARDED",
  1132. transfersCreateButton: "Create Transfer",
  1133. transfersUpdateButton: "Update",
  1134. transfersDeleteButton: "Delete",
  1135. transfersToUser: "Oasis ID",
  1136. transfersToUserValidation: "Valid Oasis ID, e.g. @…=.ed25519",
  1137. transfersConcept: "Concept",
  1138. transfersAmount: "Amount",
  1139. transfersDeadline: "Deadline",
  1140. transfersTags: "Tags",
  1141. transfersStatus: "Status",
  1142. transfersStatusUnconfirmed: "UNCONFIRMED",
  1143. transfersStatusClosed: "CLOSED",
  1144. transfersStatusDiscarded: "DISCARDED",
  1145. transfersCreatedAt: "Created At",
  1146. transfersConfirmations: "CONFIRMATIONS",
  1147. transfersConfirmButton: "Confirm Transfer",
  1148. transfersNoItems: "No transfers found.",
  1149. transfersMineSectionTitle: "Your Transfers",
  1150. transfersUBISectionTitle: "UBI Transfers",
  1151. transfersMarketSectionTitle: "Market Transfers",
  1152. transfersTopSectionTitle: "Top Transfers",
  1153. transfersPendingSectionTitle: "Pending Transfers",
  1154. transfersUnconfirmedSectionTitle: "Unconfirmed Transfers",
  1155. transfersClosedSectionTitle: "Closed Transfers",
  1156. transfersDiscardedSectionTitle: "Discarded Transfers",
  1157. transfersCreateSectionTitle: "Create transfer",
  1158. transfersAllSectionTitle: "Transfers",
  1159. transfersFilterFavs: "Favorites",
  1160. transfersFavsSectionTitle: "Favorite transfers",
  1161. transfersSearchLabel: "Search",
  1162. transfersSearchPlaceholder: "Search concept, tags, users...",
  1163. transfersMinAmountLabel: "Min amount",
  1164. transfersMaxAmountLabel: "Max amount",
  1165. transfersSortLabel: "Sort by",
  1166. transfersSortRecent: "Most recent",
  1167. transfersSortAmount: "Highest amount",
  1168. transfersSortDeadline: "Closest deadline",
  1169. transfersSearchButton: "Search",
  1170. transfersFavoriteButton: "Favorite",
  1171. transfersUnfavoriteButton: "Unfavorite",
  1172. transfersMessageUserButton: "Message",
  1173. transfersExpiringSoonBadge: "EXPIRING",
  1174. transfersExpiredBadge: "EXPIRED",
  1175. transfersUpdatedAt: "Updated",
  1176. transfersNoMatch: "No transfers match your search.",
  1177. votationsTitle: "Votations",
  1178. votationsDescription: "Discover and manage votations in your network.",
  1179. voteMineSectionTitle: "Your Votations",
  1180. voteCreateSectionTitle: "Create Votation",
  1181. voteUpdateSectionTitle: "Update",
  1182. voteOpenTitle: "Open Votations",
  1183. voteClosedTitle: "Closed Votations",
  1184. voteAllSectionTitle: "Votations",
  1185. voteCreateButton: "Create Votation",
  1186. voteUpdateButton: "Update",
  1187. voteDeleteButton: "Delete",
  1188. voteOptionYes: "YES",
  1189. voteOptionNo: "NO",
  1190. voteOptionAbstention: "ABSTENTION",
  1191. voteConfused: "CONFUSED",
  1192. voteFollowMajority: "FOLLOW MAJORITY",
  1193. voteNotInterested: "NOT INTERESTED",
  1194. voteFilterAll: "ALL",
  1195. voteFilterMine: "MINE",
  1196. voteFilterOpen: "OPEN",
  1197. voteFilterClosed: "CLOSED",
  1198. voteQuestionLabel: "Question",
  1199. voteDeadlineLabel: "Deadline",
  1200. voteOptionsLabel: "Your vote",
  1201. voteBreakdown: "Breakdown",
  1202. voteFinalResult: "RESULT",
  1203. voteTagsLabel: "Tags",
  1204. voteDeadline: "Deadline",
  1205. voteStatus: "Status",
  1206. voteTotalVotes: "Total Votes",
  1207. voteTags: "Tags",
  1208. voteOpinions: "Opinions",
  1209. novotes: "No voting proposals available.",
  1210. voteBy: "By",
  1211. voteCreatedAt: "Created At",
  1212. voteNoQuestion: "No question provided",
  1213. voteUnknownCreator: "Unknown Creator",
  1214. voteUnknownDate: "Unknown Date",
  1215. errorVoteNotFound: "Vote not found",
  1216. errorAlreadyVoted: "You have already opined.",
  1217. errorVoteClosedCannotEdit: "You cannot edit a closed votation",
  1218. errorVoteDeadlinePassed: "The deadline for this votation has passed",
  1219. errorRetrievingVote: "Error retrieving vote",
  1220. errorCreatingVote: "Error creating vote",
  1221. errorVoteAlreadyVoted: "Cannot edit after opinion has been cast",
  1222. errorDeletingOldVote: "Error deleting old opinion",
  1223. errorCreatingUpdatedVote: "Error creating updated opinion",
  1224. errorCreatingTombstone: "Error creating tombstone",
  1225. voteDetailSectionTitle: 'Vote details',
  1226. voteCommentsLabel: 'Comments',
  1227. voteCommentsForumButton: 'Open discussion',
  1228. voteCommentsSectionTitle: 'Open discussion',
  1229. voteNoCommentsYet: 'There are no comments yet. Be the first to reply.',
  1230. voteNewCommentPlaceholder: 'Write your comment here…',
  1231. voteNewCommentButton: 'Post comment',
  1232. voteNewCommentLabel: 'Add a comment',
  1233. cvTitle: "CV",
  1234. cvLabel: "Curriculum Vitae (CV)",
  1235. cvEditSectionTitle: "Edit CV",
  1236. cvCreateSectionTitle: "Create CV",
  1237. cvDescription: "Manage and share your professional skills and information.",
  1238. cvNameLabel: "Full Name",
  1239. cvDescriptionLabel: "Summary",
  1240. cvPhotoLabel: "Photo",
  1241. cvPersonalExperiencesLabel: "Personal Experiences",
  1242. cvPersonalSkillsLabel: "Personal Skills (comma-separated)",
  1243. cvOasisExperiencesLabel: "Oasis Contribution Experiences",
  1244. cvOasisSkillsLabel: "Oasis Contribution Skills (comma-separated)",
  1245. cvEducationExperiencesLabel: "Educational Experiences",
  1246. cvEducationalSkillsLabel: "Educational Skills (comma-separated)",
  1247. cvProfessionalExperiencesLabel: "Professional Experiences",
  1248. cvProfessionalSkillsLabel: "Professional Skills (comma-separated)",
  1249. cvLanguagesLabel: "Languages",
  1250. cvLocationLabel: "Location",
  1251. cvStatusLabel: "Status",
  1252. cvPreferencesLabel: "Preferences",
  1253. cvOasisContributorLabel: "Oasis Contributor",
  1254. cvPersonal: "Personal",
  1255. cvOasis: "Oasis Contributor (optional)",
  1256. cvOasisContributorView: "Oasis Contribution",
  1257. cvEducational: "Educational (optional)",
  1258. cvEducationalView: "Educational",
  1259. cvProfessional: "Professional (optional)",
  1260. cvProfessionalView: "Professional",
  1261. cvAvailability: "Availability (optional)",
  1262. cvAvailabilityView: "Availability",
  1263. cvUpdateButton: "Update",
  1264. cvCreateButton: "Create CV",
  1265. cvContactLabel: "Contact",
  1266. cvCreatedAt: "Created At",
  1267. cvUpdatedAt: "Updated At",
  1268. cvEditButton: "Update",
  1269. cvDeleteButton: "Delete",
  1270. cvNoCV: "No CV found.",
  1271. blogSubject: "Subject",
  1272. blogMessage: "Message",
  1273. blogImage: "Upload media (max-size: 50MB)",
  1274. blogPublish: "Preview",
  1275. noPopularMessages: "No popular messages published, yet",
  1276. forumTitle: "Forums",
  1277. forumCategoryLabel: "Category",
  1278. forumTitleLabel: "Title",
  1279. forumTitlePlaceholder: "Forum title...",
  1280. forumCreateButton: "Create forum",
  1281. forumCreateSectionTitle: "Create forum",
  1282. forumDescription: "Talk openly with other inhabitants in your network.",
  1283. forumFilterAll: "ALL",
  1284. forumFilterMine: "MINE",
  1285. forumFilterRecent: "RECENT",
  1286. forumFilterTop: "TOP",
  1287. forumMineSectionTitle: "Your Forums",
  1288. forumRecentSectionTitle: "Recent Forums",
  1289. forumAllSectionTitle: "Forums",
  1290. forumDeleteButton: "Delete",
  1291. forumParticipants: "participants",
  1292. forumMessages: "messages",
  1293. forumLastMessage: "Last message",
  1294. forumMessageLabel: "Message",
  1295. forumMessagePlaceholder: "Write your message...",
  1296. forumSendButton: "Send",
  1297. forumVisitForum: "Visit Forum",
  1298. noForums: "No forums found.",
  1299. forumVisitButton: "Visit forum",
  1300. forumCatGENERAL: "General",
  1301. forumCatOASIS: "Oasis",
  1302. forumCatLARP: "L.A.R.P.",
  1303. forumCatPOLITICS: "Politics",
  1304. forumCatTECH: "Tech",
  1305. forumCatSCIENCE: "Science",
  1306. forumCatMUSIC: "Music",
  1307. forumCatART: "Art",
  1308. forumCatGAMING: "Gaming",
  1309. forumCatBOOKS: "Books",
  1310. forumCatFILMS: "Films",
  1311. forumCatPHILOSOPHY: "Philosophy",
  1312. forumCatSOCIETY: "Society",
  1313. forumCatPRIVACY: "Privacy",
  1314. forumCatCYBERWARFARE: "Cyberwarfare",
  1315. forumCatSURVIVALISM: "Survivalism",
  1316. imageTitle: "Images",
  1317. imageDescription: "Explore and manage image content in your network.",
  1318. imagePluginTitle: "Title",
  1319. imagePluginDescription: "Description",
  1320. imageMineSectionTitle: "Your Images",
  1321. imageCreateSectionTitle: "Upload Image",
  1322. imageUpdateSectionTitle: "Update Image",
  1323. imageAllSectionTitle: "Images",
  1324. imageRecentSectionTitle: "Recent Images",
  1325. imageTopSectionTitle: "Top Images",
  1326. imageFavoritesSectionTitle: "Favorites",
  1327. imageGallerySectionTitle: "Gallery",
  1328. imageMemeSectionTitle: "Memes",
  1329. imageFilterAll: "ALL",
  1330. imageFilterMine: "MINE",
  1331. imageFilterRecent: "RECENT",
  1332. imageFilterTop: "TOP",
  1333. imageFilterFavorites: "FAVORITES",
  1334. imageFilterGallery: "GALLERY",
  1335. imageFilterMeme: "MEMES",
  1336. imageCreateButton: "Upload Image",
  1337. imageUpdateButton: "Update",
  1338. imageDeleteButton: "Delete",
  1339. imageAddFavoriteButton: "Add favorite",
  1340. imageRemoveFavoriteButton: "Remove favorite",
  1341. imageFileLabel: "Select an image file (.jpeg, .jpg, .png, .gif)",
  1342. imageTagsLabel: "Tags",
  1343. imageTagsPlaceholder: "Enter tags separated by commas",
  1344. imageTitleLabel: "Title",
  1345. imageTitlePlaceholder: "Optional",
  1346. imageDescriptionLabel: "Description",
  1347. imageDescriptionPlaceholder: "Optional",
  1348. imageMemeLabel: "¿MEME?",
  1349. imageNoFile: "No image file provided",
  1350. noImages: "No images available.",
  1351. imageSearchPlaceholder: "Search title, tags, description, author...",
  1352. imageSortRecent: "Most recent",
  1353. imageSortOldest: "Oldest",
  1354. imageSortTop: "Most voted",
  1355. imageSearchButton: "Search",
  1356. imageMessageAuthorButton: "Message",
  1357. imageUpdatedAt: "Updated",
  1358. imageNoMatch: "No images match your search.",
  1359. feedTitle: "Feed",
  1360. feedDetailTitle: "Feed",
  1361. feedOpenDiscussion: "Open discussion",
  1362. feedPostComment: "Post comment",
  1363. noComments: "No comments yet",
  1364. createFeedTitle: "Create Feed",
  1365. createFeedButton: "Send Feed!",
  1366. feedPlaceholder: "What's happening? (max 280 characters)",
  1367. ALLButton: "Feeds",
  1368. MINEButton: "Your Feeds",
  1369. TODAYButton: "TODAY",
  1370. TOPButton: "Top Feeds",
  1371. CREATEButton: "Create Feed",
  1372. totalOpinions: "Total Opinions",
  1373. moreVoted: "More Voted",
  1374. alreadyVoted: "You have already opined.",
  1375. noFeedsFound: "No feeds found.",
  1376. author: "By",
  1377. createdAtLabel: "Created at",
  1378. FeedshareYourOpinions: "Discover and share short-texts in your network.",
  1379. refeedButton: "Refeed",
  1380. alreadyRefeeded: "You already refeeded this.",
  1381. activityTitle: "Activity",
  1382. yourActivity: "Your Activity",
  1383. globalActivity: "Global Activity",
  1384. activityList: "Activity",
  1385. activityDesc: "See the latest activity in your network.",
  1386. allButton: "ALL",
  1387. mineButton: "MINE",
  1388. noActions: "No activity available.",
  1389. performed: "→",
  1390. from: "From",
  1391. to: "To",
  1392. amount: "Amount",
  1393. concept: "Concept",
  1394. description: "Description",
  1395. meme: "Meme",
  1396. activityContact: "Contact",
  1397. activityBy: "Name",
  1398. activityPixelia: "New pixel added",
  1399. viewImage: "View image",
  1400. playAudio: "Play audio",
  1401. playVideo: "Play video",
  1402. typeRecent: "RECENT",
  1403. errorActivity: "Error retrieving activity",
  1404. typePost: "POST",
  1405. typeTribe: "TRIBES",
  1406. typeAbout: "INHABITANTS",
  1407. typeCurriculum: "CV",
  1408. typeImage: "IMAGES",
  1409. typeBookmark: "BOOKMARKS",
  1410. typeDocument: "DOCUMENTS",
  1411. typeVotes: "VOTATIONS",
  1412. typeAudio: "AUDIOS",
  1413. typeMarket: "MARKET",
  1414. typeJob: "JOBS",
  1415. typeProject: "PROJECTS",
  1416. typeVideo: "VIDEOS",
  1417. typeVote: "SPREAD",
  1418. typeEvent: "EVENTS",
  1419. typeTransfer: "TRANSFER",
  1420. typeTask: "TASKS",
  1421. typePixelia: "PIXELIA",
  1422. typeForum: "FORUM",
  1423. typeReport: "REPORTS",
  1424. typeFeed: "FEED",
  1425. typeContact: "CONTACT",
  1426. typePub: "PUB",
  1427. typeTombstone: "TOMBSTONE",
  1428. typeBanking: "BANKING",
  1429. typeBankWallet: "BANKING/WALLET",
  1430. typeBankClaim: "BANKING/UBI",
  1431. typeKarmaScore: "KARMA",
  1432. typeParliament: "PARLIAMENT",
  1433. typeSpread: "SPREADS",
  1434. typeParliamentCandidature: "Parliament · Candidature",
  1435. typeParliamentTerm: "Parliament · Term",
  1436. typeParliamentProposal:"Parliament · Proposal",
  1437. typeParliamentRevocation:"Parliament · Revocation",
  1438. typeParliamentLaw: "Parliament · New Law",
  1439. typeCourts: "COURTS",
  1440. typeCourtsCase: "Courts · Case",
  1441. typeCourtsEvidence: "Courts · Evidence",
  1442. typeCourtsAnswer: "Courts · Answer",
  1443. typeCourtsVerdict: "Courts · Verdict",
  1444. typeCourtsSettlement: "Courts · Settlement",
  1445. typeCourtsSettlementProposal: "Courts · Settlement Proposal",
  1446. typeCourtsSettlementAccepted: "Courts · Settlement Accepted",
  1447. typeCourtsNomination: "Courts · Nomination",
  1448. typeCourtsNominationVote: "Courts · Nomination Vote",
  1449. activitySupport: "New alliance forged",
  1450. activityJoin: "New PUB joined",
  1451. question: "Question",
  1452. deadline: "Deadline",
  1453. status: "Status",
  1454. votes: "Votes",
  1455. totalVotes: "Total Votes",
  1456. voteTotalVotes: "Total Votes",
  1457. name: "Name",
  1458. skills: "Skills",
  1459. tags: "Tags",
  1460. title: "Title",
  1461. date: "Date",
  1462. category: "Category",
  1463. attendees: "Attendees",
  1464. activitySpread: "->",
  1465. visitLink: "Visit Link",
  1466. viewDocument: "View Document",
  1467. location: "Location",
  1468. contentWarning: "Subject",
  1469. personName: "Inhabitant Name",
  1470. bankWalletConnected: "ECOin Wallet",
  1471. bankUbiReceived: "UBI Received",
  1472. bankTx: "Tx",
  1473. bankEpochShort: "Epoch",
  1474. bankAllocId: "Allocation ID",
  1475. bankingUserEngagementScore: "KARMA Scoring",
  1476. viewDetails: "View details",
  1477. link: "Link",
  1478. aiSnippetsLearned: "Snippets learned",
  1479. tribeFeedRefeeds: "Refeeds",
  1480. activityProjectFollow: "%OASIS% is now %ACTION% this project %PROJECT%",
  1481. activityProjectUnfollow: "%OASIS% is now %ACTION% this project %PROJECT%",
  1482. activityProjectPledged: "%OASIS% has %ACTION% %AMOUNT% to project %PROJECT%",
  1483. following: "FOLLOWING",
  1484. unfollowing: "UNFOLLOWING",
  1485. pledged: "PLEDGED",
  1486. parliamentCandidatureId: "Candidature",
  1487. parliamentGovMethod: "Method",
  1488. parliamentVotesReceived: "Votes received",
  1489. parliamentMethodANARCHY: "Anarchy",
  1490. parliamentMethodVOTE: "Community Vote",
  1491. parliamentMethodRANKED: "Ranked Choice",
  1492. parliamentMethodPLURALITY: "Plurality",
  1493. parliamentMethodCOUNCIL: "Council",
  1494. parliamentMethodJURY: "Jury",
  1495. parliamentAnarchy: "ANARCHY",
  1496. parliamentElectionsStart: "Elections start",
  1497. parliamentElectionsEnd: "Elections end",
  1498. parliamentCurrentLeader: "Winning candidature",
  1499. parliamentProposalTitle: "Title",
  1500. parliamentOpenVote: "Open vote",
  1501. parliamentStatus: "Status",
  1502. parliamentLawQuestion: "Question",
  1503. parliamentLawMethod: "Method",
  1504. parliamentLawProposer: "Proposer",
  1505. parliamentLawEnacted: "Enacted at",
  1506. parliamentLawVotes: "Votes",
  1507. createdAt: "Created at",
  1508. courtsCaseTitle: "Case",
  1509. courtsMethod: "Method",
  1510. courtsMethodJUDGE: "Judge",
  1511. courtsMethodJUDGES: "Judges Panel",
  1512. courtsMethodSINGLE_JUDGE: "Single Judge",
  1513. courtsMethodJURY: "Jury",
  1514. courtsMethodCOUNCIL: "Council",
  1515. courtsMethodCOMMUNITY: "Community",
  1516. courtsMethodMEDIATION: "Mediation",
  1517. courtsMethodARBITRATION: "Arbitration",
  1518. courtsMethodVOTE: "Community Vote",
  1519. courtsAccuser: "Accuser",
  1520. courtsRespondent: "Respondent",
  1521. courtsThStatus: "Status",
  1522. courtsThAnswerBy: "Answer by",
  1523. courtsThEvidenceBy: "Evidence by",
  1524. courtsThDecisionBy: "Decision by",
  1525. courtsVotesNeeded: "Votes needed",
  1526. courtsVotesSlashTotal: "YES/TOTAL",
  1527. courtsOpenVote: "Open vote",
  1528. courtsAnswerTitle: "Answer",
  1529. courtsStanceADMIT: "Admit",
  1530. courtsStanceDENY: "Deny",
  1531. courtsStancePARTIAL: "Partial",
  1532. courtsStanceCOUNTERCLAIM: "Counterclaim",
  1533. courtsStanceNEUTRAL: "Neutral",
  1534. courtsVerdictResult: "Result",
  1535. courtsVerdictOrders: "Orders",
  1536. courtsSettlementText: "Settlement",
  1537. courtsSettlementAccepted: "Accepted",
  1538. courtsSettlementPending: "Pending",
  1539. courtsJudge: "Judge",
  1540. courtsThSupports: "Supports",
  1541. courtsFilterOpenCase: 'Open Case',
  1542. courtsEvidenceFileLabel: 'Evidence file (image, audio, video or PDF)',
  1543. courtsCaseMediators: 'Mediators',
  1544. courtsCaseMediatorsPh: 'Mediator Oasis IDs, separated by comma',
  1545. courtsMediatorsLabel: 'Mediators',
  1546. courtsThCase: 'Case',
  1547. courtsThCreatedAt: 'Start date',
  1548. courtsThActions: 'Actions',
  1549. courtsPublicPrefLabel: 'Visibility after resolution',
  1550. courtsPublicPrefYes: 'I agree this case can be fully public',
  1551. courtsPublicPrefNo: 'I prefer to keep the details private',
  1552. courtsPublicPrefSubmit: 'Save visibility preference',
  1553. courtsMethodMEDIATION: 'Mediation',
  1554. courtsNoCases: 'No cases.',
  1555. reportsTitle: "Reports",
  1556. reportsDescription: "Manage and track reports related to issues, bugs, abuses and content warnings in your network.",
  1557. reportsFilterAll: "ALL",
  1558. reportsFilterMine: "MINE",
  1559. reportsFilterFeatures: "FEATURES",
  1560. reportsFilterBugs: "BUGS",
  1561. reportsFilterAbuse: "ABUSE",
  1562. reportsFilterContent: "CONTENT",
  1563. reportsFilterConfirmed: "CONFIRMED",
  1564. reportsFilterResolved: "RESOLVED",
  1565. reportsFilterOpen: "OPEN",
  1566. reportsFilterUnderReview: "UNDER REVIEW",
  1567. reportsFilterInvalid: "INVALID",
  1568. reportsCreateButton: "Create Report",
  1569. reportsTitleLabel: "Title",
  1570. reportsDescriptionLabel: "Description",
  1571. reportsDescriptionPlaceholder: "Please provide a detailed description.",
  1572. reportsCategory: "Category",
  1573. reportsCategoryLabel: "Category",
  1574. reportsCategoryFeatures: "Features",
  1575. reportsCategoryBugs: "Bugs",
  1576. reportsCategoryAbuse: "Abuse",
  1577. reportsCategoryContent: "Content Issues",
  1578. reportsUpdateButton: "Update",
  1579. reportsDeleteButton: "Delete",
  1580. reportsDateLabel: "Date",
  1581. reportsUploadFile: "Upload media (max-size: 50MB)",
  1582. reportsCreatedBy: "By",
  1583. reportsMineSectionTitle: "Your Reports",
  1584. reportsFeaturesSectionTitle: "Feature Requests",
  1585. reportsBugsSectionTitle: "Bugs",
  1586. reportsAbuseSectionTitle: "Abuse Reports",
  1587. reportsContentSectionTitle: "Content Issues",
  1588. reportsAllSectionTitle: "Reports",
  1589. reportsNoItems: "No reports available.",
  1590. reportsValidationTitle: "Please enter a valid title.",
  1591. reportsValidationDescription: "Description cannot be empty.",
  1592. reportsValidationCategory: "Please select a category.",
  1593. reportsCreatedAt: "Created At",
  1594. reportsCreatedBy: "By",
  1595. reportsSeverity: "Severity",
  1596. reportsSeverityLow: "Low",
  1597. reportsSeverityMedium: "Medium",
  1598. reportsSeverityHigh: "High",
  1599. reportsSeverityCritical: "Critical",
  1600. reportsStatus: "Status",
  1601. reportsStatusOpen: "Open",
  1602. reportsStatusUnderReview: "Under Review",
  1603. reportsStatusResolved: "Resolved",
  1604. reportsStatusInvalid: "Invalid",
  1605. reportsUpdateStatusButton: "Update Status",
  1606. reportsAnonymityOption: "Submit Anonymously",
  1607. reportsAnonymousAuthor: "Anonymous",
  1608. reportsConfirmButton: "CONFIRM REPORT!",
  1609. reportsConfirmations: "Confirmations",
  1610. reportsConfirmedSectionTitle: "Confirmed Reports",
  1611. reportsCreateTaskButton: "CREATE TASK",
  1612. reportsOpenSectionTitle: "Open Reports",
  1613. reportsUnderReviewSectionTitle: "Under Review Reports",
  1614. reportsResolvedSectionTitle: "Resolved Reports",
  1615. reportsInvalidSectionTitle: "Invalid Reports",
  1616. reportsTemplateSectionTitle: 'Report template',
  1617. reportsBugTemplateTitle: 'Reproduction details (Bugs)',
  1618. reportsFeatureTemplateTitle: 'Details (Features)',
  1619. reportsAbuseTemplateTitle: 'Details (Abuse)',
  1620. reportsContentTemplateTitle: 'Details (Content Issues)',
  1621. reportsStepsToReproduceLabel: 'Steps to reproduce',
  1622. reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...',
  1623. reportsExpectedBehaviorLabel: 'Expected result',
  1624. reportsExpectedBehaviorPlaceholder: 'What should happen?',
  1625. reportsActualBehaviorLabel: 'Actual result',
  1626. reportsActualBehaviorPlaceholder: 'What actually happens?',
  1627. reportsEnvironmentLabel: 'Environment',
  1628. reportsEnvironmentPlaceholder: 'Version, device, OS, browser, settings, logs, etc.',
  1629. reportsReproduceRateLabel: 'Reproduction rate',
  1630. reportsReproduceRateAlways: 'Always',
  1631. reportsReproduceRateOften: 'Often',
  1632. reportsReproduceRateSometimes: 'Sometimes',
  1633. reportsReproduceRateRarely: 'Rarely',
  1634. reportsReproduceRateUnable: 'Unable to reproduce',
  1635. reportsReproduceRateUnknown: 'Not specified',
  1636. reportsProblemStatementLabel: 'Problem / need',
  1637. reportsProblemStatementPlaceholder: 'What problem does this feature solve?',
  1638. reportsUserStoryLabel: 'Inhabitant story',
  1639. reportsUserStoryPlaceholder: 'As a <inhabitant>, I want <action>, so that <benefit>.',
  1640. reportsAcceptanceCriteriaLabel: 'Acceptance criteria',
  1641. reportsAcceptanceCriteriaPlaceholder: '- Given...\n- When...\n- Then...',
  1642. reportsWhatHappenedLabel: 'What happened?',
  1643. reportsWhatHappenedPlaceholder: 'Describe the incident with context and approximate dates.',
  1644. reportsReportedUserLabel: 'Reported inhabitant / entity',
  1645. reportsReportedUserPlaceholder: '@inhabitant, feed, ID, link, etc.',
  1646. reportsEvidenceLinksLabel: 'Evidence / links',
  1647. reportsEvidenceLinksPlaceholder: 'Paste links, message IDs, screenshots (if applicable), etc.',
  1648. reportsContentLocationLabel: 'Where the content is',
  1649. reportsContentLocationPlaceholder: 'Link, ID, channel, thread, author, etc.',
  1650. reportsWhyInappropriateLabel: "Why it's inappropriate",
  1651. reportsWhyInappropriatePlaceholder: 'Explain the reason and impact.',
  1652. reportsRequestedActionLabel: 'Requested action',
  1653. reportsRequestedActionPlaceholder: 'Remove, hide, tag, warn, etc.',
  1654. tribesTitle: "Tribes",
  1655. tribeAllSectionTitle: "Tribes",
  1656. tribeMineSectionTitle: "Your Tribes",
  1657. tribeCreateSectionTitle: "Create Tribe",
  1658. tribeUpdateSectionTitle: "Update Tribe",
  1659. tribeGallerySectionTitle: "Tribes Gallery",
  1660. tribeLarpSectionTitle: "L.A.R.P",
  1661. tribeRecentSectionTitle: "Recent Tribes",
  1662. tribeTopSectionTitle: "Popular Tribes",
  1663. tribeviewTribeButton: "Visit Tribe",
  1664. tribeDescription: "Explore or create tribes on your network.",
  1665. tribeFilterAll: "ALL",
  1666. tribeFilterMine: "MINE",
  1667. tribeFilterMembership: "MEMBERSHIP",
  1668. tribeFilterRecent: "RECENT",
  1669. tribeFilterLarp: "L.A.R.P.",
  1670. tribeFilterTop: "TOP",
  1671. tribeFilterSubtribes: "SUB-TRIBES",
  1672. tribeFilterGallery: "GALLERY",
  1673. tribeMainTribeLabel: "MAIN TRIBE",
  1674. tribeCreateButton: "Create Tribe",
  1675. tribeUpdateButton: "Update",
  1676. tribeDeleteButton: "Delete",
  1677. tribeImageLabel: "Upload media (max-size: 50MB)",
  1678. tribeTitleLabel: "Title",
  1679. searchTribesPlaceholder: "FILTER tribes BY NAME …",
  1680. tribeTitlePlaceholder: "Name of the tribe",
  1681. tribeDescriptionLabel: "Description",
  1682. tribeDescriptionPlaceholder: "Describe this tribe",
  1683. tribeLocationLabel: "Location",
  1684. tribeLocationPlaceholder: "Where is this tribe located?",
  1685. tribeTagsLabel: "Tags",
  1686. tribeTagsPlaceholder: "Enter tags separated by commas",
  1687. tribeIsLARPLabel: "L.A.R.P. Tribe?",
  1688. tribeInviteMode: "Invite mode",
  1689. tribeLARPLabel: "L.A.R.P.",
  1690. tribeModeLabel: "MODE",
  1691. tribeIsAnonymousLabel: "STATUS",
  1692. tribeMembersCount: "Members",
  1693. tribeInviteCodePlaceholder: "Enter invite code",
  1694. tribeJoinByCodeButton: "Join with code",
  1695. tribeJoinButton: "JOIN",
  1696. tribeLeaveButton: "LEAVE",
  1697. tribeYes: "YES",
  1698. tribeNo: "NO",
  1699. tribePublic: "PUBLIC",
  1700. tribePrivate: "PRIVATE",
  1701. tribeGenerateInvite: "GENERATE CODE",
  1702. tribeCreatedAt: "Created at",
  1703. tribeAuthor: "By",
  1704. tribeAuthorLabel: "AUTHOR",
  1705. tribeStrict: "Strict",
  1706. tribeOpen: "Open",
  1707. tribeFeedFilterRECENT: "RECENT",
  1708. tribeFeedFilterMINE: "MINE",
  1709. tribeFeedFilterALL: "ALL",
  1710. tribeFeedFilterTOP: "TOP",
  1711. tribeFeedRefeeds: "Refeeds",
  1712. tribeFeedRefeed: "Refeed",
  1713. tribeFeedMessagePlaceholder: "Write a feed…",
  1714. tribeFeedSend: "Send",
  1715. tribeFeedEmpty: "No feed messages available, yet.",
  1716. noTribes: "No tribes found, yet.",
  1717. tribeNotFound: "Tribe not found!",
  1718. createTribeTitle: "Create Tribe",
  1719. updateTribeTitle: "Update Tribe",
  1720. tribeSectionOverview: "Overview",
  1721. tribeSectionInhabitants: "Inhabitants",
  1722. tribeSectionVotations: "Votations",
  1723. tribeSectionEvents: "Events",
  1724. tribeSectionReports: "Reports",
  1725. tribeSectionTasks: "Tasks",
  1726. tribeSectionFeed: "Feed",
  1727. tribeSectionForum: "Forum",
  1728. tribeSectionMarket: "Market",
  1729. tribeSectionJobs: "Jobs",
  1730. tribeSectionProjects: "Projects",
  1731. tribeSectionMedia: "Media",
  1732. tribeSectionImages: "IMAGES",
  1733. tribeSectionAudios: "AUDIOS",
  1734. tribeSectionVideos: "VIDEOS",
  1735. tribeSectionDocuments: "DOCUMENTS",
  1736. tribeSectionBookmarks: "BOOKMARKS",
  1737. tribeSectionMaps: "MAPS",
  1738. tribeSectionPads: "PADS",
  1739. tribeSectionChats: "CHATS",
  1740. tribeSectionCalendars: "CALENDARS",
  1741. tribePadCreate: "Create Pad",
  1742. tribeChatCreate: "Create Chat",
  1743. tribeCalendarCreate: "Create Calendar",
  1744. tribePadsEmpty: "No pads, yet.",
  1745. tribeChatsEmpty: "No chats, yet.",
  1746. tribeCalendarsEmpty: "No calendars, yet.",
  1747. tribeInhabitantsEmpty: "No inhabitants in this tribe, yet.",
  1748. tribeEventCreate: "Create Event",
  1749. tribeEventsEmpty: "No events, yet.",
  1750. tribeEventTitle: "Title",
  1751. tribeEventDescription: "Description",
  1752. tribeEventDate: "Date",
  1753. tribeEventLocation: "Location",
  1754. tribeEventAttend: "ATTEND",
  1755. tribeEventUnattend: "LEAVE",
  1756. tribeEventAttendees: "Attendees",
  1757. tribeTaskCreate: "Create Task",
  1758. tribeTasksEmpty: "No tasks, yet.",
  1759. tribeTaskTitle: "Title",
  1760. tribeTaskDescription: "Description",
  1761. tribeTaskPriority: "Priority",
  1762. tribeTaskDeadline: "Deadline",
  1763. tribeTaskAssignees: "Assignees",
  1764. tribeTaskStatusInProgress: "IN PROGRESS",
  1765. tribeTaskStatusClosed: "CLOSE",
  1766. tribeTaskAssign: "ASSIGN",
  1767. tribeTaskUnassign: "UNASSIGN",
  1768. tribeReportCreate: "Create Report",
  1769. tribeReportsEmpty: "No reports, yet.",
  1770. tribeReportTitle: "Title",
  1771. tribeReportDescription: "Description",
  1772. tribeReportCategory: "Category",
  1773. tribeVotationCreate: "Create Votation",
  1774. tribeVotationsEmpty: "No votations, yet.",
  1775. tribeVotationTitle: "Title",
  1776. tribeVotationDescription: "Description",
  1777. tribeVotationOptions: "Options",
  1778. tribeVotationDeadline: "Deadline",
  1779. tribeVotationVote: "VOTE",
  1780. tribeVotationResults: "Votes",
  1781. tribeVotationClose: "CLOSE VOTATION",
  1782. tribeVotationOptionPlaceholder: "Option",
  1783. tribeForumCreate: "Create Forum",
  1784. tribeForumEmpty: "No threads, yet.",
  1785. tribeForumTitle: "Title",
  1786. tribeForumText: "Message",
  1787. tribeForumCategory: "Category",
  1788. tribeForumReply: "Reply",
  1789. tribeForumReplies: "Replies",
  1790. tribeMarketCreate: "Create Listing",
  1791. tribeMarketEmpty: "No listings, yet.",
  1792. tribeMarketTitle: "Title",
  1793. tribeMarketDescription: "Description",
  1794. tribeMarketPrice: "Price",
  1795. tribeMarketImage: "Image",
  1796. tribeMarketCategory: "Category",
  1797. tribeJobCreate: "Create Job",
  1798. tribeJobsEmpty: "No jobs, yet.",
  1799. tribeJobTitle: "Title",
  1800. tribeJobDescription: "Description",
  1801. tribeJobLocation: "Location",
  1802. tribeJobSalary: "Salary",
  1803. tribeJobDeadline: "Deadline",
  1804. tribeProjectCreate: "Create Project",
  1805. tribeProjectsEmpty: "No projects, yet.",
  1806. tribeProjectTitle: "Title",
  1807. tribeProjectDescription: "Description",
  1808. tribeProjectGoal: "Goal",
  1809. tribeProjectFunded: "Funded",
  1810. tribeProjectDeadline: "Deadline",
  1811. tribeMediaUpload: "Upload Media",
  1812. readDocument: "Read Document",
  1813. tribeCreateImage: "Create Image",
  1814. tribeCreateAudio: "Create Audio",
  1815. tribeCreateVideo: "Create Video",
  1816. tribeCreateDocument: "Create Document",
  1817. tribeCreateBookmark: "Create Bookmark",
  1818. tribeMediaEmpty: "No media, yet.",
  1819. tribeMediaTitle: "Title",
  1820. tribeMediaDescription: "Description",
  1821. tribeMediaType: "Type",
  1822. tribeMediaTypeImage: "Image",
  1823. tribeMediaTypeVideo: "Video",
  1824. tribeMediaTypeAudio: "Audio",
  1825. tribeMediaTypeDocument: "Document",
  1826. tribeMediaTypeBookmark: "Bookmark",
  1827. tribeContentDelete: "DELETE",
  1828. tribeInviteCodeText: "Invite code: ",
  1829. tribeGroupTribe: "Tribe",
  1830. tribeGroupOffice: "Office",
  1831. tribeGroupNetwork: "Network",
  1832. tribeGroupEconomy: "Economy",
  1833. tribeGroupMedia: "Media",
  1834. tribeStatusOpen: "OPEN",
  1835. tribeStatusClosed: "CLOSED",
  1836. tribeStatusInProgress: "IN PROGRESS",
  1837. tribePriorityLow: "LOW",
  1838. tribePriorityMedium: "MEDIUM",
  1839. tribePriorityHigh: "HIGH",
  1840. tribePriorityCritical: "CRITICAL",
  1841. tribeTaskFilterAll: "ALL",
  1842. tribeMediaFilterAll: "ALL",
  1843. tribeReportCatBug: "BUG",
  1844. tribeReportCatAbuse: "ABUSE",
  1845. tribeReportCatContent: "CONTENT",
  1846. tribeReportCatOther: "OTHER",
  1847. tribeForumCatGeneral: "GENERAL",
  1848. tribeForumCatProposal: "PROPOSAL",
  1849. tribeForumCatQuestion: "QUESTION",
  1850. tribeForumCatAnnouncement: "ANNOUNCEMENT",
  1851. tribeMarketCatGoods: "GOODS",
  1852. tribeMarketCatServices: "SERVICES",
  1853. tribeMarketCatFood: "FOOD",
  1854. tribeMarketCatOther: "OTHER",
  1855. tribeStatusLabel: "Status",
  1856. tribeSubTribes: "SUB-TRIBES",
  1857. tribeSubTribesCreate: "Create Sub-Tribe",
  1858. tribeSubTribesEmpty: "No sub-tribes created, yet.",
  1859. tribeLarpCreateForbidden: "L.A.R.P. tribes cannot be created.",
  1860. tribeLarpUpdateForbidden: "L.A.R.P. tribes cannot be updated.",
  1861. tribeActivityJoined: "JOINED",
  1862. tribeActivityLeft: "LEFT",
  1863. tribeActivityFeed: "FEED",
  1864. tribeActivityRefeed: "REFEED",
  1865. tribeGroupAnalytics: "Analytics",
  1866. tribeGroupCreative: "Creative",
  1867. tribeSectionActivity: "ACTIVITY",
  1868. tribeSectionTrending: "TRENDING",
  1869. tribeSectionOpinions: "OPINIONS",
  1870. tribeSectionPixelia: "PIXELIA",
  1871. tribeSectionTags: "TAGS",
  1872. tribeSectionSearch: "SEARCH",
  1873. tribeActivityEmpty: "No activity yet.",
  1874. tribeActivityCreated: "created",
  1875. tribeActivityPosted: "posted",
  1876. tribeActivityReplied: "replied",
  1877. tribeTrendingEmpty: "No trending content yet.",
  1878. tribeTrendingPeriodDay: "Today",
  1879. tribeTrendingPeriodWeek: "This Week",
  1880. tribeTrendingPeriodAll: "All Time",
  1881. tribeTrendingEngagement: "engagement",
  1882. tribeOpinionsEmpty: "No opinions yet.",
  1883. tribeOpinionsCast: "Vote",
  1884. tribeOpinionsRankings: "Rankings",
  1885. tribeOpinionsAlreadyVoted: "Already voted",
  1886. tribeTopCategory: "More Voted",
  1887. tribePixeliaTitle: "Pixelia",
  1888. tribePixeliaDescription: "Collaborative pixel art canvas.",
  1889. tribePixeliaPaint: "Paint",
  1890. tribePixeliaContributors: "contributors",
  1891. tribePixeliaTotalPixels: "pixels painted",
  1892. tribeTagsEmpty: "No tags found.",
  1893. tribeTagsCloud: "Tag Cloud",
  1894. tribeTagsContentWith: "Content with tag",
  1895. tribeSearchPlaceholder: "Search tribe content...",
  1896. tribeSearchEmpty: "No results found.",
  1897. tribeSearchResults: "Results",
  1898. tribeSearchMinChars: "Enter at least 2 characters to search.",
  1899. agendaTitle: "Agenda",
  1900. agendaDescription: "Here you can find all your assigned items.",
  1901. agendaFilterAll: "ALL",
  1902. agendaFilterOpen: "OPEN",
  1903. agendaFilterClosed: "CLOSED",
  1904. agendaFilterTasks: "TASKS",
  1905. agendaFilterMarket: "MARKET",
  1906. agendaFilterTribes: "TRIBES",
  1907. agendaFilterEvents: "EVENTS",
  1908. agendaFilterReports: "REPORTS",
  1909. agendaFilterTransfers: "TRANSFERS",
  1910. agendaFilterJobs: "JOBS",
  1911. agendaFilterProjects: "PROJECTS",
  1912. agendaFilterCalendars: "CALENDARS",
  1913. agendaNoItems: "No assignments found.",
  1914. agendaAuthor: "By",
  1915. agendaDiscardButton: "Discard",
  1916. agendaRestoreButton: "Restore",
  1917. agendaCreatedAt: "Created At",
  1918. agendaTitleLabel: "Title",
  1919. agendaMembersCount: "Members",
  1920. agendaDescriptionLabel: "Description",
  1921. agendaStatus: "Status",
  1922. agendaVisibility: "Visibility",
  1923. agendaEventDate: "Event Date",
  1924. agendaEventLocation: "Location",
  1925. agendaEventPrice: "Price",
  1926. agendaEventUrl: "URL",
  1927. agendaTaskStart: "Start Time",
  1928. agendaLocationLabel: "Location",
  1929. agendaLARPLabel: "L.A.R.P.",
  1930. agendaYes: "YES",
  1931. agendaNo: "NO",
  1932. agendaInviteModeLabel: "Status",
  1933. agendaAnonymousLabel: "Anonymous",
  1934. agendaMembersLabel: "Members",
  1935. agendareportCategory: "Category",
  1936. agendareportSeverity: "Severity",
  1937. agendareportStatus: "Status",
  1938. agendareportDescription: "Description",
  1939. agendaTaskEnd: "End Time",
  1940. agendaTaskPriority: "Priority",
  1941. agendaTransferFrom: "From",
  1942. agendaTransferTo: "To",
  1943. agendaTransferConcept: "Concept",
  1944. agendaTransferAmount: "Amount",
  1945. agendaTransferDeadline: "Deadline",
  1946. agendaTransferFrom: "From",
  1947. agendaTransferTo: "To",
  1948. agendaTransferConcept: "Concept",
  1949. agendaTransferAmount: "Amount",
  1950. agendaTransferDeadline: "Deadline",
  1951. opinionsTitle: "Opinions",
  1952. shareYourOpinions: "Discover and vote for opinions in your network.",
  1953. author: "By",
  1954. voteNow: "Vote now",
  1955. alreadyVoted: "You have already opined.",
  1956. noOpinionsFound: "No opinions found.",
  1957. ALLButton: "ALL",
  1958. MINEButton: "MINE",
  1959. RECENTButton: "RECENT",
  1960. TOPButton: "TOP",
  1961. interestingButton: "INTERESTING",
  1962. necessaryButton: "NECESSARY",
  1963. funnyButton: "FUNNY",
  1964. disgustingButton: "DISGUSTING",
  1965. sensibleButton: "SENSIBLE",
  1966. propagandaButton: "PROPAGANDA",
  1967. adultOnlyButton: "ADULT ONLY",
  1968. boringButton: "BORING",
  1969. confusingButton: "CONFUSING",
  1970. inspiringButton: "INSPIRING",
  1971. spamButton: "SPAM",
  1972. usefulButton: "USEFUL",
  1973. informativeButton: "INFORMATIVE",
  1974. wellResearchedButton: "WELL RESEARCHED",
  1975. accurateButton: "ACCURATE",
  1976. needsSourcesButton: "NEEDS SOURCES",
  1977. wrongButton: "WRONG",
  1978. lowQualityButton: "LOW QUALITY",
  1979. creativeButton: "CREATIVE",
  1980. insightfulButton: "INSIGHTFUL",
  1981. actionableButton: "ACTIONABLE",
  1982. inspiringButton: "INSPIRING",
  1983. loveButton: "LOVE",
  1984. clearButton: "CLEAR",
  1985. upliftingButton: "UPLIFTING",
  1986. unnecessaryButton: "UNNECESSARY",
  1987. rejectedButton: "REJECTED",
  1988. misleadingButton: "MISLEADING",
  1989. offTopicButton: "OFF TOPIC",
  1990. duplicateButton: "DUPLICATE",
  1991. clickbaitButton: "CLICKBAIT",
  1992. spamButton: "SPAM",
  1993. trollButton: "TROLL",
  1994. nsfwButton: "NSFW",
  1995. violentButton: "VIOLENT",
  1996. toxicButton: "TOXIC",
  1997. harassmentButton: "HARASSMENT",
  1998. hateButton: "HATE",
  1999. scamButton: "SCAM",
  2000. triggeringButton: "TRIGGERING",
  2001. opinionsCreatedAt: "Created At",
  2002. opinionsTotalCount: "Total Opinions",
  2003. voteInteresting: "Interesting",
  2004. voteNecessary: "Necessary",
  2005. voteUseful: "Useful",
  2006. voteInformative: "Informative",
  2007. voteWellResearched: "Well researched",
  2008. voteNeedsSources: "Needs sources",
  2009. voteWrong: "Wrong",
  2010. voteLowQuality: "Low quality",
  2011. voteLove: "Love",
  2012. voteClear: "Clear",
  2013. voteMisleading: "Misleading",
  2014. voteOffTopic: "Off topic",
  2015. voteDuplicate: "Duplicate",
  2016. voteClickbait: "Clickbait",
  2017. votePropaganda: "Propaganda",
  2018. voteFunny: "Funny",
  2019. voteInspiring: "Inspiring",
  2020. voteUplifting: "Uplifting",
  2021. voteUnnecessary: "Unnecessary",
  2022. voteRejected: "Rejected",
  2023. voteConfusing: "Confusing",
  2024. voteTroll: "Troll",
  2025. voteNsfw: "NSFW",
  2026. voteViolent: "Violent",
  2027. voteToxic: "Toxic",
  2028. voteHarassment: "Harassment",
  2029. voteHate: "Hate",
  2030. voteScam: "Scam",
  2031. voteTriggering: "Triggering",
  2032. voteInsightful: "Insightful",
  2033. voteAccurate: "Accurate",
  2034. voteActionable: "Actionable",
  2035. voteCreative: "Creative",
  2036. voteSpam: "Spam",
  2037. voteAdultOnly: "Adult Only",
  2038. publishBlog: "Publish Blog",
  2039. privateMessage: "PM",
  2040. pmSendTitle: "Private Messages",
  2041. pmSend: "Send!",
  2042. pmDescription: "Use this form to send an encrypted message to other inhabitants.",
  2043. pmRecipients: "Recipients",
  2044. pmRecipientsHint: "Enter Oasis IDs separated by commas",
  2045. pmSubject: "Subject",
  2046. pmSubjectHint: "Enter the message subject",
  2047. pmText: "Message",
  2048. pmFile: "Attachment",
  2049. private: "Private",
  2050. privateDescription: "Your encrypted messages.",
  2051. privateInbox: "Inbox",
  2052. privateSent: "Sent",
  2053. privateDelete: "Delete",
  2054. pmCreateButton: "Write a PM",
  2055. noPrivateMessages: "No private messages.",
  2056. pmFromLabel: "From:",
  2057. pmToLabel: "To:",
  2058. pmInvalidMessage: "Invalid message",
  2059. pmNoSubject: "(no subject)",
  2060. pmSubjectLabel: "Subject:",
  2061. pmBodyLabel: "Body",
  2062. pmBotJobs: "42-JobsBOT",
  2063. pmBotProjects: "42-ProjectsBOT",
  2064. pmBotMarket: "42-MarketBOT",
  2065. inboxJobSubscribedTitle: "New subscription to your job offer",
  2066. pmInhabitantWithId: "Inhabitant with OASIS ID:",
  2067. pmHasSubscribedToYourJobOffer: "has subscribed to your job offer",
  2068. inboxProjectCreatedTitle: "New project created",
  2069. pmHasCreatedAProject: "has created a project",
  2070. inboxMarketItemSoldTitle: "Item Sold",
  2071. pmYourItem: "Your item",
  2072. pmHasBeenSoldTo: "has been sold to",
  2073. pmFor: "for",
  2074. inboxProjectPledgedTitle: "New pledge to your project",
  2075. pmHasPledged: "has pledged",
  2076. pmToYourProject: "to your project",
  2077. blockchain: 'BlockExplorer',
  2078. blockchainTitle: 'BlockExplorer',
  2079. blockchainDescription: 'Explore and visualize the blocks in the blockchain.',
  2080. blockchainNoBlocks: 'No blocks found in the blockchain.',
  2081. blockchainBlockID: 'Block ID',
  2082. blockchainBlockAuthor: 'Author',
  2083. blockchainBlockType: 'Type',
  2084. blockchainBlockTimestamp: 'Timestamp',
  2085. blockchainBlockContent: 'Block',
  2086. blockchainBlockURL: 'URL:',
  2087. blockchainContent: 'Block',
  2088. blockchainContentPreview: 'Preview of the block content',
  2089. blockchainLatestDatagram: 'Latest Datagram',
  2090. blockchainDatagram: 'Datagram',
  2091. blockchainDetails: 'View block details',
  2092. blockchainBlockInfo: 'Block Information',
  2093. blockchainBlockDetails: 'Details of the selected block',
  2094. blockchainBack: 'Back to Blockexplorer',
  2095. blockchainContentDeleted: "This content has been tombstoned",
  2096. visitContent: "Visit Content",
  2097. banking: 'Banking',
  2098. bankingTitle: 'Banking',
  2099. bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.',
  2100. bankOverview: 'Overview',
  2101. bankEpochs: 'Epochs',
  2102. bankRules: 'Rules',
  2103. pending: 'Pending',
  2104. closed: 'Closed',
  2105. bankBack: 'Back to Banking',
  2106. bankViewTx: 'View Tx',
  2107. bankClaimNow: 'Claim now',
  2108. bankClaimUBI: 'Claim UBI!',
  2109. bankClaimAndPay: 'Claim & Pay',
  2110. bankClaimedPending: 'Claim pending...',
  2111. bankStatusUnclaimed: 'Unclaimed',
  2112. bankStatusClaimed: 'Claimed',
  2113. bankStatusExpired: 'Expired',
  2114. bankPubOnly: 'PUB-only operation',
  2115. bankNoPendingUBI: 'No pending UBI allocations for this epoch.',
  2116. bankPubBalance: 'PUB Balance',
  2117. bankEpoch: 'Epoch',
  2118. bankPool: 'Pool (this epoch)',
  2119. bankWeightsSum: 'Sum of weights',
  2120. bankAllocations: 'Allocations',
  2121. bankNoAllocations: 'No allocations found.',
  2122. bankNoEpochs: 'No epochs found.',
  2123. bankEpochAllocations: 'Epoch allocations',
  2124. bankAllocId: 'Allocation ID',
  2125. bankAllocDate: 'Date',
  2126. bankAllocConcept: 'Concept',
  2127. bankAllocFrom: 'From',
  2128. bankAllocTo: 'To',
  2129. bankAllocAmount: 'Amount',
  2130. bankAllocStatus: 'Status',
  2131. bankEpochId: 'Epoch ID',
  2132. bankRuleHash: 'Rules Snapshot Hash',
  2133. bankViewEpoch: 'View Epoch',
  2134. bankUserBalance: 'Your Balance',
  2135. ecoWalletNotConfigured: 'ECOin Wallet not configured',
  2136. editWallet: 'Edit wallet',
  2137. addWallet: 'Add wallet',
  2138. bankAddresses: 'Addresses',
  2139. bankNoAddresses: 'No addresses found.',
  2140. bankUser: 'Oasis ID',
  2141. bankAddress: 'Address',
  2142. bankAddAddressTitle: 'Add ECOIN address',
  2143. bankAddAddressUser: 'Oasis ID',
  2144. bankAddAddressAddress: 'ECOIN Address',
  2145. bankAddAddressSave: 'Save',
  2146. bankAddressAdded: 'Address added',
  2147. bankAddressUpdated: 'Address updated',
  2148. bankAddressExists: 'Address already exists',
  2149. bankAddressInvalid: 'Invalid address',
  2150. bankAddressDeleted: 'Address deleted',
  2151. bankAddressNotFound: 'Address not found',
  2152. bankAddressTotal: 'Total Addresses',
  2153. bankAddressSearch: 'Search @inhabitant or address',
  2154. bankAddressActions: 'Actions',
  2155. bankAddressDelete: 'Delete',
  2156. bankAddressSource: 'Source',
  2157. bankAddressDeleteConfirm: 'Delete this address?',
  2158. search: 'Search!',
  2159. bankLocal: 'Local',
  2160. bankFromOasis: 'Oasis',
  2161. bankMyAddress: 'Your address',
  2162. bankRemoveMyAddress: 'Remove my address',
  2163. bankNotRemovableOasis: 'Addresses cannot be removed locally',
  2164. bankingFutureUBI: "UBI",
  2165. pubIdTitle: "PUB Wallet",
  2166. pubIdDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).",
  2167. pubIdLabel: "PUB ID",
  2168. pubIdSave: "Save configuration",
  2169. pubIdPlaceholder: "@PUB_ID.ed25519",
  2170. bankUbiAvailability: "UBI Availability",
  2171. bankUbiAvailableOk: "OK",
  2172. bankUbiAvailableNo: "NO FUNDS!",
  2173. bankAlreadyClaimedThisMonth: "Already claimed this month",
  2174. bankUbiThisMonth: "UBI (this month)",
  2175. bankUbiLastClaimed: "UBI (last claimed)",
  2176. bankUbiNeverClaimed: "Never claimed",
  2177. bankUbiTotalClaimed: "UBI (total claimed)",
  2178. bankUbiPub: "PUB",
  2179. bankUbiInhabitant: "INHABITANT",
  2180. bankUbiClaimedAmount: "CLAIMED (ECO)",
  2181. typeBankUbiResult: "BANKING - UBI",
  2182. bankNoPubConfigured: "No PUB configured. Set your PUB ID in Settings.",
  2183. shopsTitle: "Shops",
  2184. shopDescription: "Discover and manage shops in the network.",
  2185. shopTitle: "Shop",
  2186. shopFilterAll: "ALL",
  2187. shopFilterMine: "MINE",
  2188. shopFilterRecent: "RECENT",
  2189. shopFilterTop: "TOP",
  2190. shopFilterProducts: "PRODUCTS",
  2191. shopFilterPrices: "PRICES",
  2192. shopFilterFavorites: "FAVORITES",
  2193. shopUpload: "Create Shop",
  2194. shopAllSectionTitle: "Shops",
  2195. shopMineSectionTitle: "Your Shops",
  2196. shopRecentSectionTitle: "Recent Shops",
  2197. shopTopSectionTitle: "Top Shops",
  2198. shopProductsSectionTitle: "Top Products",
  2199. shopPricesSectionTitle: "Products by Price",
  2200. shopFavoritesSectionTitle: "Favorites",
  2201. shopCreateSectionTitle: "Create Shop",
  2202. shopUpdateSectionTitle: "Update Shop",
  2203. shopCreate: "Create",
  2204. shopUpdate: "Update",
  2205. shopDelete: "Delete",
  2206. shopAddFavorite: "Add Favorite",
  2207. shopRemoveFavorite: "Remove Favorite",
  2208. shopOpen: "OPEN",
  2209. shopClosed: "CLOSED",
  2210. shopOpenShop: "Open Shop",
  2211. shopCloseShop: "Close Shop",
  2212. shopProducts: "Products",
  2213. shopProductAdd: "Add Product",
  2214. shopProductTitle: "Product",
  2215. shopProductUpdate: "Update Product",
  2216. shopProductPrice: "Price (ECO)",
  2217. shopProductStock: "Stock",
  2218. shopProductUntitled: "Untitled Product",
  2219. shopUntitled: "Untitled Shop",
  2220. shopNoItems: "No shops found.",
  2221. shopNoProducts: "No products yet.",
  2222. shopOutOfStock: "Out of stock",
  2223. shopBuy: "Buy",
  2224. shopBackToShop: "Back to Shop",
  2225. shopShareUrl: "Share URL",
  2226. shopVisitShop: "VISIT SHOP",
  2227. shopStatus: "STATUS",
  2228. shopCreatedAt: "CREATED",
  2229. shopSearchPlaceholder: "Search shops...",
  2230. shopUrl: "URL",
  2231. shopLocation: "Location",
  2232. shopTags: "Tags",
  2233. shopVisibility: "Visibility",
  2234. shopImage: "Image",
  2235. shopShortDescription: "Short Description",
  2236. shopShortDescriptionPlaceholder: "Brief description of your shop",
  2237. shopTitlePlaceholder: "Name of your shop",
  2238. shopDescriptionPlaceholder: "Detailed description of your shop",
  2239. shopUrlPlaceholder: "https://your-shop-url.com",
  2240. shopLocationPlaceholder: "City, Country",
  2241. shopTagsPlaceholder: "tag1, tag2, tag3",
  2242. mapTitlePlaceholder: "Map title",
  2243. shopProductFeatured: "Featured Product",
  2244. shopSendToMarket: "Send to Market",
  2245. typeShop: "SHOP",
  2246. typeShopProduct: "SHOP PRODUCT",
  2247. bankExchange: 'Exchange',
  2248. bankExchangeCurrentValue: 'ECOin Value (1h)',
  2249. bankTotalSupply: 'ECOin Total Supply',
  2250. bankEcoinHours: "ECOin Equivalence in Time",
  2251. bankHoursOfWork: 'hours',
  2252. bankExchangeNoData: 'No data available',
  2253. bankExchangeIndex: 'ECOin Value (1h)',
  2254. bankInflation: 'ECOin Inflation',
  2255. bankCurrentSupply: 'ECOin Current Supply',
  2256. bankingSyncStatus: 'ECOin Status',
  2257. bankingSyncStatusSynced: 'Synced',
  2258. bankingSyncStatusOutdated: 'Outdated',
  2259. statsTitle: 'Statistics',
  2260. statistics: "Statistics",
  2261. statsInhabitant: "Inhabitant Stats",
  2262. statsDescription: "Discover statistics about your network.",
  2263. ALLButton: "ALL",
  2264. MINEButton: "MINE",
  2265. TOMBSTONEButton: "TOMBSTONES",
  2266. statsYou: "You",
  2267. statsUserId: "Oasis ID",
  2268. statsCreatedAt: "Created At",
  2269. statsYourContent: "Content",
  2270. statsYourOpinions: "Opinions",
  2271. statsYourTombstone: "Tombstones",
  2272. statsNetwork: "Network",
  2273. statsTotalInhabitants: "Inhabitants",
  2274. statsDiscoveredTribes: "Tribes (Public)",
  2275. statsPrivateDiscoveredTribes: "Tribes (Private)",
  2276. statsNetworkContent: "Content",
  2277. statsYourMarket: "Market",
  2278. statsYourJob: "Jobs",
  2279. statsYourProject: "Projects",
  2280. statsYourTransfer: "Transfers",
  2281. statsYourForum: "Forums",
  2282. statsNetworkOpinions: "Opinions",
  2283. statsDiscoveredMarket: "Market",
  2284. statsDiscoveredJob: "Jobs",
  2285. statsDiscoveredProject: "Projects",
  2286. statsBankingTitle: "Banking",
  2287. statsEcoWalletLabel: "ECOIN Wallet",
  2288. statsEcoWalletNotConfigured: "Not configured!",
  2289. statsTotalEcoAddresses: "Total addresses",
  2290. statsDiscoveredTransfer: "Transfers",
  2291. statsDiscoveredForum: "Forums",
  2292. statsNetworkTombstone: "Tombstones",
  2293. statsBookmark: "Bookmarks",
  2294. statsEvent: "Events",
  2295. statsTask: "Tasks",
  2296. statsVotes: "Votes",
  2297. statsMarket: "Market",
  2298. statsForum: "Forums",
  2299. statsJob: "Jobs",
  2300. statsProject: "Projects",
  2301. statsReport: "Reports",
  2302. statsFeed: "Feeds",
  2303. statsTribe: "Tribes",
  2304. statsImage: "Images",
  2305. statsAudio: "Audios",
  2306. statsVideo: "Videos",
  2307. statsDocument: "Documents",
  2308. statsMap: "Maps",
  2309. statsShop: "Shops",
  2310. statsShopProduct: "Shop products",
  2311. statsTransfer: "Transfers",
  2312. statsAiExchange: "AI",
  2313. statsPUBs: 'PUBs',
  2314. statsPost: "Posts",
  2315. statsOasisID: "Oasis ID",
  2316. statsSize: "Total (size)",
  2317. statsBlockchainSize: "Blockchain (size)",
  2318. statsBlobsSize: "Blobs (size)",
  2319. statsActivity7d: "Activity (last 7 days)",
  2320. statsActivity7dTotal: "7-day total",
  2321. statsActivity30dTotal: "30-day total",
  2322. statsKarmaScore: "KARMA Score",
  2323. statsPublic: "Public",
  2324. statsPrivate: "Private",
  2325. day: "Day",
  2326. messages: "Messages",
  2327. statsProject: "Projects",
  2328. statsProjectsTitle: "Projects",
  2329. statsProjectsTotal: "Total projects",
  2330. statsProjectsActive: "Active",
  2331. statsProjectsCompleted: "Completed",
  2332. statsProjectsPaused: "Paused",
  2333. statsProjectsCancelled: "Cancelled",
  2334. statsProjectsGoalTotal: "Total goal",
  2335. statsProjectsPledgedTotal: "Total pledged",
  2336. statsProjectsSuccessRate: "Success rate",
  2337. statsProjectsAvgProgress: "Average progress",
  2338. statsProjectsMedianProgress: "Median progress",
  2339. statsProjectsActiveFundingAvg: "Avg. active funding",
  2340. statsJobsTitle: "Jobs",
  2341. statsJobsTotal: "Total jobs",
  2342. statsJobsOpen: "Open",
  2343. statsJobsClosed: "Closed",
  2344. statsJobsOpenVacants: "Open vacants",
  2345. statsJobsSubscribersTotal: "Total subscribers",
  2346. statsJobsAvgSalary: "Average salary",
  2347. statsJobsMedianSalary: "Median salary",
  2348. statsMarketTitle: "Market",
  2349. statsMarketTotal: "Total items",
  2350. statsMarketForSale: "For sale",
  2351. statsMarketReserved: "Reserved",
  2352. statsMarketClosed: "Closed",
  2353. statsMarketSold: "Sold",
  2354. statsMarketRevenue: "Revenue",
  2355. statsMarketAvgSoldPrice: "Avg. sold price",
  2356. statsUsersTitle: "Inhabitants",
  2357. user: "Inhabitant",
  2358. statsTombstoneTitle: "Tombstones",
  2359. statsNetworkTombstones: "Network tombstones",
  2360. statsTombstoneRatio: "Tombstone ratio (%)",
  2361. statsAITraining: "AI Training",
  2362. statsAIExchanges: "Exchanges",
  2363. statsParliamentCandidature: "Parliament candidatures",
  2364. statsParliamentTerm: "Parliament terms",
  2365. statsParliamentProposal: "Parliament proposals",
  2366. statsParliamentRevocation: "Parliament revocations",
  2367. statsParliamentLaw: "Parliament laws",
  2368. statsCourtsCase: "Court cases",
  2369. statsCourtsEvidence: "Court evidence",
  2370. statsCourtsAnswer: "Court answers",
  2371. statsCourtsVerdict: "Court verdicts",
  2372. statsCourtsSettlement: "Court settlements",
  2373. statsCourtsSettlementProposal: "Settlement proposals",
  2374. statsCourtsSettlementAccepted: "Settlements accepted",
  2375. statsCourtsNomination: "Judge nominations",
  2376. statsCourtsNominationVote: "Nomination votes",
  2377. ai: "AI",
  2378. aiTitle: "AI",
  2379. aiDescription: "A Collective Artificial Intelligence (CAI) called '42' that learns from your network.",
  2380. aiInputPlaceholder: "What's up?",
  2381. aiUserQuestion: "Question",
  2382. aiResponseTitle: "Reply",
  2383. aiSubmitButton: "Send!",
  2384. aiSettingsDescription: "Set your prompt (max 128 characters) for the AI model.",
  2385. aiPrompt: "Provide an informative and precise response.",
  2386. aiConfiguration: "Set prompt",
  2387. aiPromptUsed: "Prompt",
  2388. aiClearHistory: "Clear chat history",
  2389. aiSharePrompt: "Add this answer to collective training?",
  2390. aiShareYes: "Yes",
  2391. aiShareNo: "No",
  2392. aiSharedLabel: "Added to training",
  2393. aiRejectedLabel: "Not added to training",
  2394. aiServerError: "The AI could not answer. Please try again.",
  2395. aiInputPlaceholder: "What is Oasis?",
  2396. typeAiExchange: "AI",
  2397. aiApproveTrain: "Add to collective training",
  2398. aiRejectTrain: "Do not train",
  2399. aiTrainPending: "Pending approval",
  2400. aiTrainApproved: "Approved for training",
  2401. aiTrainRejected: "Rejected for training",
  2402. aiSnippetsUsed: "Snippets used",
  2403. aiSnippetsLearned: "Snippets learned",
  2404. statsAITraining: "AI training",
  2405. aiApproveCustomTrain: "Train using this custom answer",
  2406. aiCustomAnswerPlaceholder: "Write your custom answer…",
  2407. statsAIExchanges: "Model Exchanges",
  2408. marketMineSectionTitle: "Your Items",
  2409. marketCreateSectionTitle: "Create Item",
  2410. marketUpdateSectionTitle: "Update",
  2411. marketAllSectionTitle: "Market",
  2412. marketRecentSectionTitle: "Recent Market",
  2413. marketTitle: "Market",
  2414. marketDescription: "A marketplace for exchanging goods or services in your network.",
  2415. marketFilterAll: "ALL",
  2416. marketFilterMine: "MINE",
  2417. marketFilterAuctions: "AUCTIONS",
  2418. marketFilterItems: "EXCHANGE",
  2419. marketFilterNew: "NEW",
  2420. marketFilterUsed: "USED",
  2421. marketFilterBroken: "BROKEN",
  2422. marketFilterForSale: "FOR SALE",
  2423. marketFilterSold: "SOLD",
  2424. marketFilterDiscarded: "DISCARDED",
  2425. marketFilterRecent: "RECENT",
  2426. marketFilterMyBids: "BIDS",
  2427. marketCreateButton: "Create Item",
  2428. marketItemType: "Type",
  2429. marketItemTitle: "Title",
  2430. marketItemAvailable: "Deadline",
  2431. marketItemDescription: "Description",
  2432. marketItemDescriptionPlaceholder: "Describe the item you're selling",
  2433. marketItemStatus: "Status",
  2434. marketShopLabel: "Shop",
  2435. marketItemCondition: "Condition",
  2436. marketItemPrice: "Price",
  2437. marketItemTags: "Tags",
  2438. marketItemTagsPlaceholder: "Enter tags separated by commas",
  2439. marketItemDeadline: "Deadline",
  2440. marketItemIncludesShipping: "Includes Shipping?",
  2441. marketItemHighestBid: "Highest Bid",
  2442. marketItemHighestBidder: "Highest Bidder",
  2443. marketItemStock: "Stock",
  2444. marketOutOfStock: "Out of stock",
  2445. marketItemBidTime: "Bid Time",
  2446. marketActionsUpdate: "Update",
  2447. marketUpdateButton: "Update Item!",
  2448. marketActionsDelete: "Delete",
  2449. marketActionsSold: "Mark as Sold",
  2450. marketActionsChangeStatus: "CHANGE STATUS",
  2451. marketActionsBuy: "BUY!",
  2452. marketAuctionBids: "Current Bids",
  2453. marketPlaceBidButton: "Place Bid",
  2454. marketItemSeller: "Seller",
  2455. marketNoItems: "No items available, yet.",
  2456. marketYourBid: "Your Bid",
  2457. marketCreateFormImageLabel: "Upload media (max-size: 50MB)",
  2458. marketSearchLabel: "Search",
  2459. marketSearchPlaceholder: "Search title or tags",
  2460. marketMinPriceLabel: "Min price",
  2461. marketMaxPriceLabel: "Max price",
  2462. marketSortLabel: "Sort by",
  2463. marketSortRecent: "Most recent",
  2464. marketSortPrice: "Price",
  2465. marketSortDeadline: "Deadline",
  2466. marketSearchButton: "Search",
  2467. marketAuctionEndsIn: "Ends",
  2468. marketAuctionEnded: "Ended",
  2469. marketMyBidBadge: "You bid",
  2470. marketNoItemsMatch: "No items match your search.",
  2471. jobsTitle: "Jobs",
  2472. jobsDescription: "Discover and manage jobs in your network.",
  2473. jobsFilterRecent: "RECENT",
  2474. jobsFilterMine: "MINE",
  2475. jobsFilterAll: "ALL",
  2476. jobsFilterRemote: "REMOTE",
  2477. jobsFilterOpen: "OPEN",
  2478. jobsFilterClosed: "CLOSED",
  2479. jobsCV: "CVs",
  2480. jobsCreateJob: "Create Job",
  2481. jobsRecentTitle: "Recent Jobs",
  2482. jobsMineTitle: "Your Jobs",
  2483. jobsAllTitle: "Jobs",
  2484. jobsRemoteTitle: "Remote Jobs",
  2485. jobsOpenTitle: "Open Jobs",
  2486. jobsClosedTitle: "Closed Jobs",
  2487. jobsCVTitle: "CVs",
  2488. jobsFilterPresencial: "PRESENCIAL",
  2489. jobsFilterFreelancer: "FREELANCER",
  2490. jobsFilterEmployee: "EMPLOYEE",
  2491. jobsPresencialTitle: "Presential Jobs",
  2492. jobsFreelancerTitle: "Freelance Jobs",
  2493. jobsEmployeeTitle: "Employee Jobs",
  2494. jobTitle: "Title",
  2495. jobLocation: "Location",
  2496. jobSalary: "Salary (ECO/1h)",
  2497. jobVacants: "Vacants",
  2498. jobDescription: "Description",
  2499. jobRequirements: "Requirements",
  2500. jobLanguages: "Languages",
  2501. jobStatus: "Status",
  2502. jobStatusOPEN: "OPEN",
  2503. jobStatusCLOSED: "CLOSED",
  2504. jobSetOpen: "Set as OPEN",
  2505. jobSetClosed: "Set as CLOSED",
  2506. jobSubscribeButton: "Join this offer!",
  2507. jobUnsubscribeButton: "Leave this offer!",
  2508. jobTitlePlaceholder: "Enter job title",
  2509. jobDescriptionPlaceholder: "Describe the job",
  2510. jobRequirementsPlaceholder: "Enter requirements",
  2511. jobLanguagesPlaceholder: "English, Spanish, French, Basque...",
  2512. jobTasksPlaceholder: "List tasks",
  2513. jobLocationPresencial: "On-place",
  2514. jobLocationRemote: "Remote",
  2515. jobVacantsPlaceholder: "Number of positions",
  2516. jobSalaryPlaceholder: "Salary in ECO for 1 dedicated hour",
  2517. jobImage: "Upload media (max-size: 50MB)",
  2518. jobTasks: "Tasks",
  2519. jobType: "Job Type",
  2520. jobTime: "Job Time",
  2521. jobSubscribers: "Subscribers",
  2522. noSubscribers: "No subscribers",
  2523. jobsFilterTop: "TOP",
  2524. jobsTopTitle: "Top Salary Jobs",
  2525. createJobButton: "Publish Job",
  2526. viewDetailsButton: "View Details",
  2527. noJobsFound: "No job offers found.",
  2528. jobAuthor: "By",
  2529. jobTypeFreelance: "Freelancer",
  2530. jobTypeSalary: "Employee",
  2531. jobTimePartial: "Part-time",
  2532. jobTimeComplete: "Full-time",
  2533. jobsDeleteButton: "DELETE",
  2534. jobsUpdateButton: "UPDATE",
  2535. jobsFilterApplied: "APPLIED",
  2536. jobsAppliedTitle: "My applications",
  2537. jobsAppliedBadge: "Applied",
  2538. jobsFilterFavs: "Favorites",
  2539. jobsFavsTitle: "Favorites",
  2540. jobsFilterNeeds: "Needs help",
  2541. jobsNeedsTitle: "Needs help",
  2542. jobsSearchLabel: "Search",
  2543. jobsSearchPlaceholder: "Search title, tags, description...",
  2544. jobsMinSalaryLabel: "Min salary",
  2545. jobsMaxSalaryLabel: "Max salary",
  2546. jobsSortLabel: "Sort by",
  2547. jobsSortRecent: "Most recent",
  2548. jobsSortSalary: "Highest salary",
  2549. jobsSortSubscribers: "Most applicants",
  2550. jobsSearchButton: "Search",
  2551. jobsFavoriteButton: "Favorite",
  2552. jobsUnfavoriteButton: "Unfavorite",
  2553. jobsMessageAuthorButton: "PM",
  2554. jobsApplicants: "Applicants",
  2555. jobsUpdatedAt: "Updated",
  2556. jobSetOpen: "Set open",
  2557. jobNewBadge: "NEW",
  2558. jobsTagsLabel: "Tags",
  2559. jobsTagsPlaceholder: "tag1, tag2, tag3",
  2560. noJobsMatch: "No jobs match your search.",
  2561. projectsTitle: "Projects",
  2562. projectsDescription: "Create, fund, and follow community-driven projects in your network.",
  2563. projectCreateProject: "Create Project",
  2564. projectCreateButton: "Create Project",
  2565. projectUpdateButton: "UPDATE",
  2566. projectDeleteButton: "DELETE",
  2567. projectNoProjectsFound: "No projects found.",
  2568. projectFilterAll: "ALL",
  2569. projectFilterMine: "MINE",
  2570. projectFilterActive: "ACTIVE",
  2571. projectFilterPaused: "PAUSED",
  2572. projectFilterCompleted: "COMPLETED",
  2573. projectFilterFollowing: "FOLLOWING",
  2574. projectFilterRecent: "RECENT",
  2575. projectFilterTop: "TOP",
  2576. projectAllTitle: "Projects",
  2577. projectMineTitle: "Your Projects",
  2578. projectActiveTitle: "Active Projects",
  2579. projectPausedTitle: "Paused Projects",
  2580. projectCompletedTitle: "Completed Projects",
  2581. projectFollowingTitle: "Following Projects",
  2582. projectRecentTitle: "Recent Projects",
  2583. projectTopTitle: "Top Funded",
  2584. projectTitlePlaceholder: "Project name",
  2585. projectImage: "Upload media (max-size: 50MB)",
  2586. projectDescription: "Description",
  2587. projectDescriptionPlaceholder: "Tell the story and goals…",
  2588. projectGoal: "Goal (ECO)",
  2589. projectGoalPlaceholder: "50000",
  2590. projectDeadline: "Deadline",
  2591. projectProgress: "Starting Progress (%)",
  2592. projectStatus: "Status",
  2593. projectFunding: "Funding",
  2594. projectPledged: "Pledged",
  2595. projectSetStatus: "Set Status",
  2596. projectSetProgress: "Update Progress",
  2597. projectFollowButton: "FOLLOW",
  2598. projectUnfollowButton: "UNFOLLOW",
  2599. projectStatusACTIVE: "ACTIVE",
  2600. projectStatusPAUSED: "PAUSED",
  2601. projectStatusCOMPLETED: "COMPLETED",
  2602. projectStatusCANCELLED: "CANCELLED",
  2603. projectPledgeTitle: "Back this project",
  2604. projectPledgePlaceholder: "Amount in ECO",
  2605. projectBounties: "Bounties",
  2606. projectBountiesInputLabel: "Bounties (one per line: Title|Amount [ECO]|Description)",
  2607. projectBountiesPlaceholder: "Fix UI bug|100|Link to issue\nWrite docs|250|Outline usage examples",
  2608. projectNoBounties: "No bounties found.",
  2609. projectTitle: "Title",
  2610. projectAddBountyTitle: "New Bounty",
  2611. projectBountyTitle: "Bounty Title",
  2612. projectBountyAmount: "Amount (ECO)",
  2613. projectBountyDescription: "Description",
  2614. projectMilestoneSelect: "Select Milestone",
  2615. projectBountyCreateButton: "Create Bounty",
  2616. projectBountyStatus: "Bounty Status",
  2617. projectBountyOpen: "open",
  2618. projectBountyClaimed: "claimed",
  2619. projectBountyDone: "completed",
  2620. projectBountyClaimedBy: "claimed by",
  2621. projectBountyClaimButton: "claim",
  2622. projectBountyCompleteButton: "Mark Completed",
  2623. projectMilestones: "Milestones",
  2624. projectAddMilestoneTitle: "New milestone",
  2625. projectMilestoneTitle: "Milestone Title",
  2626. projectMilestoneTargetPercent: "Percent (%)",
  2627. projectMilestoneDueDate: "Date",
  2628. projectMilestoneCreateButton: "Create Milestone",
  2629. projectMilestoneStatus: "Milestone Status",
  2630. projectMilestoneOpen: "open",
  2631. projectMilestoneDone: "completed",
  2632. projectMilestoneMarkDone: "Mark as Completed",
  2633. projectMilestoneDue: "due",
  2634. projectNoMilestones: "No milestones found.",
  2635. projectMilestoneMarkDone: "Mark as Done",
  2636. projectMilestoneTitlePlaceholder: "Enter milestone title",
  2637. projectMilestoneDescriptionPlaceholder: "Enter description for this milestone",
  2638. projectMilestoneDescription: "Milestone Description",
  2639. projectBudgetGoal: "Budget (Goal)",
  2640. projectBudgetAssigned: "Assigned to bounties",
  2641. projectBudgetRemaining: "Remaining",
  2642. projectBudgetOver: "⚠ Over budget: assigned exceeds goal",
  2643. projectFollowers: "Followers",
  2644. projectFollowersTitle: "Followers",
  2645. projectFollowersNone: "No followers yet.",
  2646. projectMore: "more",
  2647. projectYouFollowHint: "You follow this project",
  2648. projectBackers: "Backers",
  2649. projectBackersTitle: "Backers",
  2650. projectBackersTotal: "Total backers",
  2651. projectBackersTotalPledged: "Total pledged",
  2652. projectBackersYourPledge: "Your pledge",
  2653. projectBackersNone: "No pledges yet.",
  2654. projectNoRemainingBudget: "No remaining budget.",
  2655. projectFilterBackers: "BACKERS",
  2656. projectFilterApplied: "APPLIED",
  2657. projectAppliedTitle: "APPLIED",
  2658. projectBackersLeaderboardTitle: "Top Backers",
  2659. projectNoBackersFound: "No backers found.",
  2660. projectBackerAmount: "Total contributed",
  2661. projectBackerPledges: "Pledges",
  2662. projectBackerProjects: "Projects",
  2663. projectPledgeAmount: "Amount",
  2664. projectSelectMilestoneOrBounty: "Select Milestone or Bounty",
  2665. projectPledgeButton: "Pledge",
  2666. footerLicense: "GPLv3",
  2667. footerPackage: "Package",
  2668. footerVersion: "Version",
  2669. modulesModuleName: "Name",
  2670. modulesModuleDescription: "Description",
  2671. modulesModuleStatus: "Status",
  2672. modulesTotalModulesLabel: "Loaded Modules",
  2673. modulesEnabledModulesLabel: "Enabled",
  2674. modulesDisabledModulesLabel: "Disabled",
  2675. modulesPopularLabel: "Popular",
  2676. modulesPopularDescription: "Module to receive posts that are trending, most viewed, or most commented on.",
  2677. modulesTopicsLabel: "Topics",
  2678. modulesTopicsDescription: "Module to receive discussion categories based on shared interests.",
  2679. modulesSummariesLabel: "Summaries",
  2680. modulesSummariesDescription: "Module to receive summaries of long discussions or posts.",
  2681. modulesLatestLabel: "Latest",
  2682. modulesLatestDescription: "Module to receive the most recent posts and discussions.",
  2683. modulesThreadsLabel: "Threads",
  2684. modulesThreadsDescription: "Module to receive conversations grouped by topic or question.",
  2685. modulesMultiverseLabel: "Multiverse",
  2686. modulesMultiverseDescription: "Module to receive content from other federated peers.",
  2687. modulesInvitesLabel: "Invites",
  2688. modulesInvitesDescription: "Module to manage and apply invite codes.",
  2689. modulesWalletLabel: "Wallet",
  2690. modulesWalletDescription: "Module to manage your digital assets (ECOin).",
  2691. modulesLegacyLabel: "Legacy",
  2692. modulesLegacyDescription: "Module to manage your secret (private key) quickly and securely.",
  2693. modulesCipherLabel: "Cipher",
  2694. modulesCipherDescription: "Module to encrypt and decrypt your text symmetrically (using a shared password).",
  2695. modulesBookmarksLabel: "Bookmarks",
  2696. modulesBookmarksDescription: "Module to discover and manage bookmarks.",
  2697. modulesVideosLabel: "Videos",
  2698. modulesVideosDescription: "Module to discover and manage videos.",
  2699. modulesDocsLabel: "Documents",
  2700. modulesDocsDescription: "Module to discover and manage documents.",
  2701. modulesAudiosLabel: "Audios",
  2702. modulesAudiosDescription: "Module to discover and manage audios.",
  2703. modulesTagsLabel: "Tags",
  2704. modulesTagsDescription: "Module to discover and explore taxonomy patterns (tags).",
  2705. modulesImagesLabel: "Images",
  2706. modulesImagesDescription: "Module to discover and manage images.",
  2707. modulesTrendingLabel: "Trending",
  2708. modulesTrendingDescription: "Module to explore the most popular content.",
  2709. modulesEventsLabel: "Events",
  2710. modulesEventsDescription: "Module to discover and manage events.",
  2711. modulesTasksLabel: "Tasks",
  2712. modulesTasksDescription: "Module to discover and manage tasks.",
  2713. modulesMarketLabel: "Market",
  2714. modulesMarketDescription: "Module to exchange goods or services.",
  2715. modulesShopsLabel: "Shops",
  2716. modulesShopsDescription: "Module to manage and discover shops.",
  2717. modulesTribesLabel: "Tribes",
  2718. modulesTribesDescription: "Module to explore or create tribes (groups).",
  2719. modulesVotationsLabel: "Votations",
  2720. modulesVotationsDescription: "Module to discover and manage votations.",
  2721. modulesReportsLabel: "Reports",
  2722. modulesReportsDescription: "Module to manage and track reports related to issues, bugs, abuses, and content warnings.",
  2723. modulesOpinionsLabel: "Opinions",
  2724. modulesOpinionsDescription: "Module to discover and vote on opinions.",
  2725. modulesTransfersLabel: "Transfers",
  2726. modulesTransfersDescription: "Module to discover and manage smart-contracts (transfers).",
  2727. modulesFeedLabel: "Feed",
  2728. modulesFeedDescription: "Module to discover and share short-texts (feeds).",
  2729. modulesParliamentLabel: "Parliament",
  2730. modulesParliamentDescription: "Module to elect governments and vote on laws.",
  2731. modulesCourtsLabel: "Courts",
  2732. modulesCourtsDescription: "Module to resolve conflicts and emit veredicts.",
  2733. modulesPixeliaLabel: "Pixelia",
  2734. modulesPixeliaDescription: "Module to draw on a collaborative grid.",
  2735. modulesAgendaLabel: "Agenda",
  2736. modulesAgendaDescription: "Module to manage all your assigned items.",
  2737. modulesAILabel: "AI",
  2738. modulesAIDescription: "Module to talk with a LLM called '42'.",
  2739. modulesForumLabel: "Forums",
  2740. modulesForumDescription: "Module to discover and manage forums.",
  2741. modulesJobsLabel: "Jobs",
  2742. modulesJobsDescription: "Module to discover and manage jobs.",
  2743. modulesProjectsLabel: "Projects",
  2744. modulesProjectsDescription: "Module to explore, crowd-funding and manage projects.",
  2745. modulesBankingLabel: "Banking",
  2746. modulesBankingDescription: "Module to determine the real value of ECOIN and distribute a UBI using the common treasury.",
  2747. modulesFavoritesLabel: "Favorites",
  2748. modulesFavoritesDescription: "Module to manage your favorite content.",
  2749. fileTooLargeTitle: "File too large",
  2750. fileTooLargeMessage: "The file exceeds the maximum allowed size (50 MB). Please select a smaller file.",
  2751. goBack: "Go back",
  2752. directConnect: "Direct Connect",
  2753. directConnectDescription: "Connect directly to a peer by entering their IP address, port and public key. The peer will be added as a followed connection.",
  2754. peerHost: "IP / Hostname",
  2755. peerPort: "Port (default: 8008)",
  2756. peerPublicKey: "Public Key (@...ed25519)",
  2757. connectAndFollow: "Connect",
  2758. deviceSourceLabel: "Device source",
  2759. modulesPresetTitle: "Common Configurations",
  2760. modulesPreset_minimal: "Minimal",
  2761. modulesPreset_basic: "Basic",
  2762. modulesPreset_social: "Social",
  2763. modulesPreset_economy: "Economy",
  2764. modulesPreset_full: "Full",
  2765. statsCarbonFootprintTitle: "Carbon Footprint",
  2766. statsCarbonFootprintNetwork: "Network carbon footprint",
  2767. statsCarbonFootprintYours: "Your carbon footprint",
  2768. statsCarbonTombstone: "Tombstoning footprint",
  2769. feedSuccessMsg: "Feed published successfully!",
  2770. dominantOpinionLabel: "Dominant opinion",
  2771. uploadMedia: "Upload media (max-size: 50MB)",
  2772. mapsLabel: "Maps",
  2773. mapTitle: "Maps",
  2774. mapDescription: "Explore and manage offline maps in your network.",
  2775. mapMineSectionTitle: "Your Maps",
  2776. mapCreateSectionTitle: "Create Map",
  2777. mapUpdateSectionTitle: "Update Map",
  2778. mapAllSectionTitle: "Maps",
  2779. mapRecentSectionTitle: "Recent Maps",
  2780. mapFavoritesSectionTitle: "Favorites",
  2781. mapFilterAll: "ALL",
  2782. mapFilterMine: "MINE",
  2783. mapFilterRecent: "RECENT",
  2784. mapFilterFavorites: "FAVORITES",
  2785. mapUploadButton: "Upload Map",
  2786. mapCreateButton: "Create Map",
  2787. mapUpdateButton: "Update",
  2788. mapDeleteButton: "Delete",
  2789. mapAddFavoriteButton: "Add favorite",
  2790. mapRemoveFavoriteButton: "Remove favorite",
  2791. mapLatLabel: "Latitude",
  2792. mapLatPlaceholder: "e.g. 40.4168",
  2793. mapLngLabel: "Longitude",
  2794. mapLngPlaceholder: "e.g. -3.7038",
  2795. mapDescriptionLabel: "Description",
  2796. mapDescriptionPlaceholder: "Describe the map or location...",
  2797. mapTypeLabel: "Map type",
  2798. mapTypeSingle: "SINGLE (only initial location)",
  2799. mapTypeOpen: "OPEN (anyone can add markers)",
  2800. mapTypeClosed: "CLOSED (only creator adds markers)",
  2801. mapTagsLabel: "Tags",
  2802. mapTagsPlaceholder: "Enter tags separated by commas",
  2803. mapUrlLabel: "Map URL",
  2804. mapPickCoordLabel: "Or select a location on the grid:",
  2805. mapMarkersLabel: "markers",
  2806. mapMarkersTitle: "Markers",
  2807. mapMarkerDefault: "Marker",
  2808. mapMarkerLatLabel: "Marker latitude",
  2809. mapMarkerLngLabel: "Marker longitude",
  2810. mapMarkerLabelField: "Marker label",
  2811. mapMarkerLabelPlaceholder: "Describe this marker...",
  2812. markerImageLabel: "Marker Image",
  2813. mapAddMarkerTitle: "Add Marker",
  2814. mapAddMarkerButton: "Add Marker",
  2815. mapCleanMarkerButton: "Clean Marker",
  2816. mapApplyZoom: "Apply Zoom",
  2817. mapSearchPlaceholder: "Search description, tags, author...",
  2818. mapSearchButton: "Search",
  2819. mapZoomIn: "Zoom +",
  2820. mapZoomOut: "Zoom −",
  2821. mapClickToCreate: "Click on the map to select a location",
  2822. mapClickToAddMarker: "Click on the map to add a marker",
  2823. mapUpdatedAt: "Updated",
  2824. mapNoMatch: "No maps match your search.",
  2825. noMaps: "No maps available.",
  2826. mapLocationTitle: "Map Location",
  2827. mapVisitLabel: "Visit map",
  2828. mapUrlPlaceholder: "/maps/MAP_ID",
  2829. typeMap: "MAPS",
  2830. typeMapMarker: "MAP MARKER",
  2831. modulesMapLabel: "Maps",
  2832. modulesMapDescription: "Module to manage and share offline maps.",
  2833. padsTitle: "Pads",
  2834. padTitle: "Pad",
  2835. modulesPadsLabel: "Pads",
  2836. modulesPadsDescription: "Module to manage collaborative text editors.",
  2837. padFilterAll: "ALL",
  2838. padFilterMine: "MINE",
  2839. padFilterRecent: "RECENT",
  2840. padFilterOpen: "OPEN",
  2841. padFilterClosed: "CLOSED",
  2842. padCreate: "Create Pad",
  2843. padUpdate: "Update Pad",
  2844. padDelete: "Delete Pad",
  2845. padTitleLabel: "Title",
  2846. padTitlePlaceholder: "Enter pad title...",
  2847. padStatusLabel: "Status",
  2848. padStatusOpen: "OPEN",
  2849. padStatusInviteOnly: "INVITE-ONLY",
  2850. padStatusClosed: "CLOSED",
  2851. padDeadlineLabel: "Deadline",
  2852. padTagsLabel: "Tags",
  2853. padTagsPlaceholder: "tag1, tag2, ...",
  2854. padMembersLabel: "Members",
  2855. padVisitPad: "Visit Pad",
  2856. padShareUrl: "Share URL",
  2857. padCreated: "Created",
  2858. padAuthor: "Author",
  2859. padGenerateCode: "Generate Code",
  2860. padInviteCodeLabel: "Invite Code",
  2861. padInviteCodePlaceholder: "Enter invite code...",
  2862. padValidateInvite: "Validate",
  2863. padStartEditing: "START EDITING!",
  2864. padEditorPlaceholder: "Start writing...",
  2865. padSubmitEntry: "Submit",
  2866. padNoEntries: "No entries yet.",
  2867. padAllSectionTitle: "Pads",
  2868. padMineSectionTitle: "Your Pads",
  2869. padsNoItems: "No pads found.",
  2870. padsDescription: "Manage collaborative encrypted text editors in your network.",
  2871. padVersionHistory: "Version History",
  2872. padVersionView: "View",
  2873. padRecentSectionTitle: "Recent Pads",
  2874. padOpenSectionTitle: "Open Pads",
  2875. padClosedSectionTitle: "Closed Pads",
  2876. padCreateSectionTitle: "Create New Pad",
  2877. padUpdateSectionTitle: "Update Pad",
  2878. padInviteGenerated: "Invite Code Generated",
  2879. typePad: "PAD",
  2880. padNew: "NEW",
  2881. padAddFavorite: "Add to Favorites",
  2882. padRemoveFavorite: "Remove from Favorites",
  2883. padClose: "Close Pad",
  2884. padBackToEditor: "Back to editor",
  2885. padSearchPlaceholder: "Search pads...",
  2886. calendarsTitle: "Calendars",
  2887. calendarTitle: "Calendar",
  2888. modulesCalendarsLabel: "Calendars",
  2889. modulesCalendarsDescription: "Module to discover and manage calendars.",
  2890. typeCalendar: "CALENDAR",
  2891. calendarFilterAll: "ALL",
  2892. calendarFilterMine: "MINE",
  2893. calendarFilterOpen: "OPEN",
  2894. calendarFilterClosed: "CLOSED",
  2895. calendarFilterRecent: "RECENT",
  2896. calendarFilterFavorites: "FAVORITES",
  2897. calendarCreate: "Create Calendar",
  2898. calendarUpdate: "Update",
  2899. calendarDelete: "Delete",
  2900. calendarTitleLabel: "Title",
  2901. calendarTitlePlaceholder: "Calendar title...",
  2902. calendarStatusLabel: "Status",
  2903. calendarStatusOpen: "OPEN",
  2904. calendarStatusClosed: "CLOSED",
  2905. calendarDeadlineLabel: "Deadline",
  2906. calendarTagsLabel: "Tags",
  2907. calendarTagsPlaceholder: "tag1, tag2...",
  2908. calendarParticipantsLabel: "Participants",
  2909. calendarParticipantsCount: "Participants",
  2910. calendarVisitCalendar: "Visit Calendar",
  2911. calendarCreated: "Created",
  2912. calendarAuthor: "Author",
  2913. calendarJoin: "Join Calendar",
  2914. calendarJoined: "Joined",
  2915. calendarAddDate: "Add Date",
  2916. calendarAddNote: "Add Note",
  2917. calendarDateLabel: "Date",
  2918. calendarDatePlaceholder: "Describe this date...",
  2919. calendarNoteLabel: "Note",
  2920. calendarNotePlaceholder: "Add a note...",
  2921. calendarFirstDateLabel: "Date",
  2922. calendarFirstNoteLabel: "Notes",
  2923. calendarIntervalLabel: "Interval",
  2924. calendarIntervalWeekly: "Weekly",
  2925. calendarIntervalMonthly: "Monthly",
  2926. calendarIntervalYearly: "Yearly",
  2927. calendarFormDescription: "Description",
  2928. calendarNoDates: "No dates added yet.",
  2929. calendarNoNotes: "No notes.",
  2930. calendarsNoItems: "No calendars found.",
  2931. calendarsDescription: "Discover and manage calendars in your network.",
  2932. calendarMonthPrev: "\u2190 Prev",
  2933. calendarMonthNext: "Next \u2192",
  2934. calendarMonthLabel: "Dates",
  2935. calendarsShareUrl: "Share URL",
  2936. calendarAllSectionTitle: "All Calendars",
  2937. calendarRecentSectionTitle: "Recent Calendars",
  2938. calendarFavoritesSectionTitle: "Favorites",
  2939. calendarMineSectionTitle: "Your Calendars",
  2940. calendarOpenSectionTitle: "Open Calendars",
  2941. calendarClosedSectionTitle: "Closed Calendars",
  2942. calendarCreateSectionTitle: "Create New Calendar",
  2943. calendarUpdateSectionTitle: "Update Calendar",
  2944. calendarAddFavorite: "Add to Favorites",
  2945. calendarDeleteNote: "Delete",
  2946. calendarRemoveFavorite: "Remove from Favorites",
  2947. calendarSearchPlaceholder: "Search calendars...",
  2948. calendarAddEntry: "Add Entry",
  2949. calendarLeave: "Leave Calendar",
  2950. statsCalendar: "Calendars",
  2951. statsCalendarDate: "Calendar Dates",
  2952. statsCalendarNote: "Calendar Notes",
  2953. modulesChatsLabel: "Chats",
  2954. modulesChatsDescription: "Module to discover and manage encrypted chats.",
  2955. typeChat: "CHAT",
  2956. typeChatMessage: "CHAT MESSAGE",
  2957. chatLabel: "CHATS",
  2958. chatMessageLabel: "CHAT MESSAGES",
  2959. chatsTitle: "Chats",
  2960. chatMineSectionTitle: "Your Chats",
  2961. chatRecentTitle: "Recent Chats",
  2962. chatFavoritesTitle: "Favorites",
  2963. chatOpenTitle: "Open Chats",
  2964. chatClosedTitle: "Closed Chats",
  2965. chatDescription: "Description",
  2966. chatCategory: "Category",
  2967. chatStatus: "STATUS",
  2968. chatFilterAll: "ALL",
  2969. chatFilterMine: "MINE",
  2970. chatFilterRecent: "RECENT",
  2971. chatFilterFavorites: "FAVORITES",
  2972. chatFilterOpen: "OPEN",
  2973. chatFilterClosed: "CLOSED",
  2974. chatCreate: "Create Chat",
  2975. chatUpdate: "Update Chat",
  2976. chatDelete: "Delete Chat",
  2977. chatClose: "Close Chat",
  2978. chatVisitChat: "VISIT CHAT",
  2979. chatUntitled: "Untitled Chat",
  2980. chatNoItems: "No chats found.",
  2981. chatParticipants: "Participants",
  2982. chatStartChatting: "START CHATTING!",
  2983. chatGenerateCode: "Generate Code",
  2984. chatShareUrl: "Share URL",
  2985. chatCreatedAt: "CREATED",
  2986. chatSearchPlaceholder: "Search chats...",
  2987. chatStatusOpen: "OPEN",
  2988. chatStatusInviteOnly: "INVITE-ONLY",
  2989. chatStatusClosed: "CLOSED",
  2990. chatSendMessage: "Send",
  2991. chatMessagePlaceholder: "Type your message...",
  2992. chatNoMessages: "No messages yet.",
  2993. chatLeave: "Leave Chat",
  2994. chatInviteCodeLabel: "Enter invite code",
  2995. chatJoinByInvite: "Join",
  2996. chatTitlePlaceholder: "Chat title",
  2997. chatDescriptionPlaceholder: "Chat description",
  2998. chatTagsPlaceholder: "tag1, tag2, tag3",
  2999. chatImageLabel: "Select an image file (.jpeg, .jpg, .png, .gif)",
  3000. chatInviteCode: "Invite Code",
  3001. chatAuthor: "Author",
  3002. chatCreated: "Created",
  3003. chatAddFavorite: "Add to Favorites",
  3004. chatRemoveFavorite: "Remove from Favorites",
  3005. chatPM: "PM",
  3006. chatStatusLabel: "Status",
  3007. chatCategoryLabel: "Category",
  3008. chatParticipantsLabel: "Participants",
  3009. gamesTitle: "Games",
  3010. gamesDescription: "Discover and play some mini-games in your network.",
  3011. gamesFilterAll: "ALL",
  3012. gamesPlayButton: "PLAY!",
  3013. gamesBackToGames: "Back to Games",
  3014. modulesGamesLabel: "Games",
  3015. modulesGamesDescription: "Module to discover and play some games.",
  3016. gamesCocolandTitle: "Cocoland",
  3017. gamesCocolandDesc: "A coconut with eyes jumping over palm trees and collecting ECOins. How far can you go?",
  3018. gamesTheFlowTitle: "ECOinflow",
  3019. gamesTheFlowDesc: "Connect PUBs to habitants through validators, shops and accumulators. Survive the CBDC threat!",
  3020. gamesNeonInfiltratorTitle: "Neon Infiltrator",
  3021. gamesNeonInfiltratorDesc: "Infiltrate the grid, collect confidential data, evade security drones and escape. How many levels can you clear?",
  3022. gamesSpaceInvadersTitle: "Space Invaders",
  3023. gamesSpaceInvadersDesc: "Stop the alien invasion! Shoot down waves of invaders before they reach the ground.",
  3024. gamesArkanoidTitle: "Arkanoid",
  3025. gamesArkanoidDesc: "Break all the bricks with your paddle and ball. A classic arcade challenge.",
  3026. gamesPingPongTitle: "PingPong",
  3027. gamesPingPongDesc: "Classic ping-pong against an AI opponent. First to 5 points wins.",
  3028. gamesOutrunTitle: "Outrun",
  3029. gamesOutrunDesc: "Race against time! Dodge traffic and reach the finish line before the clock runs out.",
  3030. gamesAsteroidsTitle: "Asteroids",
  3031. gamesAsteroidsDesc: "Pilot your ship through a deadly asteroid field. Shoot them down before they hit you.",
  3032. gamesRockPaperScissorsTitle: "Rock Paper Scissors",
  3033. gamesRockPaperScissorsDesc: "Rock, Paper, Scissors against an AI. Best of three rounds wins.",
  3034. gamesTikTakToeTitle: "TikTakToe",
  3035. gamesTikTakToeDesc: "Classic Tic-Tac-Toe against an AI. Get three in a row to win.",
  3036. gamesFlipFlopTitle: "FlipFlop",
  3037. gamesFlipFlopDesc: "Flip a coin and bet on heads or tails. How lucky are you?",
  3038. games8BallTitle: "8Ball Pool",
  3039. games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.",
  3040. gamesArtilleryTitle: "Artillery",
  3041. gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.",
  3042. gamesLabyrinthTitle: "Labyrinth",
  3043. gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.",
  3044. gamesCocomanTitle: "Cocoman",
  3045. gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Ghosts move in real time — keep moving!",
  3046. gamesTetrisTitle: "Tetris",
  3047. gamesAudioPendulumTitle: "Audio Pendulum",
  3048. gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.",
  3049. gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?",
  3050. gamesQuakeTitle: "Quake Arena",
  3051. gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.",
  3052. gamesFilterScoring: "SCORING",
  3053. gamesHallOfFame: "Hall of Fame",
  3054. gamesHallPlayer: "Player",
  3055. gamesHallScore: "Score",
  3056. gamesNoScores: "No scores yet.",
  3057. gamesHallDate: "Date",
  3058. typeGameScore: "GAME SCORE",
  3059. gamesNewRecord: "New Record",
  3060. gameScoreLabel: "GAME SCORES",
  3061. statsChat: "Chats",
  3062. statsChatMessage: "Chat messages",
  3063. statsPad: "Pads",
  3064. statsPadEntry: "Pad entries",
  3065. statsGameScore: "Game scores",
  3066. chatAccessDenied: "You do not have access to the chat. Ask for an invitation to access the content.",
  3067. padAccessDenied: "You do not have access to the pad. Ask for an invitation to access the content.",
  3068. contentAccessDenied: "You do not have access to content.",
  3069. blockAccessRestricted: "Access restricted",
  3070. tribeContentAccessDenied: "Access Denied",
  3071. tribeContentAccessDeniedMsg: "This content belongs to a tribe. You must be a member to access it.",
  3072. tribeViewTribes: "View Tribes"
  3073. }
  3074. };