oasis_en.js 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866
  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. pmPreview: "Preview",
  61. pmPreviewTitle: "Message preview",
  62. noPrivateMessages: "You haven't received any private message, yet.",
  63. peers: "Peers",
  64. privateDescription: ["Private messages are ",strong("encrypted for your public key")," and have a maximum of 7 recipients."],
  65. search: "Search",
  66. searchDescription: "Description",
  67. imageSearch: "Image Search",
  68. searchPlaceholder: "Seek for @inhabitants, #tags and keywords...",
  69. settings: "Settings",
  70. continueReading: "Continue reading",
  71. moreComments: "more comment",
  72. readThread: "read the rest of the thread",
  73. // pixelia
  74. pixeliaTitle: 'Pixelia',
  75. pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.',
  76. coordLabel: 'Coordinate (e.g., A3)',
  77. coordPlaceholder: 'Enter coordinate',
  78. contributorsTitle: "Contributors",
  79. pixeliaBy: "by",
  80. colorLabel: 'Pick a color',
  81. paintButton: 'Paint it!',
  82. invalidCoordinate: 'Incorrect coordinate',
  83. goToMuralButton: "View Mural",
  84. totalPixels: 'Total Pixels',
  85. // modules
  86. modules: "Modules",
  87. modulesViewTitle: "Modules",
  88. modulesViewDescription: "Set your environment by enabling or disabling modules.",
  89. inbox: "Inbox",
  90. multiverse: "Multiverse",
  91. popularLabel: "Highlights",
  92. topicsLabel: "Topics",
  93. latestLabel: "Latest",
  94. summariesLabel: "Summaries",
  95. threadsLabel: "Threads",
  96. multiverseLabel: "Multiverse",
  97. inboxLabel: "Inbox",
  98. invitesLabel: "Invites",
  99. walletLabel: "Wallet",
  100. legacyLabel: "Keys",
  101. cipherLabel: "Crypter",
  102. bookmarksLabel: "Bookmarks",
  103. videosLabel: "Videos",
  104. torrentsLabel: "Torrents",
  105. docsLabel: "Documents",
  106. audiosLabel: "Audios",
  107. tagsLabel: "Tags",
  108. imagesLabel: "Images",
  109. inhabitantsLabel: "Inhabitants",
  110. trendingLabel: "Trending",
  111. eventsLabel: "Events",
  112. tasksLabel: "Tasks",
  113. transfersTitle: "Transfers",
  114. marketTitle: "Market",
  115. opinionsTitle: "Opinions",
  116. saveSettings: "Save configuration",
  117. // post actions
  118. comment: "Comment",
  119. subtopic: "Subtopic",
  120. json: "JSON",
  121. createdAt: "Created At",
  122. createdBy: "by",
  123. // relationships
  124. unfollow: "Unsupport",
  125. follow: "Support",
  126. block: "Block",
  127. unblock: "Unblock",
  128. newerPosts: "Newer posts",
  129. olderPosts: "Older posts",
  130. feedRangeEmpty: "The given range is empty for this feed. Try viewing the ",
  131. seeFullFeed: "full feed",
  132. feedEmpty: "The Oasis network has never seen posts from this account.",
  133. beginningOfFeed: "This is the beginning of the feed",
  134. noNewerPosts: "No newer posts have been received yet.",
  135. relationshipNotFollowing: "You are not supported",
  136. relationshipTheyFollow: "Supports you",
  137. relationshipMutuals: "Mutual support",
  138. relationshipFollowing: "You are supporting",
  139. relationshipYou: "You",
  140. relationshipBlocking: "You are blocking",
  141. relationshipBlockedBy: "You are blocked",
  142. relationshipMutualBlock: "Mutual block",
  143. relationshipNone: "You are not supporting",
  144. relationshipConflict: "Conflict",
  145. relationshipBlockingPost: "Blocked post",
  146. // spreads view
  147. viewLikes: "View spreads",
  148. spreadedDescription: "List of posts spread by the inhabitant.",
  149. // composer
  150. attachFiles: "Attach files",
  151. preview: "Preview",
  152. publish: "Write",
  153. contentWarningPlaceholder: "Add a subject to the post (optional)",
  154. privateWarningPlaceholder: "Add inhabitants to send a private post (optional)",
  155. publishWarningPlaceholder: "...",
  156. publishCustomDescription: [
  157. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  158. ],
  159. commentWarning: [
  160. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  161. ],
  162. commentPublic: "public",
  163. commentPrivate: "private",
  164. commentLabel: ({ publicOrPrivate, markdownUrl }) => [
  165. ],
  166. publishLabel: ({ markdownUrl, linkTarget }) => [
  167. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  168. ],
  169. replyLabel: ({ markdownUrl }) => [
  170. "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
  171. ],
  172. publishCustomInfo: ({ href }) => [
  173. "If you have experience, you can also ",
  174. a({ href }, "write an advanced post"),
  175. ".",
  176. ],
  177. publishBasicInfo: ({ href }) => [
  178. "If you have not experience, you should ",
  179. a({ href }, "write a post"),
  180. ".",
  181. ],
  182. publishCustom: "Write advanced post",
  183. subtopicLabel: "Create a subtopic of this post",
  184. //mentions
  185. messagePreview: "Post Preview",
  186. mentionsMatching: "Matching Mentions",
  187. mentionsName: "Name",
  188. mentionsRelationship: "Relationship",
  189. //settings
  190. updateit: "GET UPDATES!",
  191. info: "Info",
  192. settingsIntro: ({ version }) => [
  193. `[SNH] ꖒ OASIS [ v.${version} ]`,
  194. ],
  195. timeAgo: "ago",
  196. sendTime: "about ",
  197. theme: "Theme",
  198. legacy: "Keys",
  199. legacyTitle: "Keys",
  200. legacyDescription: "Manage your secret (private key) quickly and safely.",
  201. legacyExportButton: "Export",
  202. legacyImportButton: "Import",
  203. ssbLogStream: "Blokchain",
  204. ssbLogStreamDescription: "Configure the message limit for Blockchain streams.",
  205. saveSettings: "Save Settings",
  206. exportTitle: "Export data",
  207. exportDescription: "Set password (min 32 characters long) to encrypt your key",
  208. exportDataTitle: "Backup",
  209. exportDataDescription: "Download your data (secret key excluded!)",
  210. exportDataButton: "Download database",
  211. pubWallet: "PUB Wallet",
  212. pubWalletDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).",
  213. pubWalletConfiguration: "Save Configuration",
  214. importTitle: "Import data",
  215. importDescription: "Import your encrypted secret (private key) to enable your avatar",
  216. importAttach: "Attach encrypted file (.enc)",
  217. passwordLengthInfo: "Password must be at least 32 characters long.",
  218. passwordImport: "Write your password to decrypt data that will be saved at your system home (name: secret)",
  219. randomPassword: "Random password",
  220. exportPasswordPlaceholder: "Use lowercase, uppercase, numbers & symbols",
  221. fileInfo: "Your encrypted secret key will be saved at your system home (name: oasis.enc)",
  222. themeIntro:
  223. "Choose a theme.",
  224. setTheme: "Set theme",
  225. language: "Language",
  226. languageDescription:
  227. "If you'd like to use another language, select it here.",
  228. setLanguage: "Set language",
  229. status: "Status",
  230. peerConnections: "Peers",
  231. peerConnectionsIntro: "Manage all your connections with other peers.",
  232. online: "Online",
  233. offline: "Offline",
  234. discovered: 'Discovered',
  235. unknown: 'Unknown',
  236. pub: 'PUB',
  237. supported: "Supported",
  238. recommended: "Recommended",
  239. blocked: "Blocked",
  240. noConnections: "No peers connected.",
  241. noDiscovered: "No peers discovered.",
  242. noSupportedConnections: "No peers supported.",
  243. noBlockedConnections: "No peers blocked.",
  244. noRecommendedConnections: "No peers recommended.",
  245. connectionActionIntro:
  246. "",
  247. startNetworking: "Start networking",
  248. stopNetworking: "Stop networking",
  249. restartNetworking: "Restart networking",
  250. sync: "Sync network",
  251. indexes: "Indexes",
  252. indexesDescription:
  253. "Rebuilding your indexes is safe, and may fix some types of bugs.",
  254. //invites
  255. invites: "Invites",
  256. invitesTitle: "Invites",
  257. invitesInvites: "Invitations",
  258. invitesDescription: "Manage and apply invite codes in your network.",
  259. invitesTribesTitle: "Tribes",
  260. invitesTribeInviteCodePlaceholder: "Enter tribe invite code",
  261. invitesTribeJoinButton: "Join Tribe",
  262. invitesPubsTitle: "PUBs",
  263. invitesPubInviteCodePlaceholder: "Enter PUB invite code",
  264. invitesAcceptInvite: "Join PUB",
  265. invitesAcceptedInvites: "Federated Networks",
  266. invitesNoInvites: "No invitations accepted, yet.",
  267. invitesUnfollow: "Unfollow",
  268. invitesFollow: "Follow",
  269. invitesUnfollowedInvites: "Unfederated Networks",
  270. invitesNoFederatedPubs: "No federated networks.",
  271. invitesNoUnfollowed: "No unfederated networks.",
  272. invitesUnreachablePubs: "Unreachable Networks",
  273. invitesNoUnreachablePubs: "No unreachable networks.",
  274. currentlyUnreachable: "ERROR!",
  275. errorDetails: "Error Details",
  276. genericError: "An error occurred.",
  277. //panic
  278. panicMode: "Panic Mode!",
  279. //cipher
  280. encryptData: "Set password (min 32 characters long) to encrypt your blockchain",
  281. decryptData: "Enter password to decrypt your blockchain",
  282. panicModeDescription: "Encrypt/Decrypt or DELETE your blockchain",
  283. removeDataDescription: "WARNING: This process cannot be undone.",
  284. encryptPanicButton: "Encrypt blockchain",
  285. decryptPanicButton: "Decrypt blockchain",
  286. removePanicButton: "DELETE ALL YOUR DATA!",
  287. //search
  288. searchTitle: "Search",
  289. searchDescriptionLabel: "Search for content in your network.",
  290. searchLanguagesLabel: "Languages",
  291. searchSkillsLabel: "Skills",
  292. searchPlaceholder:"Search for content...",
  293. searchSubmit:"Search!",
  294. tribeLocationLabel:"Location",
  295. tribeModeLabel:"Invite Mode",
  296. tribeMembersCount:"Members Count",
  297. searchDateLabel:"Date",
  298. searchLocationLabel:"Location",
  299. searchPriceLabel:"Price",
  300. searchUrlLabel:"URL",
  301. searchCategoryLabel:"Category",
  302. searchStartLabel:"Start Time",
  303. searchEndLabel:"End Time",
  304. searchPriorityLabel:"Priority",
  305. searchStatusLabel:"Status",
  306. statusLabel:"Status",
  307. totalVotesLabel:"Total Votes",
  308. votesLabel:"Votes",
  309. noResultsFound:"No results found.",
  310. author:"Author",
  311. createdAtLabel:"Created at",
  312. hashtagDescription:"Explore the content associated with this hashtag",
  313. tribeDescriptionLabel:"Description",
  314. votesOption:"Vote Options",
  315. voteYesLabel:"Yes",
  316. voteNoLabel:"No",
  317. allTypesLabel: "UNLIMITED",
  318. ABSTENTIONLabel:"ABSTENTION",
  319. YESLabel:"YES",
  320. NOLabel:"NO",
  321. FOLLOW_MAJORITYLabel: "FOLLOW MAJORITY",
  322. CONFUSEDLabel: "CONFUSED",
  323. NOT_INTERESTEDLabel: "NOT INTERESTED",
  324. voteOptionYes:"Yes",
  325. voteOptionNo:"No",
  326. voteOptionAbstention:"Abstention",
  327. StatusLabel:"Status",
  328. votesOptionYesLabel:"Yes",
  329. votesOptionNoLabel:"No",
  330. votesOptionAbstentionLabel:"Abstention",
  331. votesQuestionLabel:"Question",
  332. votesCreatedByLabel:"Created by",
  333. voteStatusOpen:"OPEN",
  334. voteStatusClosed:"CLOSED",
  335. //image search page
  336. imageSearchLabel: "Enter words to search for images labelled with them.",
  337. //posts and comments
  338. commentDescription: ({ parentUrl }) => [
  339. " commented on ",
  340. a({ href: parentUrl }, " thread"),
  341. ],
  342. commentTitle: ({ authorName }) => [`Comment on @${authorName}'s post`],
  343. subtopicDescription: ({ parentUrl }) => [
  344. " created a subtopic from ",
  345. a({ href: parentUrl }, " a post"),
  346. ],
  347. subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`],
  348. mysteryDescription: "posted a mysterious post",
  349. // misc + search
  350. oasisDescription: "OASIS Project Network",
  351. searchSubmit: "Let's Search...",
  352. hashtagDescription: "Posts tagged with this hashtag.",
  353. postLabel: "POSTS",
  354. aboutLabel: "INHABITANTS",
  355. feedLabel: "FEEDS",
  356. votesLabel: "GOVERNANCE",
  357. reportLabel: "REPORTS",
  358. imageLabel: "IMAGES",
  359. videoLabel: "VIDEOS",
  360. audioLabel: "AUDIOS",
  361. documentLabel: "DOCUMENTS",
  362. eventLabel: "EVENTS",
  363. taskLabel: "TASKS",
  364. transferLabel: "TRANSFERS",
  365. curriculumLabel: "CURRICULUM",
  366. bookmarkLabel: "BOOKMARKS",
  367. tribeLabel: "TRIBES",
  368. marketLabel: "MARKET",
  369. cvLabel: "CVs",
  370. submit: "Submit",
  371. subjectLabel: "Subject",
  372. editProfile: "Edit Avatar",
  373. editProfileDescription:
  374. "",
  375. profileName: "Name",
  376. profileImage: "Avatar Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  377. profileDescription: "Description",
  378. hashtagDescription:
  379. "Posts from inhabitants in your network that reference this #hashtag, sorted by recency.",
  380. rebuildName: "Rebuild database",
  381. wallet: "Wallet",
  382. walletAddress: "Address",
  383. walletAmount: "Amount",
  384. walletAddressLine: ({ address }) => `Address: ${address}`,
  385. walletAmountLine: ({ amount }) => `Amount: ${amount} ECO`,
  386. walletBack: "Back",
  387. walletBalanceTitle: "Balance",
  388. walletWalletSendTitle: "Send",
  389. walletReceiveTitle: "Receive",
  390. walletHistoryTitle: "History",
  391. walletBalanceLine: ({ balance }) => `${balance} ECO`,
  392. walletCnfrs: "Cnfrs",
  393. walletConfirm: "Confirm",
  394. walletDescription: "Manage your digital assets, including sending and receiving ECOin, viewing your balance, and accessing your transaction history.",
  395. walletDate: "Date",
  396. walletFee: "Fee (The higher the fee, the faster your transaction will be processed)",
  397. walletFeeLine: ({ fee }) => `Fee: ECO ${fee}`,
  398. walletHistory: "History",
  399. walletReceive: "Receive",
  400. walletReset: "Reset",
  401. walletSend: "Send",
  402. walletStatus: "Status",
  403. walletDisconnected: [
  404. "ECOin ",
  405. strong("wallet disconnected"),
  406. ". Check ",
  407. a({ href: '/settings' }, "your settings"),
  408. " or connection status.",
  409. ],
  410. walletSentToLine: ({ destination, amount }) => `Sent ECO ${amount} to ${destination}`,
  411. walletSettingsTitle: "Wallet",
  412. walletSettingsDescription: "Integrate Oasis with your ECOin wallet.",
  413. walletSettingsDocLink: "ECOin installation guide",
  414. walletStatusMessages: {
  415. invalid_amount: "Invalid amount",
  416. invalid_dest: "Invalid destination address",
  417. invalid_fee: "Invalid fee",
  418. validation_errors: "Validation errors",
  419. send_tx_success: "Transaction successful",
  420. },
  421. walletTitle: "Wallet",
  422. walletTotalCostLine: ({ totalCost }) => `Total cost: ECO ${totalCost}`,
  423. walletTransactionId: "Transaction ID",
  424. walletTxId: "Tx ID",
  425. walletType: "Type",
  426. walletUser: "Username",
  427. walletPass: "Password",
  428. walletConfiguration: "Set wallet",
  429. //cipher
  430. cipher: "Crypter",
  431. cipherTitle: "Crypter",
  432. cipherDescription: "Encrypt and decrypt your text symmetrically (using a shared password).",
  433. randomPassword: "Random Password",
  434. cipherEncryptTitle: "Encrypt Text",
  435. cipherEncryptDescription: "Enter text to encrypt",
  436. cipherTextLabel: "Text to Encrypt",
  437. cipherTextPlaceholder: "Enter text to encrypt...",
  438. cipherPasswordLabel: "Set password (min 32 characters long) to encrypt your text",
  439. cipherPasswordPlaceholder: "Enter a password...",
  440. cipherEncryptButton: "Encrypt",
  441. cipherDecryptTitle: "Decrypt Text",
  442. cipherDecryptDescription: "Enter text to decrypt",
  443. cipherEncryptedMessageLabel: "Encrypted Text",
  444. cipherDecryptedMessageLabel: "Decrypted Text",
  445. cipherPasswordUsedLabel: "Password used to encrypt (keep it!)",
  446. cipherEncryptedTextPlaceholder: "Enter the encrypted text...",
  447. cipherIvLabel: "IV",
  448. cipherIvPlaceholder: "Enter the initialization vector...",
  449. cipherDecryptButton: "Decrypt",
  450. password: "Password",
  451. text: "Text",
  452. encryptedText: "Encrypted Text",
  453. iv: "Initialization Vector (IV)",
  454. encryptTitle: "Encrypt your text",
  455. encryptDescription: "Enter the text you want to encrypt and provide a password.",
  456. encryptButton: "Encrypt",
  457. decryptTitle: "Decrypt your text",
  458. decryptDescription: "Enter the encrypted text and provide the same password used for encryption.",
  459. decryptButton: "Decrypt",
  460. passwordLengthError: "Password must be at least 32 characters long.",
  461. missingFieldsError: "Text, password or IV not provided.",
  462. encryptionError: "Error encrypting text.",
  463. decryptionError: "Error decrypting text.",
  464. //bookmarking
  465. bookmarkTitle: "Bookmarks",
  466. bookmarkDescription: "Discover and manage bookmarks in your network.",
  467. bookmarkCreateTitle: "Create a bookmark",
  468. bookmarkTitleLabel: "Title",
  469. bookmarkDescriptionLabel: "Description",
  470. bookmarkCreatedAt: "Created At",
  471. bookmarkAuthor: "By",
  472. bookmarkUrlLabel: "Link",
  473. bookmarkLink: "Link",
  474. bookmarkCreateButton: "Create Bookmark",
  475. existingbookmarksTitle: "Existing Bookmarks",
  476. nobookmarks: "No bookmarks available.",
  477. newbookmarkSuccess: "New bookmark successfully created!",
  478. bookmarkFilterAll: "ALL",
  479. bookmarkFilterMine: "MINE",
  480. bookmarkUpdateButton: "Update",
  481. bookmarkDeleteButton: "Delete",
  482. bookmarkAllSectionTitle: "Bookmarks",
  483. bookmarkMineSectionTitle: "Your Bookmarks",
  484. bookmarkCreateSectionTitle: "Create Bookmark",
  485. bookmarkUpdateSectionTitle: "Update Bookmark",
  486. bookmarkTagsLabel: "Tags",
  487. bookmarkTagsPlaceholder: "Enter tags separated by commas",
  488. bookmarkFilterInternal: "INTERNAL",
  489. bookmarkFilterExternal: "EXTERNAL",
  490. bookmarkFilterTop: "TOP",
  491. bookmarkFilterRecent: "RECENT",
  492. bookmarkInternalTitle: "Internal Bookmarks",
  493. bookmarkExternalTitle: "External Bookmarks",
  494. bookmarkTopTitle: "Top Bookmarks",
  495. bookmarkRecentTitle: "Recent Bookmarks",
  496. bookmarkCategoryLabel: "Category",
  497. bookmarkCategoryPlaceholder: "Enter category",
  498. bookmarkLastVisitLabel: "Last Visit",
  499. bookmarkDescriptionLabel: "Description",
  500. bookmarkDescriptionText: "Description",
  501. bookmarkLinkLabel: "Link",
  502. bookmarkCategory: "Category",
  503. bookmarkLastVisit: "Last Visit",
  504. //videos
  505. videoTitle: "Videos",
  506. videoFileLabel: "Upload Video (.mp4, .webm, .ogv, .mov)",
  507. videoDescription: "Discover and manage videos in your network.",
  508. videoMineSectionTitle: "Your Videos",
  509. videoCreateSectionTitle: "Upload Video",
  510. videoUpdateSectionTitle: "Update Video",
  511. videoAllSectionTitle: "Videos",
  512. videoFilterAll: "ALL",
  513. videoFilterMine: "MINE",
  514. videoFilterRecent: "RECENT",
  515. videoFilterTop: "TOP",
  516. videoRecentSectionTitle: "Recent Videos",
  517. videoTopSectionTitle: "Top Videos",
  518. videoCreateButton: "Upload Video",
  519. videoUpdateButton: "Update",
  520. videoDeleteButton: "Delete",
  521. videoTagsLabel: "Tags",
  522. videoTagsPlaceholder: "Enter tags separated by commas",
  523. videoTitleLabel: "Title",
  524. videoTitlePlaceholder: "Optional",
  525. videoDescriptionLabel: "Description",
  526. videoDescriptionPlaceholder: "Optional",
  527. noVideos: "No videos available.",
  528. videoCreatedAt: "Created At",
  529. videoAuthor: "By",
  530. //documents
  531. documentTitle: "Documents",
  532. documentFileLabel: "Upload Document (.pdf)",
  533. documentDescription: "Discover and manage documents in your network.",
  534. documentMineSectionTitle: "Your Documents",
  535. documentRecentSectionTitle: "Recent Documents",
  536. documentTopSectionTitle: "Top Documents",
  537. documentCreateSectionTitle: "Upload Document",
  538. documentUpdateSectionTitle: "Edit Document",
  539. documentAllSectionTitle: "Documents",
  540. documentFilterAll: "ALL",
  541. documentFilterMine: "MINE",
  542. documentFilterRecent: "RECENT",
  543. documentFilterTop: "TOP",
  544. documentCreateButton: "Upload Document",
  545. documentUpdateButton: "Update",
  546. documentDeleteButton: "Delete",
  547. documentTagsLabel: "Tags",
  548. documentTagsPlaceholder: "Enter tags separated by commas",
  549. documentTitleLabel: "Title",
  550. documentTitlePlaceholder: "Optional",
  551. documentDescriptionLabel: "Description",
  552. documentDescriptionPlaceholder: "Optional",
  553. noDocuments: "No documents available.",
  554. documentCreatedAt: "Created At",
  555. documentAuthor: "By",
  556. //audios
  557. audioTitle: "Audios",
  558. audioDescription: "Explore and manage audio content in your network.",
  559. audioPluginTitle: "Title",
  560. audioPluginDescription: "Description",
  561. audioMineSectionTitle: "Your Audios",
  562. audioCreateSectionTitle: "Upload Audio",
  563. audioUpdateSectionTitle: "Update Audio",
  564. audioAllSectionTitle: "Audios",
  565. audioRecentSectionTitle: "Recent Audios",
  566. audioTopSectionTitle: "Top Audios",
  567. audioFilterAll: "ALL",
  568. audioFilterMine: "MINE",
  569. audioFilterRecent: "RECENT",
  570. audioFilterTop: "TOP",
  571. audioCreateButton: "Upload Audio",
  572. audioUpdateButton: "Update",
  573. audioDeleteButton: "Delete",
  574. audioFileLabel: "Select an audio file (.mp3, .wav, .ogg)",
  575. audioTagsLabel: "Tags",
  576. audioTagsPlaceholder: "Enter tags separated by commas",
  577. audioTitleLabel: "Title",
  578. audioTitlePlaceholder: "Optional",
  579. audioDescriptionLabel: "Description",
  580. audioDescriptionPlaceholder: "Optional",
  581. audioCreatedAt: "Created At",
  582. audioAuthor: "By",
  583. audioNoFile: "No audio file provided",
  584. audioNotSupported: "Your browser does not support the audio element.",
  585. noAudios: "No audios available.",
  586. // inhabitants
  587. yourContacts: "Your Contacts",
  588. allInhabitants: "Inhabitants",
  589. allCVs: "All CVs",
  590. discoverPeople: "Discover inhabitants in your network.",
  591. allInhabitantsButton: "ALL",
  592. contactsButton: "SUPPORTS",
  593. CVsButton: "CVs",
  594. matchSkills: "Match Skills",
  595. matchSkillsButton: "MATCH SKILLS",
  596. suggestedButton: "SUGGESTED",
  597. searchInhabitantsPlaceholder: "FILTER inhabitants BY NAME …",
  598. filterLocation: "FILTER inhabitants BY LOCATION …",
  599. filterLanguage: "FILTER inhabitants BY LANGUAGE …",
  600. filterSkills: "FILTER inhabitants BY SKILLS …",
  601. applyFilters: "Apply Filters",
  602. locationLabel: "Location",
  603. languagesLabel: "Languages",
  604. skillsLabel: "Skills",
  605. commonSkills: "Common Skills",
  606. mutualFollowers: "Mutual Followers",
  607. latestInteractions: "Latest Interactions",
  608. viewAvatar: "View Avatar",
  609. viewCV: "View CV",
  610. suggestedSectionTitle: "Suggested",
  611. topkarmaSectionTitle: "Top Karma",
  612. blockedSectionTitle: "Blocked",
  613. gallerySectionTitle: "GALLERY",
  614. blockedButton: "BLOCKED",
  615. blockedLabel: "Blocked User",
  616. inhabitantviewDetails: "View Details",
  617. viewDetails: "View Details",
  618. oasisId: "ID",
  619. noInhabitantsFound: "No inhabitants found, yet.",
  620. //trending
  621. trendingTitle: "Trending",
  622. exploreTrending: "Explore the most popular content in your network.",
  623. ALLButton: "ALL",
  624. MINEButton: "MINE",
  625. RECENTButton: "RECENT",
  626. TOPButton: "TOP",
  627. bookmarkButton: "BOOKMARKS",
  628. transferButton: "TRANSFERS",
  629. eventButton: "EVENTS",
  630. taskButton: "TASKS",
  631. votesButton: "GOVERNANCE",
  632. reportButton: "REPORTS",
  633. feedButton: "FEED",
  634. marketButton: "MARKET",
  635. imageButton: "IMAGES",
  636. audioButton: "AUDIOS",
  637. videoButton: "VIDEOS",
  638. documentButton: "DOCUMENTS",
  639. author: "By",
  640. createdAtLabel: "Created At",
  641. totalVotes: "Total Votes",
  642. noTrendingFound: "No trending content found.",
  643. noContentMessage: "No trending content available, yet.",
  644. trendingDescription: "Description",
  645. trendingDate: "Date",
  646. trendingLocation: "Location",
  647. trendingPrice: "Price",
  648. trendingUrl: "URL",
  649. trendingCategory: "Category",
  650. trendingStart: "Start",
  651. trendingEnd: "End",
  652. trendingPriority: "Priority",
  653. trendingStatus: "Status",
  654. trendingFrom: "From",
  655. trendingTo: "To",
  656. trendingConcept: "Concept",
  657. trendingAmount: "Amount",
  658. trendingDeadline: "Deadline",
  659. trendingItemStatus: "Item Status",
  660. trendingTotalVotes: "Total Votes",
  661. trendingTotalOpinions: "Total Opinions",
  662. trendingNoContentMessage: "No trending content available, yet.",
  663. trendingAuthor: "By",
  664. trendingCreatedAtLabel: "Created At",
  665. trendingTotalCount: "Total Count",
  666. //tasks
  667. tasksTitle: "Tasks",
  668. tasksDescription: "Discover and manage tasks in your network.",
  669. taskTitleLabel: "Title",
  670. taskDescriptionLabel: "Description",
  671. taskStartTimeLabel: "Start Time",
  672. taskEndTimeLabel: "End Time",
  673. taskPriorityLabel: "Priority",
  674. taskPrioritySelect: "Select priority",
  675. taskPriorityUrgent: "Urgent",
  676. taskPriorityHigh: "High",
  677. taskPriorityMedium: "Medium",
  678. taskPriorityLow: "Low",
  679. taskLocationLabel: "Location",
  680. taskTagsLabel: "Tags",
  681. taskVisibilityLabel: "Visibility",
  682. taskPublic: "public",
  683. taskPrivate: "private",
  684. taskCreatedAt: "Created At",
  685. taskBy: "By",
  686. taskStatus: "Status",
  687. taskStatusOpen: "Open",
  688. taskStatusInProgress: "In Progress",
  689. taskStatusClosed: "Closed",
  690. taskAssignedTo: "Assigned to",
  691. taskAssignees: "Assignees",
  692. taskAssignButton: "Assign to Me",
  693. taskUnassignButton: "Unassign",
  694. taskCreateButton: "Create Task",
  695. taskUpdateButton: "Update",
  696. taskDeleteButton: "Delete",
  697. taskFilterAll: "ALL",
  698. taskFilterMine: "MINE",
  699. taskFilterOpen: "OPEN",
  700. taskFilterInProgress: "IN-PROGRESS",
  701. taskFilterClosed: "CLOSED",
  702. taskFilterAssigned: "ASSIGNED",
  703. taskFilterArchived: "ARCHIVED",
  704. taskFilterUrgent: "URGENT",
  705. taskFilterHigh: "HIGH",
  706. taskFilterMedium: "MEDIUM",
  707. taskFilterLow: "LOW",
  708. taskAllSectionTitle: "Tasks",
  709. taskMineSectionTitle: "Your Tasks",
  710. taskCreateSectionTitle: "Create Task",
  711. taskUpdateSectionTitle: "Update",
  712. taskOpenTitle: "Open Tasks",
  713. taskInProgressTitle: "In Progress Tasks",
  714. taskClosedTitle: "Closed Tasks",
  715. taskAssignedTitle: "Assigned Tasks",
  716. taskArchivedTitle: "Archived Tasks",
  717. taskPublicTitle: "Public Tasks",
  718. taskPrivateTitle: "Private Tasks",
  719. notasks: "No tasks available.",
  720. noLocation: "No location specified",
  721. //events
  722. eventTitle: "Events",
  723. eventDateLabel: "Date",
  724. eventsTitle: "Events",
  725. eventsDescription: "Discover and manage events in your network.",
  726. eventDescription: "Description",
  727. eventPrice: "Price",
  728. eventStatus: "Status",
  729. eventOrganizer: "Organizer",
  730. eventAllSectionTitle: "Events",
  731. eventMineSectionTitle: "Your Events",
  732. eventArchivedTitle: "Archived Events",
  733. eventCreateSectionTitle: "Create Event",
  734. eventUpdateSectionTitle: "Update Event",
  735. eventDeleteButton: "Delete",
  736. eventCreateButton: "Create Event",
  737. eventTitleLabel: "Title",
  738. eventDescriptionLabel: "Description",
  739. eventDescriptionPlaceholder: "Enter event description...",
  740. eventUpdateButton: "Update",
  741. eventAttendeesLabel: "Attendees",
  742. eventAttendeesPlaceholder: "Enter attendees, separated by commas...",
  743. eventTagsLabel: "Tags",
  744. eventTagsPlaceholder: "Enter event tags, separated by commas...",
  745. eventTags: "Tags",
  746. eventPriceLabel: "Price",
  747. eventUrlLabel: "URL",
  748. eventAttendees: "Attendees",
  749. noAttendees: "No attendees yet",
  750. eventCreatedAt: "Created At",
  751. eventLocation: "Location",
  752. eventLocationLabel: "Location",
  753. eventNoLocation: "No location specified",
  754. eventNoURL: "No URL specified",
  755. eventBy: "By",
  756. noevents: "No events available.",
  757. eventDate: "Date",
  758. eventDateFormat: "DD:MM:YYYY HH:mm",
  759. eventAttendButton: "Attend Event",
  760. eventUnattendButton: "Unattend Event",
  761. eventCreatedBy: "Created By",
  762. eventAttendeesCount: "Attendees Count",
  763. eventCreatedByYou: "You created this event",
  764. eventAttendConfirmation: "You are now attending this event",
  765. eventUnattendConfirmation: "You are no longer attending this event",
  766. eventFilterAll: "ALL",
  767. eventFilterMine: "MINE",
  768. eventFilterToday: "TODAY",
  769. eventFilterWeek: "THIS WEEK",
  770. eventFilterMonth: "THIS MONTH",
  771. eventFilterYear: "THIS YEAR",
  772. eventFilterArchived: "ARCHIVED",
  773. eventTodayTitle: "Today's Events",
  774. eventThisWeekTitle: "This Week's Events",
  775. eventThisMonthTitle: "This Month's Events",
  776. eventThisYearTitle: "This Year's Events",
  777. eventPrivacyLabel: "Visibility",
  778. eventPublic: "Public",
  779. eventPrivate: "Private",
  780. eventPublicTitle: "Public Events",
  781. eventNoPrice: "Free Event",
  782. eventNoImage: "No image uploaded",
  783. eventAttendConfirmation: "You are now attending this event",
  784. eventUnattendConfirmation: "You are no longer attending this event",
  785. //tags
  786. tagsTitle: "Tags",
  787. tagsDescription: "Discover and explore taxonomy patterns in your network.",
  788. tagsAllSectionTitle: "Tags",
  789. tagsTopSectionTitle: "Top Tags",
  790. tagsCloudSectionTitle: "Tags Cloud",
  791. tagsFilterAll: "ALL",
  792. tagsFilterTop: "TOP",
  793. tagsFilterCloud: "CLOUD",
  794. tagsNoItems: "No tags available.",
  795. tagsTableHeaderTag: "TAG/LINK:",
  796. tagsTableHeaderCount: "COUNTER:",
  797. //transfers
  798. transfersTitle: "Transfers",
  799. transfersDescription: "Discover and manage transfers in your network.",
  800. transfersFrom: "From",
  801. transfersTo: "To",
  802. transfersFilterAll: "ALL",
  803. transfersFilterMine: "MINE",
  804. transfersFilterMarket: "MARKET",
  805. transfersFilterTop: "TOP",
  806. transfersFilterPending: "PENDING",
  807. transfersFilterUnconfirmed: "UNCONFIRMED",
  808. transfersFilterClosed: "CLOSED",
  809. transfersFilterDiscarded: "DISCARDED",
  810. transfersCreateButton: "Create Transfer",
  811. transfersUpdateButton: "Update",
  812. transfersDeleteButton: "Delete",
  813. transfersToUser: "Oasis ID",
  814. transfersToUserValidation: "Valid Oasis ID, e.g. @…=.ed25519",
  815. transfersConcept: "Concept",
  816. transfersAmount: "Amount",
  817. transfersDeadline: "Deadline",
  818. transfersTags: "Tags",
  819. transfersStatus: "Status",
  820. transfersStatusUnconfirmed: "UNCONFIRMED",
  821. transfersStatusClosed: "CLOSED",
  822. transfersStatusDiscarded: "DISCARDED",
  823. transfersCreatedAt: "Created At",
  824. transfersConfirmations: "CONFIRMATIONS",
  825. transfersConfirmButton: "Confirm Transfer",
  826. transfersNoItems: "No transfers found.",
  827. transfersMineSectionTitle: "Your Transfers",
  828. transfersMarketSectionTitle: "Market Transfers",
  829. transfersTopSectionTitle: "Top Transfers",
  830. transfersPendingSectionTitle: "Pending Transfers",
  831. transfersUnconfirmedSectionTitle: "Unconfirmed Transfers",
  832. transfersClosedSectionTitle: "Closed Transfers",
  833. transfersDiscardedSectionTitle: "Discarded Transfers",
  834. transfersAllSectionTitle: "Transfers",
  835. //governance (voting/polls)
  836. governanceTitle: "Governance",
  837. governanceDescription: "Discover and manage votations in your network.",
  838. voteMineSectionTitle: "Your Votations",
  839. voteCreateSectionTitle: "Create Votation",
  840. voteUpdateSectionTitle: "Update",
  841. voteOpenTitle: "Open Votations",
  842. voteClosedTitle: "Closed Votations",
  843. voteAllSectionTitle: "Governance",
  844. voteCreateButton: "Create Votation",
  845. voteUpdateButton: "Update",
  846. voteDeleteButton: "Delete",
  847. voteOptionYes: "YES",
  848. voteOptionNo: "NO",
  849. voteOptionAbstention: "ABSTENTION",
  850. voteConfused: "CONFUSED",
  851. voteFollowMajority: "FOLLOW MAJORITY",
  852. voteNotInterested: "NOT INTERESTED",
  853. voteFilterAll: "ALL",
  854. voteFilterMine: "MINE",
  855. voteFilterOpen: "OPEN",
  856. voteFilterClosed: "CLOSED",
  857. voteQuestionLabel: "Question",
  858. voteDeadlineLabel: "Deadline",
  859. voteOptionsLabel: "Your vote",
  860. voteBreakdown: "Breakdown",
  861. voteFinalResult: "RESULT",
  862. voteTagsLabel: "Tags",
  863. voteDeadline: "Deadline",
  864. voteStatus: "Status",
  865. voteTotalVotes: "Total Votes",
  866. voteTags: "Tags",
  867. voteOpinions: "Opinions",
  868. novotes: "No voting proposals available.",
  869. voteBy: "By",
  870. voteCreatedAt: "Created At",
  871. voteNoQuestion: "No question provided",
  872. voteUnknownCreator: "Unknown Creator",
  873. voteUnknownDate: "Unknown Date",
  874. errorVoteNotFound: "Vote not found",
  875. errorAlreadyVoted: "You have already opined.",
  876. errorVoteClosedCannotEdit: "You cannot edit a closed votation",
  877. errorVoteDeadlinePassed: "The deadline for this votation has passed",
  878. errorRetrievingVote: "Error retrieving vote",
  879. errorCreatingVote: "Error creating vote",
  880. errorVoteAlreadyVoted: "Cannot edit after opinion has been cast",
  881. errorDeletingOldVote: "Error deleting old opinion",
  882. errorCreatingUpdatedVote: "Error creating updated opinion",
  883. errorCreatingTombstone: "Error creating tombstone",
  884. // CV
  885. cvTitle: "CV",
  886. cvLabel: "Curriculum Vitae (CV)",
  887. cvEditSectionTitle: "Edit CV",
  888. cvCreateSectionTitle: "Create CV",
  889. cvDescription: "Manage and share your professional skills and information.",
  890. cvNameLabel: "Full Name",
  891. cvDescriptionLabel: "Summary",
  892. cvPhotoLabel: "Photo",
  893. cvPersonalExperiencesLabel: "Personal Experiences",
  894. cvPersonalSkillsLabel: "Personal Skills (comma-separated)",
  895. cvOasisExperiencesLabel: "Oasis Contribution Experiences",
  896. cvOasisSkillsLabel: "Oasis Contribution Skills (comma-separated)",
  897. cvEducationExperiencesLabel: "Educational Experiences",
  898. cvEducationalSkillsLabel: "Educational Skills (comma-separated)",
  899. cvProfessionalExperiencesLabel: "Professional Experiences",
  900. cvProfessionalSkillsLabel: "Professional Skills (comma-separated)",
  901. cvLanguagesLabel: "Languages",
  902. cvLocationLabel: "Location",
  903. cvStatusLabel: "Status",
  904. cvPreferencesLabel: "Preferences",
  905. cvOasisContributorLabel: "Oasis Contributor",
  906. cvPersonal: "Personal",
  907. cvOasis: "Oasis Contributor (optional)",
  908. cvOasisContributorView: "Oasis Contribution",
  909. cvEducational: "Educational (optional)",
  910. cvEducationalView: "Educational",
  911. cvProfessional: "Professional (optional)",
  912. cvProfessionalView: "Professional",
  913. cvAvailability: "Availability (optional)",
  914. cvAvailabilityView: "Availability",
  915. cvUpdateButton: "Update",
  916. cvCreateButton: "Create CV",
  917. cvContactLabel: "Contact",
  918. cvCreatedAt: "Created At",
  919. cvUpdatedAt: "Updated At",
  920. cvEditButton: "Update",
  921. cvDeleteButton: "Delete",
  922. cvNoCV: "No CV found.",
  923. // blog/post,
  924. blogSubject: "Subject",
  925. blogMessage: "Message",
  926. blogImage: "Upload Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  927. blogPublish: "Preview",
  928. noPopularMessages: "No popular messages published, yet",
  929. // forum
  930. forumTitle: "Forums",
  931. forumCategoryLabel: "Category",
  932. forumTitleLabel: "Title",
  933. forumTitlePlaceholder: "Forum title...",
  934. forumCreateButton: "Create forum",
  935. forumCreateSectionTitle: "Create forum",
  936. forumDescription: "Talk openly with other inhabitants in your network.",
  937. forumFilterAll: "ALL",
  938. forumFilterMine: "MINE",
  939. forumFilterRecent: "RECENT",
  940. forumFilterTop: "TOP",
  941. forumMineSectionTitle: "Your Forums",
  942. forumRecentSectionTitle: "Recent Forums",
  943. forumAllSectionTitle: "Forums",
  944. forumDeleteButton: "Delete",
  945. forumParticipants: "participants",
  946. forumMessages: "messages",
  947. forumLastMessage: "Last message",
  948. forumMessageLabel: "Message",
  949. forumMessagePlaceholder: "Write your message...",
  950. forumSendButton: "Send",
  951. forumVisitForum: "Visit Forum",
  952. noForums: "No forums found.",
  953. //images
  954. imageTitle: "Images",
  955. imagePluginTitle: "Title",
  956. imagePluginDescription: "Description",
  957. imageFileLabel: "Upload Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  958. imageDescription: "Discover and manage images in your network.",
  959. imageMineSectionTitle: "Your Images",
  960. imageCreateSectionTitle: "Upload Image",
  961. imageUpdateSectionTitle: "Update Image",
  962. imageAllSectionTitle: "Images",
  963. imageFilterAll: "ALL",
  964. imageFilterMine: "MINE",
  965. imageCreateButton: "Upload Image",
  966. imageEditDescription: "Edit your image details.",
  967. imageCreateDescription: "Create Image.",
  968. imageTagsLabel: "Tags",
  969. imageTagsPlaceholder: "Enter tags separated by commas",
  970. imageUpdateButton: "Update",
  971. imageDeleteButton: "Delete",
  972. imageCreatedAt: "Created At",
  973. imageAuthor: "By",
  974. imagePreview: "Image Preview",
  975. noImages: "No images available.",
  976. imageFilterRecent: "RECENT",
  977. imageFilterPopular: "POPULAR",
  978. imageFilterGallery: "GALLERY",
  979. imageFilterTop: "TOP",
  980. imageFilterMeme: "MEMES",
  981. imageTitleLabel: "Title",
  982. imageGallerySectionTitle: "Images Gallery",
  983. imageMemeSectionTitle: "Memes",
  984. imageTopSectionTitle: "Top Images",
  985. imageRecentSectionTitle: "Recent Images",
  986. imageTitlePlaceholder: "Optional",
  987. imageDescriptionLabel: "Description",
  988. imageDescriptionPlaceholder: "Optional",
  989. imageMemeLabel: "Mark as MEME",
  990. //feed
  991. feedTitle: "Feed",
  992. createFeedTitle: "Create Feed",
  993. createFeedButton: "Send Feed!",
  994. feedPlaceholder: "What's happening? (max 280 characters)",
  995. ALLButton: "Feeds",
  996. MINEButton: "Your Feeds",
  997. TODAYButton: "TODAY",
  998. TOPButton: "Top Feeds",
  999. CREATEButton: "Create Feed",
  1000. totalOpinions: "Total Opinions",
  1001. alreadyVoted: "You have already opined.",
  1002. noFeedsFound: "No feeds found.",
  1003. author: "By",
  1004. createdAtLabel: "Created at",
  1005. FeedshareYourOpinions: "Discover and share short-texts in your network.",
  1006. voteInteresting: "Interesting",
  1007. voteNecessary: "Necessary",
  1008. voteFunny: "Funny",
  1009. voteDisgusting: "Disgusting",
  1010. voteSensible: "Sensible",
  1011. votePropaganda: "Propaganda",
  1012. voteAdultOnly: "Adult Only",
  1013. voteBoring: "Boring",
  1014. voteConfusing: "Confusing",
  1015. voteInspiring: "Inspiring",
  1016. voteSpam: "Spam",
  1017. refeedButton: "Refeed",
  1018. alreadyRefeeded: "You already refeeded this.",
  1019. //activity
  1020. activityTitle: "Activity",
  1021. yourActivity: "Your Activity",
  1022. globalActivity: "Global Activity",
  1023. activityList: "Activity",
  1024. activityDesc: "See the latest activity in your network.",
  1025. allButton: "ALL",
  1026. mineButton: "MINE",
  1027. noActions: "No activity available.",
  1028. performed: "→",
  1029. from: "From",
  1030. to: "To",
  1031. amount: "Amount",
  1032. concept: "Concept",
  1033. description: "Description",
  1034. meme: "Meme",
  1035. activityContact: "Contact",
  1036. activityBy: "Name",
  1037. activityPixelia: "New pixel added",
  1038. viewImage: "View image",
  1039. playAudio: "Play audio",
  1040. playVideo: "Play video",
  1041. typeRecent: "RECENT",
  1042. errorActivity: "Error retrieving activity",
  1043. typePost: "POST",
  1044. typeTribe: "TRIBE",
  1045. typeAbout: "INHABITANT",
  1046. typeCurriculum: "CV",
  1047. typeImage: "IMAGE",
  1048. typeBookmark: "BOOKMARK",
  1049. typeDocument: "DOCUMENT",
  1050. typeVotes: "GOVERNANCE",
  1051. typeAudio: "AUDIO",
  1052. typeMarket: "MARKET",
  1053. typeJob: "JOB",
  1054. typeProject: "PROJECT",
  1055. typeVideo: "VIDEO",
  1056. typeVote: "SPREAD",
  1057. typeEvent: "EVENT",
  1058. typeTransfer: "TRANSFER",
  1059. typeTask: "TASKS",
  1060. typePixelia: "PIXELIA",
  1061. typeForum: "FORUM",
  1062. typeReport: "REPORT",
  1063. typeFeed: "FEED",
  1064. typeContact: "CONTACT",
  1065. typePub: "PUB",
  1066. typeTombstone: "TOMBSTONE",
  1067. typeBanking: "BANKING",
  1068. activitySupport: "New alliance forged",
  1069. activityJoin: "New PUB joined",
  1070. question: "Question",
  1071. deadline: "Deadline",
  1072. status: "Status",
  1073. votes: "Votes",
  1074. totalVotes: "Total Votes",
  1075. name: "Name",
  1076. skills: "Skills",
  1077. tags: "Tags",
  1078. title: "Title",
  1079. date: "Date",
  1080. category: "Category",
  1081. attendees: "Attendees",
  1082. activitySpread: "->",
  1083. visitLink: "Visit Link",
  1084. viewDocument: "View Document",
  1085. description: "Description",
  1086. location: "Location",
  1087. contentWarning: "Subject",
  1088. personName: "Inhabitant Name",
  1089. typeBankWallet: "BANKING/WALLET",
  1090. typeBankClaim: "BANKING/UBI",
  1091. typeKarmaScore: "KARMA",
  1092. bankWalletConnected: "ECOin Wallet",
  1093. bankUbiReceived: "UBI Received",
  1094. bankTx: "Tx",
  1095. bankEpochShort: "Epoch",
  1096. activityProjectFollow: "%OASIS% is now %ACTION% this project %PROJECT%",
  1097. activityProjectUnfollow: "%OASIS% is now %ACTION% this project %PROJECT%",
  1098. activityProjectPledged: "%OASIS% has %ACTION% %AMOUNT% to project %PROJECT%",
  1099. following: "FOLLOWING",
  1100. unfollowing: "UNFOLLOWING",
  1101. pledged: "PLEDGED",
  1102. //reports
  1103. reportsTitle: "Reports",
  1104. reportsDescription: "Manage and track reports related to issues, bugs, abuses and content warnings in your network.",
  1105. reportsFilterAll: "ALL",
  1106. reportsFilterMine: "MINE",
  1107. reportsFilterFeatures: "FEATURES",
  1108. reportsFilterBugs: "BUGS",
  1109. reportsFilterAbuse: "ABUSE",
  1110. reportsFilterContent: "CONTENT",
  1111. reportsFilterConfirmed: "CONFIRMED",
  1112. reportsFilterResolved: "RESOLVED",
  1113. reportsFilterOpen: "OPEN",
  1114. reportsFilterUnderReview: "UNDER REVIEW",
  1115. reportsFilterInvalid: "INVALID",
  1116. reportsCreateButton: "Create Report",
  1117. reportsTitleLabel: "Title",
  1118. reportsDescriptionLabel: "Description",
  1119. reportsDescriptionPlaceholder: "Please provide a detailed description.",
  1120. reportsCategory: "Category",
  1121. reportsCategoryLabel: "Category",
  1122. reportsCategoryFeatures: "Features",
  1123. reportsCategoryBugs: "Bugs",
  1124. reportsCategoryAbuse: "Abuse",
  1125. reportsCategoryContent: "Content Issues",
  1126. reportsUpdateButton: "Update",
  1127. reportsDeleteButton: "Delete",
  1128. reportsDateLabel: "Date",
  1129. reportsUploadFile: "Upload Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  1130. reportsCreatedBy: "By",
  1131. reportsMineSectionTitle: "Your Reports",
  1132. reportsFeaturesSectionTitle: "Feature Requests",
  1133. reportsBugsSectionTitle: "Bugs",
  1134. reportsAbuseSectionTitle: "Abuse Reports",
  1135. reportsContentSectionTitle: "Content Issues",
  1136. reportsAllSectionTitle: "Reports",
  1137. reportsNoItems: "No reports available.",
  1138. reportsValidationTitle: "Please enter a valid title.",
  1139. reportsValidationDescription: "Description cannot be empty.",
  1140. reportsValidationCategory: "Please select a category.",
  1141. reportsCreatedAt: "Created At",
  1142. reportsCreatedBy: "By",
  1143. reportsSeverity: "Severity",
  1144. reportsSeverityLow: "Low",
  1145. reportsSeverityMedium: "Medium",
  1146. reportsSeverityHigh: "High",
  1147. reportsSeverityCritical: "Critical",
  1148. reportsStatus: "Status",
  1149. reportsStatusOpen: "Open",
  1150. reportsStatusUnderReview: "Under Review",
  1151. reportsStatusResolved: "Resolved",
  1152. reportsStatusInvalid: "Invalid",
  1153. reportsUpdateStatusButton: "Update Status",
  1154. reportsAnonymityOption: "Submit Anonymously",
  1155. reportsAnonymousAuthor: "Anonymous",
  1156. reportsConfirmButton: "CONFIRM REPORT!",
  1157. reportsConfirmations: "Confirmations",
  1158. reportsConfirmedSectionTitle: "Confirmed Reports",
  1159. reportsCreateTaskButton: "CREATE TASK",
  1160. reportsOpenSectionTitle: "Open Reports",
  1161. reportsUnderReviewSectionTitle: "Under Review Reports",
  1162. reportsResolvedSectionTitle: "Resolved Reports",
  1163. reportsInvalidSectionTitle: "Invalid Reports",
  1164. //tribes
  1165. tribesTitle: "Tribes",
  1166. tribeAllSectionTitle: "Tribes",
  1167. tribeMineSectionTitle: "Your Tribes",
  1168. tribeCreateSectionTitle: "Create Tribe",
  1169. tribeUpdateSectionTitle: "Update Tribe",
  1170. tribeGallerySectionTitle: "Tribes Gallery",
  1171. tribeLarpSectionTitle: "L.A.R.P",
  1172. tribeRecentSectionTitle: "Recent Tribes",
  1173. tribeTopSectionTitle: "Popular Tribes",
  1174. tribeviewTribeButton: "Visit Tribe",
  1175. tribeDescription: "Explore or create tribes on your network.",
  1176. tribeFilterAll: "ALL",
  1177. tribeFilterMine: "MINE",
  1178. tribeFilterMembership: "MEMBERSHIP",
  1179. tribeFilterRecent: "RECENT",
  1180. tribeFilterLarp: "L.A.R.P.",
  1181. tribeFilterTop: "TOP",
  1182. tribeFilterGallery: "GALLERY",
  1183. tribeCreateButton: "Create Tribe",
  1184. tribeUpdateButton: "Update",
  1185. tribeDeleteButton: "Delete",
  1186. tribeImageLabel: "Tribe Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  1187. tribeTitleLabel: "Title",
  1188. searchTribesPlaceholder: "FILTER tribes BY NAME …",
  1189. tribeTitlePlaceholder: "Name of the tribe",
  1190. tribeDescriptionLabel: "Description",
  1191. tribeDescriptionPlaceholder: "Describe this tribe",
  1192. tribeLocationLabel: "Location",
  1193. tribeLocationPlaceholder: "Where is this tribe located?",
  1194. tribeTagsLabel: "Tags",
  1195. tribeTagsPlaceholder: "Enter tags separated by commas",
  1196. tribeIsLARPLabel: "L.A.R.P. Tribe?",
  1197. tribeInviteMode: "Invite mode",
  1198. tribeLARPLabel: "L.A.R.P.",
  1199. tribeModeLabel: "MODE",
  1200. tribeIsAnonymousLabel: "STATUS",
  1201. tribeMembersCount: "Members",
  1202. tribeInviteCodePlaceholder: "Enter invite code",
  1203. tribeJoinByCodeButton: "Join with code",
  1204. tribeJoinButton: "JOIN",
  1205. tribeLeaveButton: "LEAVE",
  1206. tribeYes: "YES",
  1207. tribeNo: "NO",
  1208. tribePublic: "PUBLIC",
  1209. tribePrivate: "PRIVATE",
  1210. tribeGenerateInvite: "GENERATE CODE",
  1211. tribeCreatedAt: "Created at",
  1212. tribeAuthor: "By",
  1213. tribeStrict: "Strict",
  1214. tribeOpen: "Open",
  1215. tribeFeedFilterRECENT: "RECENT",
  1216. tribeFeedFilterMINE: "MINE",
  1217. tribeFeedFilterALL: "ALL",
  1218. tribeFeedFilterTOP: "TOP",
  1219. tribeFeedRefeeds: "Refeeds",
  1220. tribeFeedRefeed: "Refeed",
  1221. tribeFeedMessagePlaceholder: "Write a feed…",
  1222. tribeFeedSend: "Send",
  1223. tribeFeedEmpty: "No feed messages available, yet.",
  1224. noTribes: "No tribes found, yet.",
  1225. //agenda
  1226. agendaTitle: "Agenda",
  1227. agendaDescription: "Here you can find all your assigned items.",
  1228. agendaFilterAll: "ALL",
  1229. agendaFilterOpen: "OPEN",
  1230. agendaFilterClosed: "CLOSED",
  1231. agendaFilterTasks: "TASKS",
  1232. agendaFilterMarket: "MARKET",
  1233. agendaFilterTribes: "TRIBES",
  1234. agendaFilterEvents: "EVENTS",
  1235. agendaFilterReports: "REPORTS",
  1236. agendaFilterTransfers: "TRANSFERS",
  1237. agendaFilterJobs: "JOBS",
  1238. agendaFilterProjects: "PROJECTS",
  1239. agendaNoItems: "No assignments found.",
  1240. agendaAuthor: "By",
  1241. agendaDiscardButton: "Discard",
  1242. agendaRestoreButton: "Restore",
  1243. agendaCreatedAt: "Created At",
  1244. agendaTitleLabel: "Title",
  1245. agendaMembersCount: "Members",
  1246. agendaDescriptionLabel: "Description",
  1247. agendaStatus: "Status",
  1248. agendaVisibility: "Visibility",
  1249. agendaEventDate: "Event Date",
  1250. agendaEventLocation: "Location",
  1251. agendaEventPrice: "Price",
  1252. agendaEventUrl: "URL",
  1253. agendaTaskStart: "Start Time",
  1254. agendaLocationLabel: "Location",
  1255. agendaLARPLabel: "L.A.R.P.",
  1256. agendaYes: "YES",
  1257. agendaNo: "NO",
  1258. agendaInviteModeLabel: "Status",
  1259. agendaAnonymousLabel: "Anonymous",
  1260. agendaMembersLabel: "Members",
  1261. agendareportCategory: "Category",
  1262. agendareportSeverity: "Severity",
  1263. agendareportStatus: "Status",
  1264. agendareportDescription: "Description",
  1265. agendaTaskEnd: "End Time",
  1266. agendaTaskPriority: "Priority",
  1267. agendaTransferFrom: "From",
  1268. agendaTransferTo: "To",
  1269. agendaTransferConcept: "Concept",
  1270. agendaTransferAmount: "Amount",
  1271. agendaTransferDeadline: "Deadline",
  1272. agendaTransferFrom: "From",
  1273. agendaTransferTo: "To",
  1274. agendaTransferConcept: "Concept",
  1275. agendaTransferAmount: "Amount",
  1276. agendaTransferDeadline: "Deadline",
  1277. //opinions
  1278. opinionsTitle: "Opinions",
  1279. shareYourOpinions: "Discover and vote for opinions in your network.",
  1280. author: "By",
  1281. voteNow: "Vote now",
  1282. alreadyVoted: "You have already opined.",
  1283. noOpinionsFound: "No opinions found.",
  1284. ALLButton: "ALL",
  1285. MINEButton: "MINE",
  1286. RECENTButton: "RECENT",
  1287. TOPButton: "TOP",
  1288. interestingButton: "INTERESTING",
  1289. necessaryButton: "NECESSARY",
  1290. funnyButton: "FUNNY",
  1291. disgustingButton: "DISGUSTING",
  1292. sensibleButton: "SENSIBLE",
  1293. propagandaButton: "PROPAGANDA",
  1294. adultOnlyButton: "ADULT ONLY",
  1295. boringButton: "BORING",
  1296. confusingButton: "CONFUSING",
  1297. inspiringButton: "INSPIRING",
  1298. spamButton: "SPAM",
  1299. opinionsCreatedAt: "Created At",
  1300. opinionsTotalCount: "Total Opinions",
  1301. voteInteresting: "Interesting",
  1302. voteNecessary: "Necessary",
  1303. voteFunny: "Funny",
  1304. voteDisgusting: "Disgusting",
  1305. voteSensible: "Sensible",
  1306. votePropaganda: "Propaganda",
  1307. voteAdultOnly: "Adult-Only",
  1308. voteBoring: "Boring",
  1309. voteConfusing: "Confusing",
  1310. voteInspiring: "Inspiring",
  1311. voteSpam: "Spam",
  1312. //inbox
  1313. publishBlog: "Publish Blog",
  1314. privateMessage: "PM",
  1315. pmSendTitle: "Private Messages",
  1316. pmSend: "Send!",
  1317. pmDescription: "Use this form to send an encrypted message to other inhabitants.",
  1318. pmRecipients: "Recipients",
  1319. pmRecipientsHint: "Enter Oasis IDs separated by commas",
  1320. pmSubject: "Subject",
  1321. pmSubjectHint: "Enter the message subject",
  1322. pmText: "Message",
  1323. pmFile: "Attachment",
  1324. private: "Private",
  1325. privateDescription: "Your encrypted messages.",
  1326. privateInbox: "Inbox",
  1327. privateSent: "Sent",
  1328. privateDelete: "Delete",
  1329. pmCreateButton: "Write a PM",
  1330. noPrivateMessages: "No private messages.",
  1331. pmFromLabel: "From:",
  1332. pmToLabel: "To:",
  1333. pmInvalidMessage: "Invalid message",
  1334. pmNoSubject: "(no subject)",
  1335. pmBotJobs: "42-JobsBOT",
  1336. pmBotProjects: "42-ProjectsBOT",
  1337. pmBotMarket: "42-MarketBOT",
  1338. inboxJobSubscribedTitle: "New subscription to your job offer",
  1339. pmInhabitantWithId: "Inhabitant with OASIS ID:",
  1340. pmHasSubscribedToYourJobOffer: "has subscribed to your job offer",
  1341. inboxProjectCreatedTitle: "New project created",
  1342. pmHasCreatedAProject: "has created a project",
  1343. inboxMarketItemSoldTitle: "Item Sold",
  1344. pmYourItem: "Your item",
  1345. pmHasBeenSoldTo: "has been sold to",
  1346. pmFor: "for",
  1347. inboxProjectPledgedTitle: "New pledge to your project",
  1348. pmHasPledged: "has pledged",
  1349. pmToYourProject: "to your project",
  1350. //blockexplorer
  1351. blockchain: 'BlockExplorer',
  1352. blockchainTitle: 'BlockExplorer',
  1353. blockchainDescription: 'Explore and visualize the blocks in the blockchain.',
  1354. blockchainNoBlocks: 'No blocks found in the blockchain.',
  1355. blockchainBlockID: 'Block ID',
  1356. blockchainBlockAuthor: 'Author',
  1357. blockchainBlockType: 'Type',
  1358. blockchainBlockTimestamp: 'Timestamp',
  1359. blockchainBlockContent: 'Block',
  1360. blockchainBlockURL: 'URL:',
  1361. blockchainContent: 'Block',
  1362. blockchainContentPreview: 'Preview of the block content',
  1363. blockchainDetails: 'View block details',
  1364. blockchainBlockInfo: 'Block Information',
  1365. blockchainBlockDetails: 'Details of the selected block',
  1366. blockchainBack: 'Back to Blockexplorer',
  1367. blockchainContentDeleted: "This content has been tombstoned",
  1368. visitContent: "Visit Content",
  1369. //banking
  1370. banking: 'Banking',
  1371. bankingTitle: 'Banking',
  1372. bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.',
  1373. bankOverview: 'Overview',
  1374. bankEpochs: 'Epochs',
  1375. bankRules: 'Rules',
  1376. pending: 'Pending',
  1377. closed: 'Closed',
  1378. bankBack: 'Back to Banking',
  1379. bankViewTx: 'View Tx',
  1380. bankClaimNow: 'Claim now',
  1381. bankPubBalance: 'PUB Balance',
  1382. bankEpoch: 'Epoch',
  1383. bankPool: 'Pool (this epoch)',
  1384. bankWeightsSum: 'Sum of weights',
  1385. bankAllocations: 'Allocations',
  1386. bankNoAllocations: 'No allocations found.',
  1387. bankNoEpochs: 'No epochs found.',
  1388. bankEpochAllocations: 'Epoch allocations',
  1389. bankAllocId: 'Allocation ID',
  1390. bankAllocDate: 'Date',
  1391. bankAllocConcept: 'Concept',
  1392. bankAllocFrom: 'From',
  1393. bankAllocTo: 'To',
  1394. bankAllocAmount: 'Amount',
  1395. bankAllocStatus: 'Status',
  1396. bankEpochId: 'Epoch ID',
  1397. bankRuleHash: 'Rules Snapshot Hash',
  1398. bankViewEpoch: 'View Epoch',
  1399. bankUserBalance: 'Your Balance',
  1400. ecoWalletNotConfigured: 'ECOin Wallet not configured',
  1401. editWallet: 'Edit wallet',
  1402. addWallet: 'Add wallet',
  1403. bankAddresses: 'Addresses',
  1404. bankNoAddresses: 'No addresses found.',
  1405. bankUser: 'Oasis ID',
  1406. bankAddress: 'Address',
  1407. bankAddAddressTitle: 'Add ECOIN address',
  1408. bankAddAddressUser: 'Oasis ID',
  1409. bankAddAddressAddress: 'ECOIN Address',
  1410. bankAddAddressSave: 'Save',
  1411. bankAddressAdded: 'Address added',
  1412. bankAddressUpdated: 'Address updated',
  1413. bankAddressExists: 'Address already exists',
  1414. bankAddressInvalid: 'Invalid address',
  1415. bankAddressDeleted: 'Address deleted',
  1416. bankAddressNotFound: 'Address not found',
  1417. bankAddressTotal: 'Total Addresses',
  1418. bankAddressSearch: 'Search @inhabitant or address',
  1419. bankAddressActions: 'Actions',
  1420. bankAddressDelete: 'Delete',
  1421. bankAddressSource: 'Source',
  1422. bankAddressDeleteConfirm: 'Delete this address?',
  1423. search: 'Search!',
  1424. bankLocal: 'Local',
  1425. bankFromOasis: 'Oasis',
  1426. bankMyAddress: 'Your address',
  1427. bankRemoveMyAddress: 'Remove my address',
  1428. bankNotRemovableOasis: 'Addresses cannot be removed locally',
  1429. bankingUserEngagementScore: "KARMA Score",
  1430. bankingFutureUBI: "Estimated UBI Allocation",
  1431. bankExchange: 'Exchange',
  1432. bankExchangeCurrentValue: 'ECOin Value (1h)',
  1433. bankTotalSupply: 'ECOin Total Supply',
  1434. bankEcoinHours: "ECOin Equivalence in Time",
  1435. bankHoursOfWork: 'hours',
  1436. bankExchangeNoData: 'No data available',
  1437. bankExchangeIndex: 'ECOin Value (1h)',
  1438. bankInflation: 'ECOin Inflation',
  1439. bankCurrentSupply: 'ECOin Current Supply',
  1440. bankingSyncStatus: 'ECOin Status',
  1441. bankingSyncStatusSynced: 'Synced',
  1442. bankingSyncStatusOutdated: 'Outdated',
  1443. //stats
  1444. statsTitle: 'Statistics',
  1445. statistics: "Statistics",
  1446. statsInhabitant: "Inhabitant Stats",
  1447. statsDescription: "Discover statistics about your network.",
  1448. ALLButton: "ALL",
  1449. MINEButton: "MINE",
  1450. TOMBSTONEButton: "TOMBSTONES",
  1451. statsYou: "You",
  1452. statsUserId: "Oasis ID",
  1453. statsCreatedAt: "Created At",
  1454. statsYourContent: "Content",
  1455. statsYourOpinions: "Opinions",
  1456. statsYourTombstone: "Tombstones",
  1457. statsNetwork: "Network",
  1458. statsTotalInhabitants: "Inhabitants",
  1459. statsDiscoveredTribes: "Tribes",
  1460. statsNetworkContent: "Content",
  1461. statsYourMarket: "Market",
  1462. statsYourJob: "Jobs",
  1463. statsYourProject: "Projects",
  1464. statsYourTransfer: "Transfers",
  1465. statsYourForum: "Forums",
  1466. statsNetworkOpinions: "Opinions",
  1467. statsDiscoveredMarket: "Market",
  1468. statsDiscoveredJob: "Jobs",
  1469. statsDiscoveredProject: "Projects",
  1470. statsBankingTitle: "Banking",
  1471. statsEcoWalletLabel: "ECOIN Wallet",
  1472. statsEcoWalletNotConfigured: "Not configured!",
  1473. statsTotalEcoAddresses: "Total addresses",
  1474. statsDiscoveredTransfer: "Transfers",
  1475. statsDiscoveredForum: "Forums",
  1476. statsNetworkTombstone: "Tombstones",
  1477. statsBookmark: "Bookmarks",
  1478. statsEvent: "Events",
  1479. statsTask: "Tasks",
  1480. statsVotes: "Votes",
  1481. statsMarket: "Market",
  1482. statsForum: "Forums",
  1483. statsJob: "Jobs",
  1484. statsProject: "Projects",
  1485. statsReport: "Reports",
  1486. statsFeed: "Feeds",
  1487. statsTribe: "Tribes",
  1488. statsImage: "Images",
  1489. statsAudio: "Audios",
  1490. statsVideo: "Videos",
  1491. statsDocument: "Documents",
  1492. statsTransfer: "Transfers",
  1493. statsAiExchange: "AI",
  1494. statsPUBs: 'PUBs',
  1495. statsPost: "Posts",
  1496. statsOasisID: "Oasis ID",
  1497. statsSize: "Total (size)",
  1498. statsBlockchainSize: "Blockchain (size)",
  1499. statsBlobsSize: "Blobs (size)",
  1500. statsActivity7d: "Activity (last 7 days)",
  1501. statsActivity7dTotal: "7-day total",
  1502. statsActivity30dTotal: "30-day total",
  1503. statsKarmaScore: "KARMA Score",
  1504. day: "Day",
  1505. messages: "Messages",
  1506. statsProject: "Projects",
  1507. statsProjectsTitle: "Projects",
  1508. statsProjectsTotal: "Total projects",
  1509. statsProjectsActive: "Active",
  1510. statsProjectsCompleted: "Completed",
  1511. statsProjectsPaused: "Paused",
  1512. statsProjectsCancelled: "Cancelled",
  1513. statsProjectsGoalTotal: "Total goal",
  1514. statsProjectsPledgedTotal: "Total pledged",
  1515. statsProjectsSuccessRate: "Success rate",
  1516. statsProjectsAvgProgress: "Average progress",
  1517. statsProjectsMedianProgress: "Median progress",
  1518. statsProjectsActiveFundingAvg: "Avg. active funding",
  1519. statsJobsTitle: "Jobs",
  1520. statsJobsTotal: "Total jobs",
  1521. statsJobsOpen: "Open",
  1522. statsJobsClosed: "Closed",
  1523. statsJobsOpenVacants: "Open vacants",
  1524. statsJobsSubscribersTotal: "Total subscribers",
  1525. statsJobsAvgSalary: "Average salary",
  1526. statsJobsMedianSalary: "Median salary",
  1527. statsMarketTitle: "Market",
  1528. statsMarketTotal: "Total items",
  1529. statsMarketForSale: "For sale",
  1530. statsMarketReserved: "Reserved",
  1531. statsMarketClosed: "Closed",
  1532. statsMarketSold: "Sold",
  1533. statsMarketRevenue: "Revenue",
  1534. statsMarketAvgSoldPrice: "Avg. sold price",
  1535. statsUsersTitle: "Inhabitants",
  1536. user: "Inhabitant",
  1537. statsTombstoneTitle: "Tombstones",
  1538. statsNetworkTombstones: "Network tombstones",
  1539. statsTombstoneRatio: "Tombstone ratio (%)",
  1540. //AI
  1541. ai: "AI",
  1542. aiTitle: "AI",
  1543. aiDescription: "A Collective Artificial Intelligence (CAI) called '42' that learns from your network.",
  1544. aiInputPlaceholder: "What's up?",
  1545. aiUserQuestion: "Question",
  1546. aiResponseTitle: "Reply",
  1547. aiSubmitButton: "Send!",
  1548. aiSettingsDescription: "Set your prompt (max 128 characters) for the AI model.",
  1549. aiPrompt: "Provide an informative and precise response.",
  1550. aiConfiguration: "Set prompt",
  1551. aiPromptUsed: "Prompt",
  1552. aiClearHistory: "Clear chat history",
  1553. aiSharePrompt: "Add this answer to collective training?",
  1554. aiShareYes: "Yes",
  1555. aiShareNo: "No",
  1556. aiSharedLabel: "Added to training",
  1557. aiRejectedLabel: "Not added to training",
  1558. aiServerError: "The AI could not answer. Please try again.",
  1559. aiInputPlaceholder: "What is Oasis?",
  1560. typeAiExchange: "AI",
  1561. aiApproveTrain: "Add to collective training",
  1562. aiRejectTrain: "Do not train",
  1563. aiTrainPending: "Pending approval",
  1564. aiTrainApproved: "Approved for training",
  1565. aiTrainRejected: "Rejected for training",
  1566. aiSnippetsUsed: "Snippets used",
  1567. aiSnippetsLearned: "Snippets learned",
  1568. statsAITraining: "AI training",
  1569. aiApproveCustomTrain: "Train using this custom answer",
  1570. aiCustomAnswerPlaceholder: "Write your custom answer…",
  1571. statsAIExchanges: "Model Exchanges",
  1572. //market
  1573. marketMineSectionTitle: "Your Items",
  1574. marketCreateSectionTitle: "Create Item",
  1575. marketUpdateSectionTitle: "Update",
  1576. marketAllSectionTitle: "Market",
  1577. marketRecentSectionTitle: "Recent Market",
  1578. marketTitle: "Market",
  1579. marketDescription: "A marketplace for exchanging goods or services in your network.",
  1580. marketFilterAll: "ALL",
  1581. marketFilterMine: "MINE",
  1582. marketFilterAuctions: "AUCTIONS",
  1583. marketFilterItems: "EXCHANGE",
  1584. marketFilterNew: "NEW",
  1585. marketFilterUsed: "USED",
  1586. marketFilterBroken: "BROKEN",
  1587. marketFilterForSale: "FOR SALE",
  1588. marketFilterSold: "SOLD",
  1589. marketFilterDiscarded: "DISCARDED",
  1590. marketFilterRecent: "RECENT",
  1591. marketCreateButton: "Create Item",
  1592. marketItemType: "Type",
  1593. marketItemTitle: "Title",
  1594. marketItemAvailable: "Deadline",
  1595. marketItemDescription: "Description",
  1596. marketItemDescriptionPlaceholder: "Describe the item you're selling",
  1597. marketItemStatus: "Status",
  1598. marketItemCondition: "Condition",
  1599. marketItemPrice: "Price",
  1600. marketItemTags: "Tags",
  1601. marketItemTagsPlaceholder: "Enter tags separated by commas",
  1602. marketItemDeadline: "Deadline",
  1603. marketItemIncludesShipping: "Includes Shipping?",
  1604. marketItemHighestBid: "Highest Bid",
  1605. marketItemHighestBidder: "Highest Bidder",
  1606. marketItemStock: "Stock",
  1607. marketOutOfStock: "Out of stock",
  1608. marketItemBidTime: "Bid Time",
  1609. marketActionsUpdate: "Update",
  1610. marketUpdateButton: "Update Item!",
  1611. marketActionsDelete: "Delete",
  1612. marketActionsSold: "Mark as Sold",
  1613. marketActionsBuy: "BUY!",
  1614. marketAuctionBids: "Current Bids",
  1615. marketPlaceBidButton: "Place Bid",
  1616. marketItemSeller: "Seller",
  1617. marketNoItems: "No items available, yet.",
  1618. marketYourBid: "Your Bid",
  1619. marketCreateFormImageLabel: "Upload Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  1620. //jobs
  1621. jobsTitle: "Jobs",
  1622. jobsDescription: "Discover and manage jobs in your network.",
  1623. jobsFilterRecent: "RECENT",
  1624. jobsFilterMine: "MINE",
  1625. jobsFilterAll: "ALL",
  1626. jobsFilterRemote: "REMOTE",
  1627. jobsFilterOpen: "OPEN",
  1628. jobsFilterClosed: "CLOSED",
  1629. jobsCV: "CVs",
  1630. jobsCreateJob: "Create Job",
  1631. jobsRecentTitle: "Recent Jobs",
  1632. jobsMineTitle: "Your Jobs",
  1633. jobsAllTitle: "Jobs",
  1634. jobsRemoteTitle: "Remote Jobs",
  1635. jobsOpenTitle: "Open Jobs",
  1636. jobsClosedTitle: "Closed Jobs",
  1637. jobsCVTitle: "CVs",
  1638. jobsFilterPresencial: "PRESENCIAL",
  1639. jobsFilterFreelancer: "FREELANCER",
  1640. jobsFilterEmployee: "EMPLOYEE",
  1641. jobsPresencialTitle: "Presential Jobs",
  1642. jobsFreelancerTitle: "Freelance Jobs",
  1643. jobsEmployeeTitle: "Employee Jobs",
  1644. jobTitle: "Title",
  1645. jobLocation: "Location",
  1646. jobSalary: "Salary (ECO/1h)",
  1647. jobVacants: "Vacants",
  1648. jobDescription: "Description",
  1649. jobRequirements: "Requirements",
  1650. jobLanguages: "Languages",
  1651. jobStatus: "Status",
  1652. jobStatusOPEN: "OPEN",
  1653. jobStatusCLOSED: "CLOSED",
  1654. jobSetOpen: "Set as OPEN",
  1655. jobSetClosed: "Set as CLOSED",
  1656. jobSubscribeButton: "Join this offer!",
  1657. jobUnsubscribeButton: "Leave this offer!",
  1658. jobTitlePlaceholder: "Enter job title",
  1659. jobDescriptionPlaceholder: "Describe the job",
  1660. jobRequirementsPlaceholder: "Enter requirements",
  1661. jobLanguagesPlaceholder: "English, Spanish, Basque",
  1662. jobTasksPlaceholder: "List tasks",
  1663. jobLocationPresencial: "On-place",
  1664. jobLocationRemote: "Remote",
  1665. jobVacantsPlaceholder: "Number of positions",
  1666. jobSalaryPlaceholder: "Salary in ECO for 1 dedicated hour",
  1667. jobImage: "Upload Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  1668. jobTasks: "Tasks",
  1669. jobType: "Job Type",
  1670. jobTime: "Job Time",
  1671. jobSubscribers: "Subscribers",
  1672. noSubscribers: "No subscribers",
  1673. jobsFilterTop: "TOP",
  1674. jobsTopTitle: "Top Salary Jobs",
  1675. createJobButton: "Publish Job",
  1676. viewDetailsButton: "View Details",
  1677. noJobsFound: "No job offers found.",
  1678. jobAuthor: "By",
  1679. jobTypeFreelance: "Freelancer",
  1680. jobTypeSalary: "Employee",
  1681. jobTimePartial: "Part-time",
  1682. jobTimeComplete: "Full-time",
  1683. jobsDeleteButton: "DELETE",
  1684. jobsUpdateButton: "UPDATE",
  1685. //projects
  1686. projectsTitle: "Projects",
  1687. projectsDescription: "Create, fund, and follow community-driven projects in your network.",
  1688. projectCreateProject: "Create Project",
  1689. projectCreateButton: "Create Project",
  1690. projectUpdateButton: "UPDATE",
  1691. projectDeleteButton: "DELETE",
  1692. projectNoProjectsFound: "No projects found.",
  1693. projectFilterAll: "ALL",
  1694. projectFilterMine: "MINE",
  1695. projectFilterActive: "ACTIVE",
  1696. projectFilterPaused: "PAUSED",
  1697. projectFilterCompleted: "COMPLETED",
  1698. projectFilterFollowing: "FOLLOWING",
  1699. projectFilterRecent: "RECENT",
  1700. projectFilterTop: "TOP",
  1701. projectAllTitle: "Projects",
  1702. projectMineTitle: "Your Projects",
  1703. projectActiveTitle: "Active Projects",
  1704. projectPausedTitle: "Paused Projects",
  1705. projectCompletedTitle: "Completed Projects",
  1706. projectFollowingTitle: "Following Projects",
  1707. projectRecentTitle: "Recent Projects",
  1708. projectTopTitle: "Top Funded",
  1709. projectTitlePlaceholder: "Project name",
  1710. projectImage: "Upload Image (jpeg, jpg, png, gif) (max-size: 500px x 400px)",
  1711. projectDescription: "Description",
  1712. projectDescriptionPlaceholder: "Tell the story and goals…",
  1713. projectGoal: "Goal (ECO)",
  1714. projectGoalPlaceholder: "50000",
  1715. projectDeadline: "Deadline",
  1716. projectProgress: "Starting Progress (%)",
  1717. projectStatus: "Status",
  1718. projectFunding: "Funding",
  1719. projectPledged: "Pledged",
  1720. projectSetStatus: "Set Status",
  1721. projectSetProgress: "Update Progress",
  1722. projectFollowButton: "FOLLOW",
  1723. projectUnfollowButton: "UNFOLLOW",
  1724. projectStatusACTIVE: "ACTIVE",
  1725. projectStatusPAUSED: "PAUSED",
  1726. projectStatusCOMPLETED: "COMPLETED",
  1727. projectStatusCANCELLED: "CANCELLED",
  1728. projectPledgeTitle: "Back this project",
  1729. projectPledgePlaceholder: "Amount in ECO",
  1730. projectBounties: "Bounties",
  1731. projectBountiesInputLabel: "Bounties (one per line: Title|Amount [ECO]|Description)",
  1732. projectBountiesPlaceholder: "Fix UI bug|100|Link to issue\nWrite docs|250|Outline usage examples",
  1733. projectNoBounties: "No bounties found.",
  1734. projectTitle: "Title",
  1735. projectAddBountyTitle: "New Bounty",
  1736. projectBountyTitle: "Bounty Title",
  1737. projectBountyAmount: "Amount (ECO)",
  1738. projectBountyDescription: "Description",
  1739. projectMilestoneSelect: "Select Milestone",
  1740. projectBountyCreateButton: "Create Bounty",
  1741. projectBountyStatus: "Bounty Status",
  1742. projectBountyOpen: "open",
  1743. projectBountyClaimed: "claimed",
  1744. projectBountyDone: "completed",
  1745. projectBountyClaimedBy: "claimed by",
  1746. projectBountyClaimButton: "claim",
  1747. projectBountyCompleteButton: "Mark Completed",
  1748. projectMilestones: "Milestones",
  1749. projectAddMilestoneTitle: "New milestone",
  1750. projectMilestoneTitle: "Milestone Title",
  1751. projectMilestoneTargetPercent: "Percent (%)",
  1752. projectMilestoneDueDate: "Date",
  1753. projectMilestoneCreateButton: "Create Milestone",
  1754. projectMilestoneStatus: "Milestone Status",
  1755. projectMilestoneOpen: "open",
  1756. projectMilestoneDone: "completed",
  1757. projectMilestoneMarkDone: "Mark as Completed",
  1758. projectMilestoneDue: "due",
  1759. projectNoMilestones: "No milestones found.",
  1760. projectMilestoneMarkDone: "Mark as Done",
  1761. projectMilestoneTitlePlaceholder: "Enter milestone title",
  1762. projectMilestoneDescriptionPlaceholder: "Enter description for this milestone",
  1763. projectMilestoneDescription: "Milestone Description",
  1764. projectBudgetGoal: "Budget (Goal)",
  1765. projectBudgetAssigned: "Assigned to bounties",
  1766. projectBudgetRemaining: "Remaining",
  1767. projectBudgetOver: "⚠ Over budget: assigned exceeds goal",
  1768. projectFollowers: "Followers",
  1769. projectFollowersTitle: "Followers",
  1770. projectFollowersNone: "No followers yet.",
  1771. projectMore: "more",
  1772. projectYouFollowHint: "You follow this project",
  1773. projectBackers: "Backers",
  1774. projectBackersTitle: "Backers",
  1775. projectBackersTotal: "Total backers",
  1776. projectBackersTotalPledged: "Total pledged",
  1777. projectBackersYourPledge: "Your pledge",
  1778. projectBackersNone: "No pledges yet.",
  1779. projectNoRemainingBudget: "No remaining budget.",
  1780. projectFilterBackers: "BACKERS",
  1781. projectBackersLeaderboardTitle: "Top Backers",
  1782. projectNoBackersFound: "No backers found.",
  1783. projectBackerAmount: "Total contributed",
  1784. projectBackerPledges: "Pledges",
  1785. projectBackerProjects: "Projects",
  1786. projectPledgeAmount: "Amount",
  1787. projectSelectMilestoneOrBounty: "Select Milestone or Bounty",
  1788. projectPledgeButton: "Pledge",
  1789. //modules
  1790. modulesModuleName: "Name",
  1791. modulesModuleDescription: "Description",
  1792. modulesModuleStatus: "Status",
  1793. modulesTotalModulesLabel: "Loaded Modules",
  1794. modulesEnabledModulesLabel: "Enabled",
  1795. modulesDisabledModulesLabel: "Disabled",
  1796. modulesPopularLabel: "Popular",
  1797. modulesPopularDescription: "Module to receive posts that are trending, most viewed, or most commented on.",
  1798. modulesTopicsLabel: "Topics",
  1799. modulesTopicsDescription: "Module to receive discussion categories based on shared interests.",
  1800. modulesSummariesLabel: "Summaries",
  1801. modulesSummariesDescription: "Module to receive summaries of long discussions or posts.",
  1802. modulesLatestLabel: "Latest",
  1803. modulesLatestDescription: "Module to receive the most recent posts and discussions.",
  1804. modulesThreadsLabel: "Threads",
  1805. modulesThreadsDescription: "Module to receive conversations grouped by topic or question.",
  1806. modulesMultiverseLabel: "Multiverse",
  1807. modulesMultiverseDescription: "Module to receive content from other federated peers.",
  1808. modulesInvitesLabel: "Invites",
  1809. modulesInvitesDescription: "Module to manage and apply invite codes.",
  1810. modulesWalletLabel: "Wallet",
  1811. modulesWalletDescription: "Module to manage your digital assets (ECOin).",
  1812. modulesLegacyLabel: "Legacy",
  1813. modulesLegacyDescription: "Module to manage your secret (private key) quickly and securely.",
  1814. modulesCipherLabel: "Cipher",
  1815. modulesCipherDescription: "Module to encrypt and decrypt your text symmetrically (using a shared password).",
  1816. modulesBookmarksLabel: "Bookmarks",
  1817. modulesBookmarksDescription: "Module to discover and manage bookmarks.",
  1818. modulesVideosLabel: "Videos",
  1819. modulesVideosDescription: "Module to discover and manage videos.",
  1820. modulesDocsLabel: "Documents",
  1821. modulesDocsDescription: "Module to discover and manage documents.",
  1822. modulesAudiosLabel: "Audios",
  1823. modulesAudiosDescription: "Module to discover and manage audios.",
  1824. modulesTagsLabel: "Tags",
  1825. modulesTagsDescription: "Module to discover and explore taxonomy patterns (tags).",
  1826. modulesImagesLabel: "Images",
  1827. modulesImagesDescription: "Module to discover and manage images.",
  1828. modulesTrendingLabel: "Trending",
  1829. modulesTrendingDescription: "Module to explore the most popular content.",
  1830. modulesEventsLabel: "Events",
  1831. modulesEventsDescription: "Module to discover and manage events.",
  1832. modulesTasksLabel: "Tasks",
  1833. modulesTasksDescription: "Module to discover and manage tasks.",
  1834. modulesMarketLabel: "Market",
  1835. modulesMarketDescription: "Module to exchange goods or services.",
  1836. modulesTribesLabel: "Tribes",
  1837. modulesTribesDescription: "Module to explore or create tribes (groups).",
  1838. modulesGovernanceLabel: "Governance",
  1839. modulesGovernanceDescription: "Module to discover and manage votes.",
  1840. modulesReportsLabel: "Reports",
  1841. modulesReportsDescription: "Module to manage and track reports related to issues, bugs, abuses, and content warnings.",
  1842. modulesOpinionsLabel: "Opinions",
  1843. modulesOpinionsDescription: "Module to discover and vote on opinions.",
  1844. modulesTransfersLabel: "Transfers",
  1845. modulesTransfersDescription: "Module to discover and manage smart-contracts (transfers).",
  1846. modulesFeedLabel: "Feed",
  1847. modulesFeedDescription: "Module to discover and share short-texts (feeds).",
  1848. modulesPixeliaLabel: "Pixelia",
  1849. modulesPixeliaDescription: "Module to draw on a collaborative grid.",
  1850. modulesAgendaLabel: "Agenda",
  1851. modulesAgendaDescription: "Module to manage all your assigned items.",
  1852. modulesAILabel: "AI",
  1853. modulesAIDescription: "Module to talk with a LLM called '42'.",
  1854. modulesForumLabel: "Forums",
  1855. modulesForumDescription: "Module to discover and manage forums.",
  1856. modulesJobsLabel: "Jobs",
  1857. modulesJobsDescription: "Module to discover and manage jobs.",
  1858. modulesProjectsLabel: "Projects",
  1859. modulesProjectsDescription: "Module to explore, crowd-funding and manage projects.",
  1860. modulesBankingLabel: "Banking",
  1861. modulesBankingDescription: "Module to determine the real value of ECOIN and distribute a UBI using the common treasury."
  1862. //END
  1863. }
  1864. };