Upgrade mobile UX to Oasis 0.9.0
Rebase onto upstream 0.9.0. Mobile topbar (logo->home, avatar->profile), hexagon category nav (hive) and bottom bar; remove the six top-bar buttons (inbox/pm/publish/search/graphos/peers) that cluttered the header. Theme OasisMobileUX carries topbar/hexagon/bottombar styles.
This commit is contained in:
parent
de36b38851
commit
8d21216362
69 changed files with 8974 additions and 820 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@krakenslab/oasis",
|
||||
"version": "0.8.7",
|
||||
"version": "0.9.0",
|
||||
"description": "Oasis - Social Networking Utopia",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
74
src/backend/fileshare_crypto.js
Normal file
74
src/backend/fileshare_crypto.js
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
const crypto = require('crypto');
|
||||
|
||||
const ALG = 'aes-256-gcm';
|
||||
const IV_LEN = 12;
|
||||
const TAG_LEN = 16;
|
||||
const KEY_LEN = 32;
|
||||
const DEFAULT_CHUNK_SIZE = 5 * 1024 * 1024;
|
||||
|
||||
const generateFileKey = () => crypto.randomBytes(KEY_LEN);
|
||||
|
||||
const keyToHex = (key) => Buffer.isBuffer(key) ? key.toString('hex') : String(key);
|
||||
|
||||
const keyFromHex = (hex) => {
|
||||
const buf = Buffer.from(String(hex), 'hex');
|
||||
if (buf.length !== KEY_LEN) throw new Error('Invalid file key');
|
||||
return buf;
|
||||
};
|
||||
|
||||
const encryptChunk = (plaintext, key) => {
|
||||
const iv = crypto.randomBytes(IV_LEN);
|
||||
const cipher = crypto.createCipheriv(ALG, key, iv);
|
||||
const ct = Buffer.concat([cipher.update(plaintext), cipher.final()]);
|
||||
const tag = cipher.getAuthTag();
|
||||
return Buffer.concat([iv, tag, ct]);
|
||||
};
|
||||
|
||||
const decryptChunk = (payload, key) => {
|
||||
if (!Buffer.isBuffer(payload) || payload.length < IV_LEN + TAG_LEN) throw new Error('Corrupt chunk');
|
||||
const iv = payload.subarray(0, IV_LEN);
|
||||
const tag = payload.subarray(IV_LEN, IV_LEN + TAG_LEN);
|
||||
const ct = payload.subarray(IV_LEN + TAG_LEN);
|
||||
const decipher = crypto.createDecipheriv(ALG, key, iv);
|
||||
decipher.setAuthTag(tag);
|
||||
return Buffer.concat([decipher.update(ct), decipher.final()]);
|
||||
};
|
||||
|
||||
const sha256Hex = (buffer) => crypto.createHash('sha256').update(buffer).digest('hex');
|
||||
|
||||
const splitBuffer = (buffer, chunkSize = DEFAULT_CHUNK_SIZE) => {
|
||||
const size = Math.max(1, Number(chunkSize) || DEFAULT_CHUNK_SIZE);
|
||||
const out = [];
|
||||
for (let off = 0; off < buffer.length; off += size) {
|
||||
out.push(buffer.subarray(off, Math.min(off + size, buffer.length)));
|
||||
}
|
||||
if (!out.length) out.push(Buffer.alloc(0));
|
||||
return out;
|
||||
};
|
||||
|
||||
const buildManifest = ({ filename, mime, size, chunkSize, chunkHashes, plainSha256 }) => ({
|
||||
v: 1,
|
||||
alg: ALG,
|
||||
filename: String(filename || 'file'),
|
||||
mime: String(mime || 'application/octet-stream'),
|
||||
size: Number(size) || 0,
|
||||
chunkSize: Number(chunkSize) || DEFAULT_CHUNK_SIZE,
|
||||
chunks: Array.isArray(chunkHashes) ? chunkHashes.slice() : [],
|
||||
plainSha256: plainSha256 || null
|
||||
});
|
||||
|
||||
const encryptManifest = (manifest, key) => encryptChunk(Buffer.from(JSON.stringify(manifest), 'utf8'), key);
|
||||
|
||||
const decryptManifest = (payload, key) => {
|
||||
const json = decryptChunk(payload, key).toString('utf8');
|
||||
const m = JSON.parse(json);
|
||||
if (!m || m.v !== 1 || !Array.isArray(m.chunks)) throw new Error('Invalid manifest');
|
||||
return m;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
ALG, IV_LEN, TAG_LEN, KEY_LEN, DEFAULT_CHUNK_SIZE,
|
||||
generateFileKey, keyToHex, keyFromHex,
|
||||
encryptChunk, decryptChunk, sha256Hex, splitBuffer,
|
||||
buildManifest, encryptManifest, decryptManifest
|
||||
};
|
||||
9
src/backend/pm_policy.js
Normal file
9
src/backend/pm_policy.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
const isMutual = (relationship) => !!(relationship && relationship.following && relationship.followsMe);
|
||||
|
||||
const isRecipientAllowed = ({ pmVisibility, viewerId, recipientId, relationship } = {}) => {
|
||||
if (recipientId && viewerId && recipientId === viewerId) return true;
|
||||
if (pmVisibility !== 'mutuals') return true;
|
||||
return isMutual(relationship);
|
||||
};
|
||||
|
||||
module.exports = { isRecipientAllowed, isMutual };
|
||||
|
|
@ -3310,6 +3310,8 @@ width:100%; max-width:200px; max-height:300px; object-fit:cover; margin:16px 0;
|
|||
.pm-card.normal-pm { padding: 10px 12px; border-radius: 8px; margin-bottom: 10px; border: 1px solid #ffa300; background: transparent }
|
||||
.pm-btn { padding: 6px 16px; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; border: 1px solid #ffa300; background: transparent; color: #ffa300; transition: background 0.15s, color 0.15s }
|
||||
.pm-btn:hover { background: #ffa300; color: #000 }
|
||||
a.pm-btn { text-decoration: none; display: inline-block; line-height: 1.2 }
|
||||
a.pm-btn:hover { text-decoration: none }
|
||||
.pm-thread { margin-bottom: 12px }
|
||||
.pm-thread-details { margin-top: 0 }
|
||||
.pm-thread-details[open] .pm-thread-icon { display: inline-block; transform: rotate(90deg) }
|
||||
|
|
@ -3333,7 +3335,10 @@ width:100%; max-width:200px; max-height:300px; object-fit:cover; margin:16px 0;
|
|||
.pm-actions {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.pm-actions .pm-btn { margin: 0 }
|
||||
.pm-crypter-row {
|
||||
border: none;
|
||||
background: transparent;
|
||||
|
|
@ -6109,7 +6114,7 @@ a.chip-link:hover .pm-exposition-chip{filter:brightness(1.2)}
|
|||
.pm-exposition-text{line-height:1;}
|
||||
.shop-title-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:6px;padding:0;background:transparent;border-radius:0;box-shadow:none}
|
||||
.shop-title-row h2{margin:0}
|
||||
.card-chips-row{display:flex;flex-wrap:wrap;gap:6px;margin:0 0 10px 0;padding:0;border:none;background:transparent;border-radius:0;box-shadow:none}
|
||||
.card-chips-row{display:flex;flex-wrap:wrap;align-items:center;gap:6px;margin:0 0 10px 0;padding:0;border:none;background:transparent;border-radius:0;box-shadow:none}
|
||||
.tribe-card-body .job-price-line,.tribe-card-body .job-meta-line,.tribe-card-body .job-card-view-btn,.tribe-card-body .card-comments-summary,.tribe-card-body .tribe-card-members{padding:0;background:transparent;border-radius:0;box-shadow:none;border:none}
|
||||
.tribe-card-body .job-price-line{margin:4px 0}
|
||||
.tribe-card-body .job-card-view-btn{margin-top:8px;margin-bottom:0}
|
||||
|
|
@ -6439,3 +6444,143 @@ a.user-link{padding:8px 16px;border-radius:5px;text-align:center;font-weight:bol
|
|||
.activitySpreadInhabitant2,.activityVotePost{padding:8px 16px;border-radius:5px;font-weight:bold;text-decoration:none;display:inline-block;border:2px solid transparent}
|
||||
.danger-btn,.delete-btn{border:1px solid #d9534f;color:#d9534f;background:transparent}
|
||||
.danger-btn:hover,.delete-btn:hover{background:#d9534f;color:#000}
|
||||
.pm-fileshare-form-wrap{margin-top:16px}
|
||||
.pm-fileshare-form input[type=file]{display:block;margin:10px 0 15px}
|
||||
.pm-fileshare-info{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:8px 0}
|
||||
.pm-fileshare-icon{font-size:1.2em}
|
||||
.pm-fileshare-name{font-weight:bold;word-break:break-all}
|
||||
.pm-fileshare-meta{font-size:.85em;opacity:.75}
|
||||
.pm-fileshare-download-form{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:8px;border:0;background:transparent;padding:0}
|
||||
.pm-fileshare-download{text-decoration:none;display:inline-block}
|
||||
.industry-form{margin:0 auto}
|
||||
.industry-governance{margin-top:16px}
|
||||
.industry-actions{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:12px 0}
|
||||
.industry-build-vote{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
|
||||
.industry-estimate,.industry-materials,.industry-blueprint-meta,.industry-meta{border:none;background:transparent;padding:0;box-shadow:none;border-radius:0;margin:8px 0}
|
||||
.industry-estimate p{margin:2px 0}
|
||||
.industry-estimate-total{font-weight:700;margin-top:6px}
|
||||
.industry-section{margin-top:20px}
|
||||
.industry-applicants,.industry-members-list{list-style:none;padding:0;margin:8px 0}
|
||||
.industry-applicants li,.industry-members-list li{padding:6px 0;display:flex;flex-wrap:wrap;gap:8px;align-items:center}
|
||||
.industry-vote-form,.industry-invite-form{display:flex;flex-wrap:wrap;gap:6px;align-items:center;border:0;background:transparent;padding:0}
|
||||
.industry-invite-form input{flex:1 1 240px}
|
||||
.industry-vote-count{opacity:.85}
|
||||
.industry-hint{opacity:.75;font-style:italic}
|
||||
.industry-meta{margin:12px 0}
|
||||
.industry-meta p{margin:4px 0}
|
||||
.industry-meta-label{font-weight:bold}
|
||||
.industry-card-desc,.industry-detail-desc{margin:8px 0}
|
||||
.industry-side-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
|
||||
.search-industry .card-field{margin:4px 0}
|
||||
.industry-form select,.industry-form input[type="number"],.industry-form input[type="file"],.industry-form input[type="date"]{margin-bottom:15px}
|
||||
.industry-form-media,.industry-detail-media{margin:8px 0}
|
||||
.industry-hero-image,.tribe-card-hero-image{max-width:100%;height:auto;border-radius:6px}
|
||||
.industry-search{margin:8px 0}
|
||||
.industry-card-noimage{display:flex;align-items:center;justify-content:center;min-height:120px;font-size:48px;opacity:.5}
|
||||
.industry-bot-notification .pm-title{margin-top:4px}
|
||||
.industry-table{width:100%;border-collapse:collapse;margin:8px 0}
|
||||
.industry-table th,.industry-table td{text-align:left;padding:6px 8px;border-bottom:1px solid rgba(128,128,128,.3)}
|
||||
.industry-contrib-form{display:flex;flex-wrap:wrap;gap:6px;align-items:center;margin:6px 0}
|
||||
.industry-contrib-form-single label{display:block;margin:10px 0 4px 0}
|
||||
.industry-contrib-form-single input,.industry-contrib-form-single textarea,.industry-contrib-form-single select{width:100%;box-sizing:border-box;display:block;margin:0}
|
||||
.industry-contrib-form-single .industry-input-num{width:auto;max-width:220px}
|
||||
.industry-contrib-form-single button{margin-top:14px}
|
||||
.industry-contrib-kind{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin:0 0 6px 0;border:none;background:transparent;padding:0;box-shadow:none}
|
||||
.industry-contrib-kind label{margin:0}
|
||||
.industry-contrib-kind select{width:auto;min-width:190px;margin:0;height:38px;box-sizing:border-box}
|
||||
.industry-contrib-kind button{margin:0;height:38px;box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center}
|
||||
.industry-blueprint-card{border:1px solid rgba(128,128,128,.3);border-radius:6px;padding:10px;margin:8px 0}
|
||||
.industry-card-wrap{position:relative;border:1px solid rgba(128,128,128,.3);border-radius:6px;padding:10px;margin:8px 0;background:transparent;box-shadow:none}
|
||||
.industry-card-wrap .industry-blueprint-card{border:none;background:transparent;padding:0;margin:0;box-shadow:none;border-radius:0}
|
||||
.industry-card-wrap > .card-header{position:absolute;top:8px;right:10px;margin:0;padding:0;border:none;background:transparent;box-shadow:none;z-index:1}
|
||||
.industry-card-wrap > .card-header > span:empty{display:none}
|
||||
.industry-card-wrap > .industry-blueprint-card{padding:0 96px 0 0}
|
||||
.industry-actions form,.industry-actions .project-control-form--status{margin:0;padding:0;border:none;background:transparent;display:flex;align-items:center;gap:10px}
|
||||
.industry-actions .project-control-select,.industry-actions .project-control-btn,.industry-actions select,.industry-actions button{margin:0}
|
||||
.industry-actions button,.industry-actions .project-control-select{display:inline-flex;align-items:center;justify-content:center;height:38px;box-sizing:border-box}
|
||||
.card-chips-row .spread-form{margin:0;padding:0;border:none;background:transparent;display:flex;align-items:center}
|
||||
.card-chips-row .spread-form .spread-btn{margin:0}
|
||||
.industry-build-notes{margin:22px 0}
|
||||
.industry-dates-row{border:none;background:transparent;padding:0;box-shadow:none;border-radius:0;margin:8px 0}
|
||||
.industry-dates-row p{margin:0}
|
||||
.dev-breadcrumb,.dev-stats,.dev-file-meta,.dev-file-head,.dev-listing,.dev-pager,.dev-actions,.dev-result-text,.dev-result-head,.dev-desktop{border:none;background:transparent;padding:0;box-shadow:none;border-radius:0}
|
||||
.dev-stats{margin:12px 0}
|
||||
.dev-stats p,.dev-file-meta p{margin:4px 0;line-height:1.9}
|
||||
.dev-label{font-weight:bold}
|
||||
.dev-sep{opacity:.45}
|
||||
.dev-hint{opacity:.75;font-style:italic}
|
||||
.dev-breadcrumb{margin:14px 0;word-break:break-all}
|
||||
.dev-breadcrumb-sep{opacity:.45}
|
||||
.dev-breadcrumb-current{font-weight:bold}
|
||||
.dev-desktop{display:grid;grid-template-columns:repeat(auto-fill,minmax(118px,1fr));gap:12px;margin:16px 0}
|
||||
.dev-icon{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;text-align:center;gap:5px;padding:12px 6px;border:1px solid rgba(128,128,128,.28);border-radius:8px;text-decoration:none;word-break:break-word;min-height:104px}
|
||||
.dev-icon:hover{border-color:rgba(128,128,128,.7)}
|
||||
.dev-icon-glyph{font-size:30px;line-height:1}
|
||||
.dev-icon-name{font-size:.9em;line-height:1.25}
|
||||
.dev-icon-meta{font-size:.76em;opacity:.6}
|
||||
.dev-icon-off{opacity:.5;cursor:default}
|
||||
.dev-icon-off:hover{border-color:rgba(128,128,128,.28)}
|
||||
.dev-file-head{display:flex;align-items:center;gap:10px;margin:14px 0 4px 0}
|
||||
.dev-file-glyph{font-size:26px}
|
||||
.dev-file-name{margin:0;word-break:break-all}
|
||||
.dev-actions{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:14px 0}
|
||||
.dev-actions form{margin:0;padding:0;border:none;background:transparent}
|
||||
.dev-actions button{margin:0}
|
||||
.dev-code{overflow-x:auto;border:1px solid rgba(128,128,128,.3);border-radius:6px;padding:8px;margin:12px 0}
|
||||
.dev-code-table{border-collapse:collapse;width:100%}
|
||||
.dev-code-num a{text-decoration:none}
|
||||
.dev-code-line pre{margin:0;white-space:pre}
|
||||
.dev-code-line code{font-family:monospace;font-size:.92em}
|
||||
.dev-pager{display:flex;flex-wrap:wrap;gap:8px;margin:14px 0}
|
||||
.dev-list{list-style:none;padding:0;margin:14px 0}
|
||||
.dev-entry{padding:9px 0;border-bottom:1px solid rgba(128,128,128,.2);word-break:break-all}
|
||||
.dev-result-head{display:flex;align-items:center;gap:8px}
|
||||
.dev-result-glyph{font-size:18px}
|
||||
.dev-result-text{margin:5px 0 0 26px;overflow-x:auto}
|
||||
.dev-result-text pre{margin:0}
|
||||
.dev-table{width:100%;border-collapse:collapse;margin:8px 0}
|
||||
.dev-table th,.dev-table td{text-align:left;padding:6px 8px;border-bottom:1px solid rgba(128,128,128,.3);word-break:break-all}
|
||||
.filters .dev-toolbar{border:none !important;background:transparent !important;padding:0 !important;margin:0 !important;box-shadow:none !important;border-radius:0 !important}
|
||||
.dev-search{border:none !important;background:transparent !important;padding:0 !important;box-shadow:none !important;border-radius:0 !important;margin:14px 0}
|
||||
.dev-search .filter-box{margin:0}
|
||||
.dev-search .filter-box__controls{border:none !important;background:transparent !important;padding:0 !important;box-shadow:none !important;border-radius:0 !important;margin-top:12px;display:flex;flex-wrap:wrap;gap:10px;align-items:center}
|
||||
.dev-search .filter-box__select{width:auto;min-width:170px;margin:0;height:38px}
|
||||
.dev-search .filter-btn{margin:0;height:38px;padding:0 20px;display:inline-flex;align-items:center;justify-content:center}
|
||||
.dev-code-row td{border:none;vertical-align:top}
|
||||
.dev-code-num{text-align:right;padding:0 14px 0 4px;width:1%;min-width:52px;white-space:nowrap;opacity:.5;user-select:none;border-right:1px solid rgba(128,128,128,.25) !important}
|
||||
.dev-code-line{padding-left:16px}
|
||||
.welcome-banner .update-banner-icon{animation:none}
|
||||
.welcome-banner .welcome-banner-close{margin:0;padding:0;border:none;background:transparent;box-shadow:none;display:inline-flex;align-items:center}
|
||||
.welcome-banner-close-btn{background:transparent;border:none;color:inherit;cursor:pointer;font-size:1em;line-height:1;padding:0 4px;margin:0;opacity:.6}
|
||||
.welcome-banner-close-btn:hover{opacity:1}
|
||||
.welcome-progress,.welcome-steps,.welcome-complete,.welcome-footer,.welcome-action,.welcome-step-head{border:none !important;background:transparent !important;padding:0 !important;box-shadow:none !important;border-radius:0 !important}
|
||||
.welcome-progress{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;margin:12px 0}
|
||||
.welcome-progress p{margin:0}
|
||||
.welcome-progress form{margin:0;padding:0;border:none;background:transparent}
|
||||
.welcome-progress-label{font-weight:bold}
|
||||
.welcome-optional{opacity:.75;font-style:italic;margin:0 0 18px 0}
|
||||
.welcome-steps{display:flex;flex-direction:column;gap:14px;margin:16px 0}
|
||||
.welcome-step{border:1px solid rgba(128,128,128,.3) !important;border-radius:8px;padding:14px 16px !important;margin:0}
|
||||
.welcome-step-done{opacity:.72}
|
||||
.welcome-step-head{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin:0 0 6px 0}
|
||||
.welcome-step-number{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;border:1px solid rgba(128,128,128,.5);font-size:.85em;flex:0 0 auto}
|
||||
.welcome-step-title{margin:0;font-size:1.05em}
|
||||
.welcome-step-text{margin:0 0 12px 0}
|
||||
.welcome-chip{border:1px solid rgba(128,128,128,.4);border-radius:12px;padding:2px 10px;font-size:.78em;opacity:.8}
|
||||
.welcome-chip-done{opacity:1;font-weight:bold}
|
||||
.welcome-action{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin:0}
|
||||
.welcome-action form,.welcome-language-form{margin:0;padding:0;border:none;background:transparent}
|
||||
.welcome-language-form select{width:auto;min-width:170px;height:38px;box-sizing:border-box;margin:0}
|
||||
.welcome-action .filter-btn{margin:0;height:38px;padding:0 20px;display:inline-flex;align-items:center;justify-content:center}
|
||||
.welcome-complete{margin:16px 0}
|
||||
.welcome-footer{margin:20px 0 0 0}
|
||||
.welcome-footer form{margin:0;padding:0;border:none;background:transparent}
|
||||
.welcome-profile-form,.welcome-greeting-form{margin:0;padding:0;border:none;background:transparent;box-shadow:none}
|
||||
.welcome-profile-form label{display:block;margin:10px 0 4px 0}
|
||||
.welcome-profile-form input[type="text"],.welcome-profile-form textarea,.welcome-greeting-form textarea{width:100%;box-sizing:border-box;display:block;margin:0}
|
||||
.welcome-profile-form input[type="file"]{margin:0;width:auto}
|
||||
.welcome-profile-form .welcome-action,.welcome-greeting-form .welcome-action{margin-top:14px}
|
||||
.welcome-profile-avatar{display:block;width:96px;height:96px;object-fit:cover;border-radius:6px;margin:0 0 10px 0}
|
||||
.welcome-step-warning{margin:0 0 12px 0}
|
||||
.welcome-oasisid{border:none !important;background:transparent !important;padding:0 !important;box-shadow:none !important;margin:0 0 14px 0;word-break:break-all}
|
||||
.welcome-oasisid .user-link{user-select:all}
|
||||
|
|
|
|||
|
|
@ -775,3 +775,13 @@ button, input[type="submit"], input[type="button"],
|
|||
.bb-pick-ico { font-size: 26px !important; color: #FFA500 !important; line-height: 1 !important; }
|
||||
.bb-pick-lbl { font-size: 11px !important; text-align: center !important; line-height: 1.2 !important; }
|
||||
|
||||
|
||||
/* Ocultar los checkboxes nativos del drawer (nav-left/right-toggle) — si no, salen 2 cuadrados blancos arriba */
|
||||
.oasis-nav-side-toggle {
|
||||
position: absolute !important;
|
||||
width: 1px !important;
|
||||
height: 1px !important;
|
||||
opacity: 0 !important;
|
||||
pointer-events: none !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
ar: {
|
||||
bbAdd: "إضافة",
|
||||
bbQuickActions: "إجراءات سريعة",
|
||||
bbPickTitle: "تثبيت وحدة",
|
||||
bbPickDesc: "اختر وحدة لخانة + في الشريط السفلي.",
|
||||
bbPickNone: "لا شيء",
|
||||
bbManage: "تعديل",
|
||||
bbYourBar: "شريطك",
|
||||
bbRemove: "إزالة",
|
||||
bbFull: "تم بلوغ الحد الأقصى",
|
||||
bbDone: "تم",
|
||||
activityChangeFilter: "تغيير التصفية",
|
||||
emptyConnectHint: "اتصل بـ pub للمزامنة مع الشبكة.",
|
||||
emptyConnectCta: "الاتصال بـ pub",
|
||||
menuCommunity: "المجتمع",
|
||||
activityGroupCommunity: "المجتمع والحوكمة",
|
||||
activityGroupOrg: "التنظيم",
|
||||
activityGroupComm: "التواصل",
|
||||
activityGroupEconomy: "الاقتصاد",
|
||||
activityGroupMedia: "المحتوى والوسائط",
|
||||
activityGroupOther: "أخرى",
|
||||
languageName: "العربية",
|
||||
shopOrderStatusPaid: "تم استلام الدفع",
|
||||
shopOrderStatusReceived: "تم الاستلام",
|
||||
|
|
@ -428,7 +408,8 @@ module.exports = {
|
|||
publish: "كتابة",
|
||||
contentWarningPlaceholder: "أضف موضوعًا للمنشور (اختياري)",
|
||||
privateWarningPlaceholder: "أضف سكانًا لإرسال منشور خاص (اختياري)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "النص محدود بـ 7000 حرفًا.",
|
||||
publishTooLong: "منشورك طويل جدًا. الرجاء تقصيره.",
|
||||
publishCustomDescription: [
|
||||
"تذكّر: بسبب تقنية البلوكتشين، بمجرد نشر المنشور لا يمكن تعديله أو حذفه.",
|
||||
],
|
||||
|
|
@ -493,7 +474,89 @@ module.exports = {
|
|||
passwordLengthInfo: "يجب أن تكون كلمة المرور 32 حرفًا على الأقل.",
|
||||
passwordImport: "اكتب كلمة المرور لفك تشفير البيانات التي سيتم حفظها في مجلد النظام الرئيسي (الاسم: secret)",
|
||||
exportPasswordPlaceholder: "استخدم أحرفًا صغيرة وكبيرة وأرقامًا ورموزًا",
|
||||
fileInfo: "سيتم حفظ مفتاحك السري المشفر في مجلد النظام الرئيسي (الاسم: oasis.enc)",
|
||||
fileInfo: "سيتم تنزيل مفتاحك السري المشفر إلى جهازك (الاسم: oasis.enc)",
|
||||
developer: "التطوير",
|
||||
devTitle: "التطوير",
|
||||
welcomeBannerText: "أهلًا بك في أواسيس. اتبع هذه الخطوات السريعة لإعداد شخصيتك.",
|
||||
welcomeBannerAction: "ابدأ!",
|
||||
welcomeTitle: "أهلًا بك",
|
||||
welcomeStepGreetingAction: "إرسال",
|
||||
welcomeJoinPubButton: "انضم إلى الـ pub",
|
||||
welcomeStepLarpAction: "انضم إلى «الأكاديمية»",
|
||||
welcomeStepLarpText: "انضم إلى لعبة تقمص الأدوار الحية الخاصة بنا.",
|
||||
welcomeStepLarpTitle: "انضم إلى L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "أرسل «مرحبًا يا عالم!»",
|
||||
welcomeStepGreetingText: "أرسل رسالة ليتمكن بقية السكان من اكتشافك.",
|
||||
welcomeJoinPub: "انضم إلى",
|
||||
welcomeDescription: "بعض الأمور التي يُستحسن فعلها قبل البدء.",
|
||||
welcomeProgress: "مكتمل",
|
||||
welcomeStepDone: "تم",
|
||||
welcomeStepPending: "معلّق",
|
||||
welcomeSkip: "ليس الآن",
|
||||
welcomeStepLanguageTitle: "اختر لغتك",
|
||||
welcomeStepLanguageText: "أواسيس يتحدث عدة لغات. يمكنك تغييرها متى شئت.",
|
||||
welcomeStepProfileTitle: "حرّر ملفك الشخصي",
|
||||
welcomeStepProfileText: "اختر اسمًا وأضف وصفًا وضع صورة ليتعرّف عليك بقية السكان.",
|
||||
welcomeStepProfileAction: "حفظ الملف",
|
||||
welcomeStepFederationTitle: "انضم إلى الشبكة الرئيسية",
|
||||
welcomeStepFederationText: "اتصل بالـ pub الخاص بنا للقاء سكان آخرين والبدء في المزامنة.",
|
||||
welcomeStepFederationAction: "الذهاب إلى الدعوات",
|
||||
welcomeStepBackupTitle: "انسخ معرّفك احتياطيًا",
|
||||
welcomeStepBackupText: "هويتك ملف مفاتيح على هذا الجهاز.",
|
||||
welcomeStepBackupWarning: "إذا ضاع، لا يستطيع أحد استعادته لك.",
|
||||
welcomeStepBackupAction: "انسخ احتياطيًا!",
|
||||
welcomeCompleteTitle: "كل شيء جاهز.",
|
||||
welcomeCompleteText: "عقدتك جاهزة. من هنا تنمو الشبكة مع من تتابعهم.",
|
||||
welcomeFindPeople: "ابحث عن السكان",
|
||||
devFilterFiles: "الملفات",
|
||||
devFilterSearch: "بحث",
|
||||
devFilterModules: "الوحدات",
|
||||
devFilterTranslations: "الترجمات",
|
||||
devFilterStyles: "الأنماط",
|
||||
devFilterTests: "الاختبارات",
|
||||
devVersion: "الإصدار",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "مجموعات الاختبار",
|
||||
devParentFolder: "المجلد الأعلى",
|
||||
devOpenFolder: "فتح",
|
||||
devDescription: "استكشف الشيفرة المصدرية التي تعمل على هذه العقدة.",
|
||||
devTreeTitle: "الملفات",
|
||||
devSearchTitle: "البحث في الشيفرة",
|
||||
devMapTitle: "الوحدات",
|
||||
devRoot: "الجذر",
|
||||
devRootButton: "الجذر",
|
||||
devSearchPlaceholder: "النص المطلوب البحث عنه في الشيفرة",
|
||||
devAnyExtension: "أي ملف",
|
||||
devSearchButton: "بحث",
|
||||
devStatsFiles: "الملفات",
|
||||
devStatsLines: "الأسطر",
|
||||
devStatsModules: "الوحدات",
|
||||
devStatsLanguages: "اللغات",
|
||||
devNotViewable: "غير قابل للعرض",
|
||||
devEmptyFolder: "هذا المجلد فارغ.",
|
||||
devSize: "الحجم",
|
||||
devShowing: "يعرض",
|
||||
devLine: "سطر",
|
||||
devReportBug: "الإبلاغ عن خلل",
|
||||
devCreateTask: "إنشاء مهمة",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "وُجد أثناء قراءة الشيفرة المصدرية لأواسيس",
|
||||
devTaskPrefix: "مراجعة",
|
||||
devPrevPage: "الأسطر السابقة",
|
||||
devNextPage: "الأسطر التالية",
|
||||
devMatches: "تطابقات",
|
||||
devFilesScanned: "ملفات مفحوصة",
|
||||
devNoResults: "لا توجد تطابقات بعد.",
|
||||
devColModule: "الوحدة",
|
||||
devColState: "الحالة",
|
||||
devColModel: "النموذج",
|
||||
devColView: "العرض",
|
||||
devColRoutes: "المسارات",
|
||||
devColTests: "الاختبارات",
|
||||
devOn: "مفعّل",
|
||||
devOff: "معطّل",
|
||||
modulesDevLabel: "التطوير",
|
||||
modulesDevDescription: "وحدة لإدارة شيفرة أواسيس المصدرية.",
|
||||
themeIntro:
|
||||
"اختر سمة.",
|
||||
setTheme: "تعيين السمة",
|
||||
|
|
@ -695,7 +758,7 @@ module.exports = {
|
|||
spreadLabel: "نشر",
|
||||
spreadHint: "نشر هذا لداعميك (يتم النسخ عبر تغذيتك).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "مرحبًا بك في أوازيس — شبكة اجتماعية حرة، نِدّ لِنِد، اتحادية ومشفّرة، ذات بنية موزّعة بالدعوة فقط.\n\nبعض الأماكن المثيرة للاهتمام للبدء:\n\n- /profile — عدّل صورتك الرمزية واسمك ووصفك والوحدات التي تظهر في جانبك العام.\n- /invites — أضف pub للاتحاد مع بقية الشبكة.\n- /peers — اطّلع على من هو متصل، أعد مسح شبكتك المحلية، صدّر أو استورد قوائم الأقران.\n- /inhabitants — اكتشف الصور الرمزية للآخرين وزرها.\n- /tribes — أنشئ مجموعات خاصة بتشفير من طرف إلى طرف أو انضم إليها.\n- /inbox — اقرأ وأرسل الرسائل الخاصة.\n- /activity — اطّلع على النشاط الأخير، نشاطك ونشاط شبكتك.\n- /publish — اكتب منشورًا أو شارك صورة أو صوتًا أو فيديو أو مستندًا.\n\nبعض الأماكن المثيرة للاهتمام للاتصال:\n\n- /fediverse — أدر حساباتك الأخرى في الفيديفيرس، بما في ذلك إرسال واستقبال المحتوى.\n\nأُرسلت هذه الرسالة بشكل خاص منك إلى نفسك، لذا لم يلزم أي اتصال لاستلامها.",
|
||||
welcomePmBody: "مرحبًا بك في أوازيس — شبكة اجتماعية حرة، نِدّ لِنِد، اتحادية ومشفّرة، ذات بنية موزّعة بالدعوة فقط.\n\nبعض الأماكن المثيرة للاهتمام للبدء:\n\n- /profile — عدّل صورتك الرمزية واسمك ووصفك والوحدات التي تظهر في جانبك العام.\n- /invites — أضف pub للاتحاد مع بقية الشبكة.\n- /peers — اطّلع على من هو متصل، أعد مسح شبكتك المحلية، صدّر أو استورد قوائم الأقران.\n- /inhabitants — اكتشف الصور الرمزية للآخرين وزرها.\n- /tribes — أنشئ مجموعات خاصة بتشفير من طرف إلى طرف أو انضم إليها.\n- /inbox — اقرأ وأرسل الرسائل الخاصة.\n- /activity — اطّلع على النشاط الأخير، نشاطك ونشاط شبكتك.\n- /publish — اكتب منشورًا أو شارك صورة أو صوتًا أو فيديو أو مستندًا.\n- /search — ابحث في محتوى الشبكة حسب النوع.\n\nبعض الأماكن المثيرة للاهتمام للاتصال:\n\n- /fediverse — أدر حساباتك الأخرى في الفيديفيرس، بما في ذلك إرسال واستقبال المحتوى.\n\nأُرسلت هذه الرسالة بشكل خاص منك إلى نفسك، لذا لم يلزم أي اتصال لاستلامها.",
|
||||
profileVisibilityTitle: "ظهور الملف الشخصي العام",
|
||||
profileVisibilityHint: "اختر الحقول التي يراها السكان الآخرون في ملفك الشخصي. افتراضيًا، يظهر Karma فقط.",
|
||||
profileSensorsSectionTitle: "المستشعرات",
|
||||
|
|
@ -1226,6 +1289,9 @@ module.exports = {
|
|||
eventButton: "الأحداث",
|
||||
taskButton: "المهام",
|
||||
votesButton: "التصويتات",
|
||||
industryButton: "الصناعة",
|
||||
projectButton: "المشاريع",
|
||||
shopProductButton: "المنتجات",
|
||||
reportButton: "التقارير",
|
||||
feedButton: "التغذية",
|
||||
marketButton: "السوق",
|
||||
|
|
@ -1254,7 +1320,7 @@ module.exports = {
|
|||
trendingItemStatus: "حالة العنصر",
|
||||
trendingTotalVotes: "إجمالي الأصوات",
|
||||
trendingTotalOpinions: "إجمالي الآراء",
|
||||
trendingNoContentMessage: "لا يتوفر محتوى رائج بعد.",
|
||||
trendingNoContentMessage: "لا توجد اتجاهات بعد.",
|
||||
trendingAuthor: "بواسطة",
|
||||
trendingCreatedAtLabel: "أُنشئ في",
|
||||
trendingTotalCount: "العدد الإجمالي",
|
||||
|
|
@ -1443,7 +1509,7 @@ module.exports = {
|
|||
transfersCreatedAt: "أُنشئ في",
|
||||
transfersConfirmations: "التأكيدات",
|
||||
transfersContainingBlock: "الكتلة المحتوية",
|
||||
transfersExportContract: "إنشاء العقد",
|
||||
transfersExportContract: "عقد ذكي",
|
||||
transfersConfirmButton: "تأكيد التحويل",
|
||||
transfersNoItems: "لم يتم العثور على تحويلات.",
|
||||
transfersMineSectionTitle: "تحويلاتك",
|
||||
|
|
@ -1569,7 +1635,7 @@ module.exports = {
|
|||
cvDeleteButton: "حذف",
|
||||
cvNoCV: "لم يتم العثور على سيرة ذاتية.",
|
||||
blogSubject: "الموضوع",
|
||||
blogMessage: "النص محدود بـ 8096 حرفًا.",
|
||||
blogMessage: "الرسالة",
|
||||
blogImage: "رفع وسائط (الحد الأقصى: 50 ميغابايت)",
|
||||
blogPublish: "معاينة",
|
||||
noPopularMessages: "لم تُنشر رسائل شائعة بعد",
|
||||
|
|
@ -2204,6 +2270,7 @@ module.exports = {
|
|||
agendaFilterReports: "التقارير",
|
||||
agendaFilterTransfers: "التحويلات",
|
||||
agendaFilterJobs: "الوظائف",
|
||||
agendaFilterIndustry: "الصناعة",
|
||||
agendaFilterProjects: "المشاريع",
|
||||
agendaFilterCalendars: "التقويمات",
|
||||
agendaNoItems: "لم يتم العثور على إسنادات.",
|
||||
|
|
@ -2325,16 +2392,31 @@ module.exports = {
|
|||
privateMessage: "رسالة خاصة",
|
||||
pmSendTitle: "الرسائل الخاصة",
|
||||
pmSend: "إرسال!",
|
||||
pmDescription: "استخدم هذا النموذج لإرسال رسالة مشفرة إلى سكان آخرين.",
|
||||
pmCancel: "إلغاء",
|
||||
pmReset: "إعادة تعيين",
|
||||
pmSharedKeyHint: "شارك هذا المفتاح مع المستلم عبر قناة أخرى. فهو ضروري لفك التشفير.",
|
||||
pmDescription: "استخدم هذا النموذج لإرسال رسالة/ملف مشفّر إلى سكان آخرين.",
|
||||
pmComposeTitle: "إرسال رسالة",
|
||||
pmRecipients: "المستلمون",
|
||||
pmRecipientsHint: "أدخل معرّفات Oasis مفصولة بفواصل",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "حتى 7 مستلمين لكل رسالة.",
|
||||
pmTextPlaceholder: "النص محدود بـ 7000 حرفًا.",
|
||||
pmSubject: "الموضوع",
|
||||
pmSubjectHint: "أدخل موضوع الرسالة",
|
||||
pmText: "الرسالة",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "فك التشفير",
|
||||
fileShareTitle: "مشاركة ملف",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "ملف",
|
||||
fileShareDownload: "تنزيل",
|
||||
fileShareMutualError: "يمكنك مشاركة الملفات فقط مع السكان ذوي الدعم المتبادل.",
|
||||
fileShareNoFile: "لم يتم اختيار أي ملف.",
|
||||
fileShareTooLarge: "الملف يتجاوز الحجم المسموح.",
|
||||
fileShareFailed: "تعذّر تحضير الملف.",
|
||||
fileShareSendError: "تعذّر إرسال الملف.",
|
||||
fileShareUnavailable: "هذا الملف غير متاح حاليًا. حاول لاحقًا.",
|
||||
pmCrypterBadKey: "المفتاح المشترك غير صحيح!",
|
||||
pmCrypterTooLong: "الرسالة طويلة جدًا للتشفير باستخدام Crypter. يُرجى اختصارها والمحاولة مرة أخرى.",
|
||||
pmCrypterCipherLabel: "الرسالة المعاد تشفيرها",
|
||||
|
|
@ -2355,15 +2437,27 @@ module.exports = {
|
|||
pmNoSubject: "(بدون موضوع)",
|
||||
pmSubjectLabel: "الموضوع:",
|
||||
pmBodyLabel: "النص",
|
||||
pmBotJobs: "42-JobsBOT",
|
||||
pmBotProjects: "42-ProjectsBOT",
|
||||
pmBotMarket: "42-MarketBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "لقد تغيّر البيت الحاكم في L.A.R.P.",
|
||||
politicalBotParliamentTitle: "بدأت دورة حكم جديدة في البرلمان.",
|
||||
politicalBotTribeTitle: "بدأت دورة حكم جديدة في إحدى قبائلك.",
|
||||
politicalBotLarpIntro: "الآن يحكم {house} خلال هذه الدورة: {cycle}",
|
||||
politicalBotParliamentIntro: "الحكومة الحالية هي {gov}",
|
||||
politicalBotParliamentIntroLeader: "الحكومة الحالية هي {gov} يمارسها {leader}",
|
||||
politicalBotTribeIntro: "الحكومة الحالية في قبيلة {tribe} هي {gov}",
|
||||
politicalBotTribeIntroLeader: "الحكومة الحالية في قبيلة {tribe} هي {gov} يمارسها {leader}",
|
||||
politicalBotLeaderLabel: "القائد",
|
||||
inboxJobSubscribedTitle: "اشتراك جديد في عرض عملك",
|
||||
pmInhabitantWithId: "ساكن بمعرّف OASIS:",
|
||||
pmHasSubscribedToYourJobOffer: "اشترك في عرض عملك",
|
||||
inboxProjectCreatedTitle: "تم إنشاء مشروع جديد",
|
||||
pmHasCreatedAProject: "أنشأ مشروعًا",
|
||||
inboxMarketItemSoldTitle: "تم بيع عنصر",
|
||||
inboxShopSoldTitle: "تم بيع المنتج",
|
||||
pmYourItem: "عنصرك",
|
||||
pmHasBeenSoldTo: "تم بيعه إلى",
|
||||
pmFor: "مقابل",
|
||||
|
|
@ -2398,7 +2492,7 @@ module.exports = {
|
|||
visitContent: "زيارة المحتوى",
|
||||
banking: 'المصرفية',
|
||||
bankingTitle: 'المصرفية',
|
||||
bankingDescription: 'استكشف القيمة الحالية لـ ECOin وتخصيص الدخل الأساسي الشامل المقابل، الموزّع لكل حقبة بناءً على المشاركة والثقة.',
|
||||
bankingDescription: "اقتصاد ECOin: الرصيد، الدخل الأساسي، الضرائب وقيمة الصناعة.",
|
||||
bankOverview: 'نظرة عامة',
|
||||
bankEpochs: 'الحقب',
|
||||
bankRules: 'القواعد',
|
||||
|
|
@ -2432,6 +2526,10 @@ module.exports = {
|
|||
bankEpochId: 'معرّف الحقبة',
|
||||
bankRuleHash: 'بصمة لقطة القواعد',
|
||||
bankViewEpoch: 'عرض الحقبة',
|
||||
bankYourIndustryBalance: "حصتك الصناعية",
|
||||
bankYourUbiMonth: "دخلك الأساسي (هذا الشهر)",
|
||||
bankYourFundsMonth: "أموالك (هذا الشهر)",
|
||||
bankIndustryBalance: "الإنتاج الصناعي (تقديري)",
|
||||
bankUserBalance: 'رصيدك',
|
||||
ecoWalletNotConfigured: 'محفظة ECOin غير مُعدّة',
|
||||
editWallet: 'تعديل المحفظة',
|
||||
|
|
@ -2471,7 +2569,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "لا توجد أموال!",
|
||||
bankUbiAvailableOk: "متوفر!",
|
||||
bankUbiAvailability: "توفر UBI",
|
||||
bankUbiAvailability: "الدخل الأساسي (الشبكة)",
|
||||
bankAlreadyClaimedThisMonth: "تم المطالبة بالفعل هذا الشهر",
|
||||
bankUbiThisMonth: "الدخل الأساسي (هذا الشهر)",
|
||||
bankUbiLastClaimed: "الدخل الأساسي (آخر مطالبة)",
|
||||
|
|
@ -2901,6 +2999,208 @@ module.exports = {
|
|||
jobsTagsLabel: "الوسوم",
|
||||
jobsTagsPlaceholder: "وسم1، وسم2، وسم3",
|
||||
noJobsMatch: "لا توجد وظائف تطابق بحثك.",
|
||||
industrySearchPlaceholder: "ابحث عن المصانع…",
|
||||
industryAllSectors: "جميع القطاعات",
|
||||
industryVisitButton: "زيارة الصناعة",
|
||||
industryAdvanceTo: "تعيين إلى",
|
||||
industryAmount: "المبلغ",
|
||||
industryApproveBuild: "الموافقة",
|
||||
industryBackToFacility: "← المصنع",
|
||||
industryBlueprint: "مخطط",
|
||||
industryBlueprintLabel: "مخطط صناعي",
|
||||
industryBlueprints: "مخططات",
|
||||
industryBuild: "بناء",
|
||||
industryBuildNotes: "ملاحظات",
|
||||
industryBuildStart: "تاريخ البدء",
|
||||
industryVoteUpdateButton: "التصويت للتحديث",
|
||||
industryVoteDeleteButton: "التصويت للحذف",
|
||||
industryRevokeVote: "سحب",
|
||||
industryTimeLeft: "الوقت المتبقي",
|
||||
industryBuildEnd: "تاريخ الانتهاء",
|
||||
industryBuilds: "عمليات البناء",
|
||||
industryBuildTitle: "العنوان",
|
||||
industryContribute: "المساهمة",
|
||||
industryContributeEco: "المساهمة بـ ECO",
|
||||
industryContributeLabor: "المساهمة بالعمل",
|
||||
industryContributeButton: "ساهم",
|
||||
industryContributeMaterial: "المساهمة بالمواد",
|
||||
industryContributions: "المساهمات",
|
||||
industryContributors: "المساهمون",
|
||||
industryCreateBlueprintButton: "إنشاء مخطط",
|
||||
industryDistribute: "توزيع",
|
||||
industryDistributeButton: "التوزيع حسب الحصص",
|
||||
industryDistribution: "التوزيع",
|
||||
industryEcoAmount: "المبلغ (ECO)",
|
||||
industryEcoContribHint: "تُحوَّل مساهمات ECO إلى القيّم بصفته أمين خزينة البناء.",
|
||||
industryEditBlueprint: "تعديل المخطط",
|
||||
industryFacility: "المصنع",
|
||||
industryKindLabel: "النوع",
|
||||
industryKind_labor: "العمل",
|
||||
industryKind_material: "مادة",
|
||||
industryKind_eco: "أموال",
|
||||
industryLaborHours: "العمل (ساعات)",
|
||||
industryHours: "ساعات",
|
||||
industryLicense: "الترخيص",
|
||||
industryMaterialItem: "مادة",
|
||||
industryMaterials: "المواد",
|
||||
industryMaterialsHint: "مادة واحدة في كل سطر بالتنسيق الاسم:الكمية:السعر.",
|
||||
industryEstMaterials: "إجمالي المواد",
|
||||
industryEstLabor: "إجمالي العمل",
|
||||
industryEstTaxes: "الضرائب",
|
||||
industryEstTotal: "السعر المقدر",
|
||||
industryBuildingPrice: "سعر التصنيع",
|
||||
industryFinalPrice: "السعر النهائي",
|
||||
industryBlueprintDescPlaceholder: "المواصفات والأبعاد والوزن والوثائق…",
|
||||
industryMaterialValue: "القيمة (ECO)",
|
||||
industryMember: "عضو",
|
||||
industryNewBlueprint: "مخطط جديد",
|
||||
industryNewBuild: "اقتراح بناء",
|
||||
industryEditBuild: "تحرير الإنتاج",
|
||||
industryNoBlueprint: "— لا شيء —",
|
||||
industryNeedBlueprint: "أنشئ مخططًا أولاً: كل إنتاج يصنع واحدًا.",
|
||||
industryNoBlueprints: "لا توجد مخططات بعد.",
|
||||
industryNoBuilds: "لا توجد عمليات بناء بعد.",
|
||||
industryNote: "ملاحظة",
|
||||
industryOutput: "المخرجات",
|
||||
industryOutputItem: "اسم المنتج",
|
||||
industryOutputKind: "نوع المنتج",
|
||||
industryOutputQty: "الوحدات لكل إنتاج",
|
||||
industryOutputUnit: "وحدة القياس",
|
||||
industryOutputValue: "قيمة المخرجات (ECO، مثلاً من البيع)",
|
||||
industryPayout: "الدفع",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "إنشاء وظيفة",
|
||||
industryPot: "الوعاء",
|
||||
industryProposeBuildButton: "اقتراح البناء",
|
||||
industryProposer: "المقترح",
|
||||
industryAuthor: "المؤلف",
|
||||
industrySellOnMarket: "إرسال إلى السوق",
|
||||
industrySendToProjects: "إنشاء مشروع",
|
||||
industryShare: "حصة",
|
||||
industryShares: "حصص",
|
||||
industrySkills: "المهارات",
|
||||
industryTreasury: "الخزينة",
|
||||
industryKind_physical: "مادي",
|
||||
industryKind_digital: "رقمي",
|
||||
industryBuildStatus_PROPOSED: "مقترح",
|
||||
industryBuildStatus_REJECTED: "مرفوض",
|
||||
industryBuildStatus_APPROVED: "معتمد",
|
||||
industryBuildStatus_STOCKING: "تجهيز",
|
||||
industryBuildStatus_IN_PRODUCTION: "قيد الإنتاج",
|
||||
industryBuildStatus_COMPLETED: "مكتمل",
|
||||
industryBuildStatus_FAILED: "فاشل",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "تم قبولك في مصنع.",
|
||||
industryBotApplicationTitle: "طلب عضوية جديد في مصنعك.",
|
||||
industryBotInvitedTitle: "تمت دعوتك إلى مصنع.",
|
||||
industryBotDissolvedTitle: "تم حل مصنع تنتمي إليه.",
|
||||
industryBotBuildApprovedTitle: "تمت الموافقة على بناء.",
|
||||
industryBotDistributedTitle: "تم توزيع مخرجات بناء.",
|
||||
industryFilterRules: "القواعد",
|
||||
industryRulesTitle: "القواعد",
|
||||
industryRulesIntro: "تتيح Industry للسكان امتلاك وسائل الإنتاج جماعيًا: المصنع ورشة مملوكة للشبكة لا يملكها أحد بشكل خاص.",
|
||||
industryRulesSteward: "المؤسس هو القيّم — راعٍ لا مالك: لا يمكنه بيع المصنع أو خصخصته أو حله بمفرده.",
|
||||
industryRulesMembership: "تحدد سياسة العضوية كيفية الانضمام: مفتوح (فورًا)، بالتصويت (بقبول أصوات الأعضاء) أو بالدعوة فقط (يجب أن يدعوك عضو أولاً).",
|
||||
industryRulesQuorum: "النصاب هو الحد الأدنى من الأعضاء الذين يجب أن يصوّتوا لتُحتسب القرار، حتى لا يقرر شخص واحد في مصنع صغير.",
|
||||
industryRulesMajority: "الأغلبية هي نسبة الأصوات اللازمة (0.5 = نصف، 1 = إجماع)؛ يمر القرار عندما تبلغ أصوات نعم على الأقل max(النصاب، الأعضاء × الأغلبية).",
|
||||
industryRulesDecisions: "يصوّت الأعضاء لقبول الجدد والموافقة على عمليات البناء وحل المصنع؛ لا يمكن للقيّم تجاوز هذه القرارات الجماعية.",
|
||||
industryRulesBlueprints: "المخططات وصفات حرة (COPYLEFT) — المدخلات (مواد، ساعات عمل، مهارات) والمخرجات (سلعة مادية أو رقمية) — ويمكن لأي شخص نسخها.",
|
||||
industryRulesBuilds: "البناء أمر إنتاج: مقترح ← معتمد (بالتصويت) ← تجهيز ← قيد الإنتاج ← مكتمل، ولا يقبل مساهمات إلا بعد الاعتماد.",
|
||||
industryRulesContributions: "يساهم الأعضاء بالعمل (ساعات) أو المواد (قيمة ECO معلنة) أو ECO في البناء؛ كل مساهمة تكسب Karma.",
|
||||
industryRulesLaborRate: "أجر العمل هو قيمة ECO لساعة عمل في هذا المصنع؛ يحوّل الساعات إلى Karma لمقارنة الجهد ورأس المال بعدل: Karma = ساعات × الأجر + قيمة المواد + ECO.",
|
||||
industryRulesShares: "حصتك في البناء هي Karma الخاص بك ÷ إجمالي Karma، وتحدد مقدار قيمة المخرجات التي تحصل عليها.",
|
||||
industryRulesDistribution: "عند اكتمال الإنتاج، يوزّع الوصي المبلغ (أموال الإنتاج بالإضافة إلى قيمة البيع) على المساهمين بنسبة حصصهم.",
|
||||
industryRulesTreasury: "يحتفظ القيّم بمساهمات ECO كأمين لخزينة البناء حتى التوزيع؛ تُسجَّل جميع الحركات على الشبكة ويمكن أن تذهب النزاعات إلى Courts.",
|
||||
industryJobs: "وظائف",
|
||||
industryNoJobs: "لا توجد وظائف بعد.",
|
||||
industryCreatePosition: "إنشاء وظيفة",
|
||||
industryViewCV: "السيرة الذاتية",
|
||||
industryReportButton: "إبلاغ",
|
||||
industryCreateTask: "إنشاء مهمة",
|
||||
industryOpenDispute: "فتح نزاع",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "مثل وحدة، كجم، ترخيص",
|
||||
industryOutputItemPlaceholder: "مثل روبوت",
|
||||
industryOutputQtyPlaceholder: "مثل 5",
|
||||
industrySkillsPlaceholder: "مثل لحام، شبكات، تركيب-شمسي",
|
||||
industryCreateInvite: "إنشاء دعوة",
|
||||
industryPauseVotes: "أصوات الحالة",
|
||||
industryTitle: "الصناعة",
|
||||
industryDescription: "وحدة لإدارة وسائل الإنتاج بشكل جماعي.",
|
||||
industryLabel: "الصناعة",
|
||||
typeIndustryBuild: "بناء",
|
||||
typeIndustryBlueprint: "مخطط",
|
||||
typeIndustryAllocation: "توزيع",
|
||||
typeIndustry: "الصناعة",
|
||||
modulesIndustryLabel: "الصناعة",
|
||||
modulesIndustryDescription: "وحدة لإدارة وسائل الإنتاج بشكل جماعي.",
|
||||
industryFilterAll: "الكل",
|
||||
industryFilterMember: "عضو",
|
||||
industryFilterBlueprints: "مخططات",
|
||||
industryFilterBuilds: "إنتاجات",
|
||||
industryFilterMine: "لي",
|
||||
industryFilterActive: "يعمل",
|
||||
industryFilterPaused: "موقوفة",
|
||||
industryFilterDissolved: "منحلة",
|
||||
industryAllTitle: "الصناعة",
|
||||
industryMemberTitle: "المصانع التي أنتمي إليها",
|
||||
industryMineTitle: "مصانعي",
|
||||
industryActiveTitle: "يعمل",
|
||||
industryPausedTitle: "المصانع الموقوفة",
|
||||
industryDissolvedTitle: "المصانع المنحلة",
|
||||
industryNoFacilitiesFound: "لم يتم العثور على مصانع.",
|
||||
industryCreateFacility: "إنشاء مصنع",
|
||||
industryMembers: "الأعضاء",
|
||||
industryMemberBadge: "عضو",
|
||||
industryName: "الاسم",
|
||||
industryNamePlaceholder: "اسم المصنع",
|
||||
industryDescriptionLabel: "الوصف",
|
||||
industryDescriptionPlaceholder: "ماذا ينتج هذا المصنع؟",
|
||||
industrySector: "القطاع",
|
||||
industryMembershipPolicy: "سياسة العضوية",
|
||||
industryQuorum: "النصاب",
|
||||
industryMajority: "الأغلبية",
|
||||
industryLaborRate: "أجر العمل",
|
||||
industryCreateButton: "إنشاء مصنع",
|
||||
industryUpdateButton: "تحديث",
|
||||
industrySteward: "القيم",
|
||||
industryStatusActive: "يعمل",
|
||||
industryStatusPaused: "موقوف",
|
||||
industryStatusDissolved: "منحل",
|
||||
industryStatusLabel: "الحالة",
|
||||
industryJoinButton: "انضمام",
|
||||
industryApplyButton: "طلب الانضمام",
|
||||
industryLeaveButton: "مغادرة",
|
||||
industryInviteButton: "دعوة",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "تحتاج إلى دعوة للانضمام.",
|
||||
industryPauseButton: "صوّت للإيقاف",
|
||||
industryResumeButton: "صوّت للاستئناف",
|
||||
industryEditButton: "تعديل",
|
||||
industryDeleteButton: "حذف",
|
||||
industryBackToList: "← الصناعة",
|
||||
industryPendingApplicants: "طلبات معلقة",
|
||||
industryVotesYes: "نعم",
|
||||
industryVotesNo: "لا",
|
||||
industryAlreadyVoted: "تم التصويت",
|
||||
industryAdmit: "قبول",
|
||||
industryReject: "رفض",
|
||||
industryDissolveTitle: "حل المصنع",
|
||||
industryDissolveHint: "يتطلب الحل تصويتًا جماعيًا؛ لا يمكن للقيم الحل بمفرده.",
|
||||
industryDissolveVote: "التصويت للحل",
|
||||
industrySector_software: "برمجيات",
|
||||
industrySector_hardware: "عتاد",
|
||||
industrySector_agriculture: "زراعة",
|
||||
industrySector_textile: "نسيج",
|
||||
industrySector_energy: "طاقة",
|
||||
industrySector_food: "غذاء",
|
||||
industrySector_construction: "بناء",
|
||||
industrySector_media: "إعلام",
|
||||
industrySector_services: "خدمات",
|
||||
industrySector_other: "أخرى",
|
||||
industryPolicy_open: "مفتوح",
|
||||
industryPolicy_vote: "بالتصويت",
|
||||
industryPolicy_invite: "بالدعوة فقط",
|
||||
projectsTitle: "المشاريع",
|
||||
projectsDescription: "أنشئ ومُوّل وتابع مشاريع يقودها المجتمع في شبكتك.",
|
||||
projectCreateProject: "إنشاء مشروع",
|
||||
|
|
@ -3260,6 +3560,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "الوصف",
|
||||
chatMessageReply: "رد",
|
||||
chatMessageLabel: "رسالة",
|
||||
chatCategory: "الفئة",
|
||||
chatStatus: "الحالة",
|
||||
chatFilterAll: "الكل",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
de: {
|
||||
bbAdd: "Hinzufügen",
|
||||
bbQuickActions: "Schnellaktionen",
|
||||
bbPickTitle: "Modul anheften",
|
||||
bbPickDesc: "Wähle ein Modul für den +-Platz in der unteren Leiste.",
|
||||
bbPickNone: "Keins",
|
||||
bbManage: "Bearbeiten",
|
||||
bbYourBar: "Deine Leiste",
|
||||
bbRemove: "Entfernen",
|
||||
bbFull: "Maximum erreicht",
|
||||
bbDone: "Fertig",
|
||||
activityChangeFilter: "Filter ändern",
|
||||
emptyConnectHint: "Verbinde dich mit einem Pub, um dich mit dem Netzwerk zu synchronisieren.",
|
||||
emptyConnectCta: "Mit einem Pub verbinden",
|
||||
menuCommunity: "Gemeinschaft",
|
||||
activityGroupCommunity: "Gemeinschaft & Governance",
|
||||
activityGroupOrg: "Organisation",
|
||||
activityGroupComm: "Kommunikation",
|
||||
activityGroupEconomy: "Wirtschaft",
|
||||
activityGroupMedia: "Inhalte & Medien",
|
||||
activityGroupOther: "Sonstiges",
|
||||
languageName: "Deutsch",
|
||||
shopOrderStatusPaid: "Zahlung erhalten",
|
||||
shopOrderStatusReceived: "Erhalten",
|
||||
|
|
@ -426,7 +406,8 @@ module.exports = {
|
|||
publish: "Schreiben",
|
||||
contentWarningPlaceholder: "Betreff zum Beitrag hinzufügen (optional)",
|
||||
privateWarningPlaceholder: "Bewohner hinzufügen, um einen privaten Beitrag zu senden (optional)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Text auf 7000 Zeichen begrenzt.",
|
||||
publishTooLong: "Dein Beitrag ist zu lang. Bitte kürze ihn.",
|
||||
publishCustomDescription: [
|
||||
"ACHTUNG: Aufgrund der Blockchain-Technologie kann ein veröffentlichter Beitrag nicht bearbeitet oder gelöscht werden.",
|
||||
],
|
||||
|
|
@ -491,7 +472,89 @@ module.exports = {
|
|||
passwordLengthInfo: "Das Passwort muss mindestens 32 Zeichen lang sein.",
|
||||
passwordImport: "Gib dein Passwort ein, um die Daten zu entschlüsseln",
|
||||
exportPasswordPlaceholder: "Klein-, Großbuchstaben, Zahlen und Symbole verwenden",
|
||||
fileInfo: "Dein verschlüsselter Schlüssel wird im Systemverzeichnis gespeichert (Name: oasis.enc)",
|
||||
fileInfo: "Dein verschlüsselter Schlüssel wird auf dein Gerät heruntergeladen (Name: oasis.enc)",
|
||||
developer: "Entwicklung",
|
||||
devTitle: "Entwicklung",
|
||||
welcomeBannerText: "Willkommen bei OASIS. Folge diesen kurzen Schritten, um deinen Avatar einzurichten.",
|
||||
welcomeBannerAction: "Los geht es!",
|
||||
welcomeTitle: "Willkommen",
|
||||
welcomeStepGreetingAction: "Senden",
|
||||
welcomeJoinPubButton: "Pub beitreten",
|
||||
welcomeStepLarpAction: "\"Der Akademie\" beitreten",
|
||||
welcomeStepLarpText: "Mach mit bei unserem Live-Rollenspiel.",
|
||||
welcomeStepLarpTitle: "L.A.R.P. beitreten",
|
||||
welcomeStepGreetingTitle: "Sende ein \"Hallo Welt!\"",
|
||||
welcomeStepGreetingText: "Sende eine Nachricht, damit andere Bewohner dich entdecken können.",
|
||||
welcomeJoinPub: "Beitreten:",
|
||||
welcomeDescription: "Ein paar Dinge, die sich vor dem Start lohnen.",
|
||||
welcomeProgress: "Erledigt",
|
||||
welcomeStepDone: "fertig",
|
||||
welcomeStepPending: "offen",
|
||||
welcomeSkip: "Jetzt nicht",
|
||||
welcomeStepLanguageTitle: "Wähle deine Sprache",
|
||||
welcomeStepLanguageText: "Oasis spricht mehrere Sprachen. Du kannst sie jederzeit ändern.",
|
||||
welcomeStepProfileTitle: "Bearbeite dein Profil",
|
||||
welcomeStepProfileText: "Wähle einen Namen, füge eine Beschreibung hinzu und setze ein Bild, damit andere Bewohner dich erkennen.",
|
||||
welcomeStepProfileAction: "Profil speichern",
|
||||
welcomeStepFederationTitle: "Tritt dem Hauptnetzwerk bei",
|
||||
welcomeStepFederationText: "Verbinde dich mit unserem Pub, um andere Bewohner zu treffen und zu replizieren.",
|
||||
welcomeStepFederationAction: "Zu den Einladungen",
|
||||
welcomeStepBackupTitle: "Sichere deine ID",
|
||||
welcomeStepBackupText: "Deine Identität ist eine Schlüsseldatei auf diesem Gerät.",
|
||||
welcomeStepBackupWarning: "WENN SIE VERLOREN GEHT, KANN SIE NIEMAND WIEDERHERSTELLEN.",
|
||||
welcomeStepBackupAction: "Sicherung!",
|
||||
welcomeCompleteTitle: "Alles bereit.",
|
||||
welcomeCompleteText: "Dein Knoten ist bereit. Von hier an wächst das Netzwerk mit den Menschen, denen du folgst.",
|
||||
welcomeFindPeople: "Bewohner finden",
|
||||
devFilterFiles: "DATEIEN",
|
||||
devFilterSearch: "SUCHEN",
|
||||
devFilterModules: "MODULE",
|
||||
devFilterTranslations: "ÜBERSETZUNGEN",
|
||||
devFilterStyles: "STILE",
|
||||
devFilterTests: "TESTS",
|
||||
devVersion: "Version",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Test-Suites",
|
||||
devParentFolder: "Übergeordneter Ordner",
|
||||
devOpenFolder: "öffnen",
|
||||
devDescription: "Erkunde den Quellcode, der auf diesem Knoten läuft.",
|
||||
devTreeTitle: "Dateien",
|
||||
devSearchTitle: "Code durchsuchen",
|
||||
devMapTitle: "Module",
|
||||
devRoot: "Wurzel",
|
||||
devRootButton: "WURZEL",
|
||||
devSearchPlaceholder: "Im Code zu suchender Text",
|
||||
devAnyExtension: "Beliebige Datei",
|
||||
devSearchButton: "Suchen",
|
||||
devStatsFiles: "Dateien",
|
||||
devStatsLines: "Zeilen",
|
||||
devStatsModules: "Module",
|
||||
devStatsLanguages: "Sprachen",
|
||||
devNotViewable: "nicht anzeigbar",
|
||||
devEmptyFolder: "Dieser Ordner ist leer.",
|
||||
devSize: "Größe",
|
||||
devShowing: "Anzeige",
|
||||
devLine: "Zeile",
|
||||
devReportBug: "Fehler Melden",
|
||||
devCreateTask: "Aufgabe Erstellen",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Beim Lesen des Oasis-Quellcodes gefunden",
|
||||
devTaskPrefix: "Prüfen",
|
||||
devPrevPage: "Vorherige Zeilen",
|
||||
devNextPage: "Nächste Zeilen",
|
||||
devMatches: "Treffer",
|
||||
devFilesScanned: "Dateien geprüft",
|
||||
devNoResults: "Noch keine Treffer.",
|
||||
devColModule: "Modul",
|
||||
devColState: "Status",
|
||||
devColModel: "Modell",
|
||||
devColView: "Ansicht",
|
||||
devColRoutes: "Routen",
|
||||
devColTests: "Tests",
|
||||
devOn: "an",
|
||||
devOff: "aus",
|
||||
modulesDevLabel: "Entwicklung",
|
||||
modulesDevDescription: "Modul zur Verwaltung des Oasis-Quellcodes.",
|
||||
themeIntro: "Wähle ein Design.",
|
||||
setTheme: "Design festlegen",
|
||||
language: "Sprache",
|
||||
|
|
@ -690,7 +753,7 @@ module.exports = {
|
|||
spreadLabel: "Verbreiten",
|
||||
spreadHint: "Verbreite dies an deine Unterstützer (über deinen Feed).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Willkommen bei Oasis — ein freies, peer-to-peer, föderiertes und verschlüsseltes soziales Netzwerk mit einer verteilten Architektur nur mit Einladung.\n\nEinige interessante Orte zum Anfangen:\n\n- /profile — Bearbeite deinen Avatar, Namen, deine Beschreibung und welche Module auf deiner öffentlichen Seite erscheinen.\n- /invites — Füge einen Pub hinzu, um dich mit dem weiteren Netzwerk zu föderieren.\n- /peers — Sieh, wer verbunden ist, scanne dein LAN erneut, exportiere oder importiere Peer-Listen.\n- /inhabitants — Entdecke und besuche die Avatare anderer Personen.\n- /tribes — Erstelle private Gruppen mit Ende-zu-Ende-Verschlüsselung oder tritt ihnen bei.\n- /inbox — Lies und sende private Nachrichten.\n- /activity — Sieh die jüngste Aktivität, deine und die deines Netzwerks.\n- /publish — Schreibe einen Beitrag oder teile ein Bild, Audio, Video oder Dokument.\n\nEinige interessante Orte zum Verbinden:\n\n- /fediverse — Verwalte deine anderen Fediverse-Konten, einschließlich Senden und Empfangen von Inhalten.\n\nDiese Nachricht wurde privat von dir an dich selbst gesendet, daher war keine Verbindung nötig, um sie zu empfangen.",
|
||||
welcomePmBody: "Willkommen bei Oasis — ein freies, peer-to-peer, föderiertes und verschlüsseltes soziales Netzwerk mit einer verteilten Architektur nur mit Einladung.\n\nEinige interessante Orte zum Anfangen:\n\n- /profile — Bearbeite deinen Avatar, Namen, deine Beschreibung und welche Module auf deiner öffentlichen Seite erscheinen.\n- /invites — Füge einen Pub hinzu, um dich mit dem weiteren Netzwerk zu föderieren.\n- /peers — Sieh, wer verbunden ist, scanne dein LAN erneut, exportiere oder importiere Peer-Listen.\n- /inhabitants — Entdecke und besuche die Avatare anderer Personen.\n- /tribes — Erstelle private Gruppen mit Ende-zu-Ende-Verschlüsselung oder tritt ihnen bei.\n- /inbox — Lies und sende private Nachrichten.\n- /activity — Sieh die jüngste Aktivität, deine und die deines Netzwerks.\n- /publish — Schreibe einen Beitrag oder teile ein Bild, Audio, Video oder Dokument.\n- /search — Durchsuche die Inhalte des Netzwerks nach Typ.\n\nEinige interessante Orte zum Verbinden:\n\n- /fediverse — Verwalte deine anderen Fediverse-Konten, einschließlich Senden und Empfangen von Inhalten.\n\nDiese Nachricht wurde privat von dir an dich selbst gesendet, daher war keine Verbindung nötig, um sie zu empfangen.",
|
||||
profileVisibilityTitle: "Sichtbarkeit des öffentlichen Profils",
|
||||
profileVisibilityHint: "Wähle, welche Felder andere Bewohner in deinem Profil sehen. Standardmäßig wird nur Karma angezeigt.",
|
||||
profileSensorsSectionTitle: "Sensoren",
|
||||
|
|
@ -1220,6 +1283,9 @@ module.exports = {
|
|||
eventButton: "TERMINE",
|
||||
taskButton: "AUFGABEN",
|
||||
votesButton: "ABSTIMMUNGEN",
|
||||
industryButton: "INDUSTRIE",
|
||||
projectButton: "PROJEKTE",
|
||||
shopProductButton: "PRODUKTE",
|
||||
reportButton: "BERICHTE",
|
||||
feedButton: "FEED",
|
||||
marketButton: "MARKT",
|
||||
|
|
@ -1248,7 +1314,7 @@ module.exports = {
|
|||
trendingItemStatus: "Status",
|
||||
trendingTotalVotes: "Stimmen gesamt",
|
||||
trendingTotalOpinions: "Meinungen gesamt",
|
||||
trendingNoContentMessage: "Noch keine Trendinhalte vorhanden.",
|
||||
trendingNoContentMessage: "Noch keine Trends vorhanden.",
|
||||
trendingAuthor: "Von",
|
||||
trendingCreatedAtLabel: "Erstellt am",
|
||||
trendingTotalCount: "Gesamtzahl",
|
||||
|
|
@ -1437,7 +1503,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Erstellt am",
|
||||
transfersConfirmations: "BESTÄTIGUNGEN",
|
||||
transfersContainingBlock: "Enthaltender Block",
|
||||
transfersExportContract: "Vertrag erstellen",
|
||||
transfersExportContract: "Smart Contract",
|
||||
transfersConfirmButton: "Überweisung bestätigen",
|
||||
transfersNoItems: "Keine Überweisungen gefunden.",
|
||||
transfersMineSectionTitle: "Deine Überweisungen",
|
||||
|
|
@ -1563,7 +1629,7 @@ module.exports = {
|
|||
cvDeleteButton: "Löschen",
|
||||
cvNoCV: "Kein Lebenslauf gefunden.",
|
||||
blogSubject: "Betreff",
|
||||
blogMessage: "Text auf 8096 Zeichen begrenzt.",
|
||||
blogMessage: "Nachricht",
|
||||
blogImage: "Medien hochladen (max: 50MB)",
|
||||
blogPublish: "Vorschau",
|
||||
noPopularMessages: "Noch keine beliebten Nachrichten veröffentlicht",
|
||||
|
|
@ -2201,6 +2267,7 @@ module.exports = {
|
|||
agendaFilterReports: "BERICHTE",
|
||||
agendaFilterTransfers: "ÜBERWEISUNGEN",
|
||||
agendaFilterJobs: "STELLEN",
|
||||
agendaFilterIndustry: "INDUSTRIE",
|
||||
agendaFilterProjects: "PROJEKTE",
|
||||
agendaFilterCalendars: "KALENDER",
|
||||
agendaNoItems: "Keine Zuweisungen gefunden.",
|
||||
|
|
@ -2322,16 +2389,31 @@ module.exports = {
|
|||
privateMessage: "PN",
|
||||
pmSendTitle: "Private Nachrichten",
|
||||
pmSend: "Senden!",
|
||||
pmDescription: "Verwende dieses Formular, um eine verschlüsselte Nachricht an andere Bewohner zu senden.",
|
||||
pmCancel: "Abbrechen",
|
||||
pmReset: "Zurücksetzen",
|
||||
pmSharedKeyHint: "Teile diesen Schlüssel mit dem Empfänger über einen anderen Kanal. Er wird zum Entschlüsseln benötigt.",
|
||||
pmDescription: "Verwende dieses Formular, um eine verschlüsselte Nachricht/Datei an andere Bewohner zu senden.",
|
||||
pmComposeTitle: "Nachricht senden",
|
||||
pmRecipients: "Empfänger",
|
||||
pmRecipientsHint: "Oasis-IDs durch Kommas getrennt eingeben",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "Bis zu 7 Empfänger pro Nachricht.",
|
||||
pmTextPlaceholder: "Text auf 7000 Zeichen begrenzt.",
|
||||
pmSubject: "Betreff",
|
||||
pmSubjectHint: "Nachrichtenbetreff eingeben",
|
||||
pmText: "Nachricht",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Entschlüsseln",
|
||||
fileShareTitle: "Datei teilen",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "Datei",
|
||||
fileShareDownload: "Herunterladen",
|
||||
fileShareMutualError: "Du kannst Dateien nur mit Bewohnern mit gegenseitiger Unterstützung teilen.",
|
||||
fileShareNoFile: "Keine Datei ausgewählt.",
|
||||
fileShareTooLarge: "Die Datei überschreitet die zulässige Größe.",
|
||||
fileShareFailed: "Die Datei konnte nicht vorbereitet werden.",
|
||||
fileShareSendError: "Die Datei konnte nicht gesendet werden.",
|
||||
fileShareUnavailable: "Diese Datei ist gerade nicht verfügbar. Versuche es später erneut.",
|
||||
pmCrypterBadKey: "Der geteilte Schlüssel ist falsch!",
|
||||
pmCrypterTooLong: "Die Nachricht ist zu lang, um mit dem Crypter verschlüsselt zu werden. Bitte kürze sie und versuche es erneut.",
|
||||
pmCrypterCipherLabel: "Erneut verschlüsselte Nachricht",
|
||||
|
|
@ -2352,15 +2434,27 @@ module.exports = {
|
|||
pmNoSubject: "(kein Betreff)",
|
||||
pmSubjectLabel: "Betreff:",
|
||||
pmBodyLabel: "Inhalt",
|
||||
pmBotJobs: "42-StellenBOT",
|
||||
pmBotProjects: "42-ProjekteBOT",
|
||||
pmBotMarket: "42-MarktBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "Das regierende Haus des L.A.R.P hat gewechselt.",
|
||||
politicalBotParliamentTitle: "Im Parlament hat ein neuer Regierungszyklus begonnen.",
|
||||
politicalBotTribeTitle: "In einem deiner Stämme hat ein neuer Regierungszyklus begonnen.",
|
||||
politicalBotLarpIntro: "Jetzt regiert {house} in diesem Zyklus: {cycle}",
|
||||
politicalBotParliamentIntro: "Die aktuelle Regierung ist {gov}",
|
||||
politicalBotParliamentIntroLeader: "Die aktuelle Regierung ist {gov}, ausgeübt von {leader}",
|
||||
politicalBotTribeIntro: "Die aktuelle Regierung im Stamm {tribe} ist {gov}",
|
||||
politicalBotTribeIntroLeader: "Die aktuelle Regierung im Stamm {tribe} ist {gov}, ausgeübt von {leader}",
|
||||
politicalBotLeaderLabel: "Anführer",
|
||||
inboxJobSubscribedTitle: "Neues Abonnement deines Stellenangebots",
|
||||
pmInhabitantWithId: "Bewohner mit OASIS-ID:",
|
||||
pmHasSubscribedToYourJobOffer: "hat dein Stellenangebot abonniert",
|
||||
inboxProjectCreatedTitle: "Neues Projekt erstellt",
|
||||
pmHasCreatedAProject: "hat ein Projekt erstellt",
|
||||
inboxMarketItemSoldTitle: "Artikel verkauft",
|
||||
inboxShopSoldTitle: "Produkt verkauft",
|
||||
pmYourItem: "Dein Artikel",
|
||||
pmHasBeenSoldTo: "wurde verkauft an",
|
||||
pmFor: "für",
|
||||
|
|
@ -2395,7 +2489,7 @@ module.exports = {
|
|||
visitContent: "Inhalt besuchen",
|
||||
banking: 'Bankwesen',
|
||||
bankingTitle: 'Bankwesen',
|
||||
bankingDescription: 'Den aktuellen Wert von ECOin und die entsprechende UBI-Zuweisung erkunden, die pro Epoche basierend auf Teilnahme und Vertrauen verteilt wird.',
|
||||
bankingDescription: "Die ECOin-Wirtschaft: Guthaben, Grundeinkommen, Steuern und Industriewert.",
|
||||
bankOverview: 'Übersicht',
|
||||
bankEpochs: 'Epochen',
|
||||
bankRules: 'Regeln',
|
||||
|
|
@ -2429,6 +2523,10 @@ module.exports = {
|
|||
bankEpochId: 'Epochen-ID',
|
||||
bankRuleHash: 'Regelversions-Hash',
|
||||
bankViewEpoch: 'Epoche anzeigen',
|
||||
bankYourIndustryBalance: "Dein Industrieanteil",
|
||||
bankYourUbiMonth: "Dein BGE (diesen Monat)",
|
||||
bankYourFundsMonth: "Deine Mittel (diesen Monat)",
|
||||
bankIndustryBalance: "Industrieproduktion (geschätzt)",
|
||||
bankUserBalance: 'Dein Kontostand',
|
||||
ecoWalletNotConfigured: 'ECOin Wallet nicht konfiguriert',
|
||||
editWallet: 'Geldbörse bearbeiten',
|
||||
|
|
@ -2468,7 +2566,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "KEIN GUTHABEN!",
|
||||
bankUbiAvailableOk: "VERFÜGBAR!",
|
||||
bankUbiAvailability: "UBI-Verfügbarkeit",
|
||||
bankUbiAvailability: "BGE (Netzwerk)",
|
||||
bankAlreadyClaimedThisMonth: "Diesen Monat bereits beansprucht",
|
||||
bankUbiThisMonth: "UBI (diesen Monat)",
|
||||
bankUbiLastClaimed: "UBI (zuletzt beansprucht)",
|
||||
|
|
@ -2898,6 +2996,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Tags",
|
||||
jobsTagsPlaceholder: "tag1, tag2, tag3",
|
||||
noJobsMatch: "Keine Stellen gefunden.",
|
||||
industrySearchPlaceholder: "Fabriken suchen…",
|
||||
industryAllSectors: "Alle Sektoren",
|
||||
industryVisitButton: "Industrie besuchen",
|
||||
industryAdvanceTo: "Setzen auf",
|
||||
industryAmount: "Betrag",
|
||||
industryApproveBuild: "Genehmigen",
|
||||
industryBackToFacility: "← Fabrik",
|
||||
industryBlueprint: "Blueprint",
|
||||
industryBlueprintLabel: "Industrie-Blueprint",
|
||||
industryBlueprints: "Blueprints",
|
||||
industryBuild: "Build",
|
||||
industryBuildNotes: "Notizen",
|
||||
industryBuildStart: "Startdatum",
|
||||
industryVoteUpdateButton: "Update abstimmen",
|
||||
industryVoteDeleteButton: "Löschung abstimmen",
|
||||
industryRevokeVote: "Widerrufen",
|
||||
industryTimeLeft: "Verbleibende Zeit",
|
||||
industryBuildEnd: "Enddatum",
|
||||
industryBuilds: "Builds",
|
||||
industryBuildTitle: "Titel",
|
||||
industryContribute: "Beitragen",
|
||||
industryContributeEco: "ECO beitragen",
|
||||
industryContributeLabor: "Arbeit beitragen",
|
||||
industryContributeButton: "Beitragen",
|
||||
industryContributeMaterial: "Material beitragen",
|
||||
industryContributions: "Beiträge",
|
||||
industryContributors: "Beitragende",
|
||||
industryCreateBlueprintButton: "Blueprint erstellen",
|
||||
industryDistribute: "Verteilen",
|
||||
industryDistributeButton: "Nach Anteilen verteilen",
|
||||
industryDistribution: "Verteilung",
|
||||
industryEcoAmount: "Betrag (ECO)",
|
||||
industryEcoContribHint: "ECO-Beiträge werden an den Verwalter als Treuhänder der Build-Kasse überwiesen.",
|
||||
industryEditBlueprint: "Blueprint bearbeiten",
|
||||
industryFacility: "Fabrik",
|
||||
industryKindLabel: "Art",
|
||||
industryKind_labor: "Arbeit",
|
||||
industryKind_material: "Material",
|
||||
industryKind_eco: "Mittel",
|
||||
industryLaborHours: "Arbeit (Stunden)",
|
||||
industryHours: "Stunden",
|
||||
industryLicense: "Lizenz",
|
||||
industryMaterialItem: "Material",
|
||||
industryMaterials: "Materialien",
|
||||
industryMaterialsHint: "Ein Material pro Zeile, im Format Name:Menge:Preis.",
|
||||
industryEstMaterials: "Gesamtmaterialien",
|
||||
industryEstLabor: "Gesamtarbeit",
|
||||
industryEstTaxes: "Steuern",
|
||||
industryEstTotal: "Geschätzter Preis",
|
||||
industryBuildingPrice: "Baupreis",
|
||||
industryFinalPrice: "Endpreis",
|
||||
industryBlueprintDescPlaceholder: "Spezifikationen, Abmessungen, Gewicht, Doku…",
|
||||
industryMaterialValue: "Wert (ECO)",
|
||||
industryMember: "Mitglied",
|
||||
industryNewBlueprint: "Neuer Blueprint",
|
||||
industryNewBuild: "Build vorschlagen",
|
||||
industryEditBuild: "Produktion bearbeiten",
|
||||
industryNoBlueprint: "— keiner —",
|
||||
industryNeedBlueprint: "Erstelle zuerst einen Bauplan: jede Produktion fertigt einen.",
|
||||
industryNoBlueprints: "Noch keine Blueprints.",
|
||||
industryNoBuilds: "Noch keine Builds.",
|
||||
industryNote: "Notiz",
|
||||
industryOutput: "Ausgabe",
|
||||
industryOutputItem: "Produktname",
|
||||
industryOutputKind: "Produkttyp",
|
||||
industryOutputQty: "Einheiten pro Produktion",
|
||||
industryOutputUnit: "Maßeinheit",
|
||||
industryOutputValue: "Ausgabewert (ECO, z. B. aus Verkauf)",
|
||||
industryPayout: "Auszahlung",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Stelle erstellen",
|
||||
industryPot: "Topf",
|
||||
industryProposeBuildButton: "Build vorschlagen",
|
||||
industryProposer: "Vorschlagender",
|
||||
industryAuthor: "Autor",
|
||||
industrySellOnMarket: "An den Markt senden",
|
||||
industrySendToProjects: "Projekt erstellen",
|
||||
industryShare: "Anteil",
|
||||
industryShares: "Anteile",
|
||||
industrySkills: "Fähigkeiten",
|
||||
industryTreasury: "Kasse",
|
||||
industryKind_physical: "Physisch",
|
||||
industryKind_digital: "Digital",
|
||||
industryBuildStatus_PROPOSED: "VORGESCHLAGEN",
|
||||
industryBuildStatus_REJECTED: "ABGELEHNT",
|
||||
industryBuildStatus_APPROVED: "GENEHMIGT",
|
||||
industryBuildStatus_STOCKING: "BESTÜCKUNG",
|
||||
industryBuildStatus_IN_PRODUCTION: "IN PRODUKTION",
|
||||
industryBuildStatus_COMPLETED: "ABGESCHLOSSEN",
|
||||
industryBuildStatus_FAILED: "FEHLGESCHLAGEN",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "Du wurdest in eine Fabrik aufgenommen.",
|
||||
industryBotApplicationTitle: "Neuer Mitgliedsantrag in deiner Fabrik.",
|
||||
industryBotInvitedTitle: "Du wurdest in eine Fabrik eingeladen.",
|
||||
industryBotDissolvedTitle: "Eine Fabrik, der du angehörst, wurde aufgelöst.",
|
||||
industryBotBuildApprovedTitle: "Ein Build wurde genehmigt.",
|
||||
industryBotDistributedTitle: "Ein Build-Output wurde verteilt.",
|
||||
industryFilterRules: "REGELN",
|
||||
industryRulesTitle: "Regeln",
|
||||
industryRulesIntro: "Industry lässt die Bewohner die Produktionsmittel gemeinschaftlich besitzen: Eine Fabrik ist eine netzwerkeigene Werkstatt, die niemand privat besitzt.",
|
||||
industryRulesSteward: "Der Gründer ist der Verwalter — ein Treuhänder, kein Eigentümer: Er kann die Fabrik nicht allein verkaufen, privatisieren oder auflösen.",
|
||||
industryRulesMembership: "Die Mitgliedschaftsrichtlinie legt fest, wie man beitritt: Offen (sofort), Per Abstimmung (durch die Stimme der Mitglieder) oder Nur mit Einladung (ein Mitglied muss zuerst einladen).",
|
||||
industryRulesQuorum: "Das Quorum ist die Mindestzahl an Mitgliedern, die abstimmen müssen, damit eine Entscheidung zählt, damit eine kleine Fabrik nicht von einer Person entschieden wird.",
|
||||
industryRulesMajority: "Die Mehrheit ist der Stimmenanteil zum Bestehen (0,5 = Hälfte, 1 = Einstimmigkeit); eine Entscheidung besteht, wenn die JA-Stimmen mindestens max(Quorum, Mitglieder × Mehrheit) erreichen.",
|
||||
industryRulesDecisions: "Mitglieder stimmen über Aufnahme, Genehmigung von Builds und Auflösung der Fabrik ab; der Verwalter kann diese kollektiven Entscheidungen nicht übergehen.",
|
||||
industryRulesBlueprints: "Blueprints sind freie (Copyleft-)Rezepte — die Eingaben (Materialien, Arbeitsstunden, Fähigkeiten) und die Ausgabe (ein physisches oder digitales Gut) — und jeder kann sie forken.",
|
||||
industryRulesBuilds: "Ein Build ist ein Produktionsauftrag: VORGESCHLAGEN → GENEHMIGT (per Abstimmung) → BESTÜCKUNG → IN PRODUKTION → ABGESCHLOSSEN, und er nimmt Beiträge erst nach Genehmigung an.",
|
||||
industryRulesContributions: "Mitglieder tragen Arbeit (Stunden), Material (deklarierter ECO-Wert) oder ECO zu einem Build bei; jeder Beitrag bringt Karma.",
|
||||
industryRulesLaborRate: "Der Arbeitssatz ist der ECO-Wert einer Arbeitsstunde in dieser Fabrik; er wandelt Stunden in Karma um, damit Aufwand und Kapital fair vergleichbar sind: Karma = Stunden × Satz + Materialwert + ECO.",
|
||||
industryRulesShares: "Dein Anteil an einem Build ist dein Karma ÷ Gesamt-Karma und bestimmt, wie viel des Ausgabewerts du erhältst.",
|
||||
industryRulesDistribution: "Wenn eine Produktion abgeschlossen ist, verteilt der Steward den Topf (die Mittel der Produktion plus Verkaufswert) anteilig an die Beitragenden.",
|
||||
industryRulesTreasury: "ECO-Beiträge hält der Verwalter als Treuhänder der Build-Kasse bis zur Verteilung; alle Bewegungen werden im Netzwerk aufgezeichnet und Streitfälle können an die Courts gehen.",
|
||||
industryJobs: "Stellen",
|
||||
industryNoJobs: "Noch keine Stellen.",
|
||||
industryCreatePosition: "Stelle erstellen",
|
||||
industryViewCV: "Lebenslauf",
|
||||
industryReportButton: "Melden",
|
||||
industryCreateTask: "Aufgabe erstellen",
|
||||
industryOpenDispute: "Streit eröffnen",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "z. B. Stück, kg, Lizenz",
|
||||
industryOutputItemPlaceholder: "z. B. Roboter",
|
||||
industryOutputQtyPlaceholder: "z. B. 5",
|
||||
industrySkillsPlaceholder: "z. B. Löten, Netzwerke, Solar-Installation",
|
||||
industryCreateInvite: "Einladung generieren",
|
||||
industryPauseVotes: "Status-Stimmen",
|
||||
industryTitle: "Industrie",
|
||||
industryDescription: "Modul zur gemeinschaftlichen Verwaltung der Produktionsmittel.",
|
||||
industryLabel: "Industrie",
|
||||
typeIndustryBuild: "BUILD",
|
||||
typeIndustryBlueprint: "BLUEPRINT",
|
||||
typeIndustryAllocation: "VERTEILUNG",
|
||||
typeIndustry: "INDUSTRIE",
|
||||
modulesIndustryLabel: "Industrie",
|
||||
modulesIndustryDescription: "Modul zur gemeinschaftlichen Verwaltung der Produktionsmittel.",
|
||||
industryFilterAll: "ALLE",
|
||||
industryFilterMember: "MITGLIED",
|
||||
industryFilterBlueprints: "BAUPLÄNE",
|
||||
industryFilterBuilds: "PRODUKTIONEN",
|
||||
industryFilterMine: "MEINE",
|
||||
industryFilterActive: "IN BETRIEB",
|
||||
industryFilterPaused: "PAUSIERT",
|
||||
industryFilterDissolved: "AUFGELÖST",
|
||||
industryAllTitle: "Industrie",
|
||||
industryMemberTitle: "Fabriken, in denen ich bin",
|
||||
industryMineTitle: "Meine Fabriken",
|
||||
industryActiveTitle: "In Betrieb",
|
||||
industryPausedTitle: "Pausierte Fabriken",
|
||||
industryDissolvedTitle: "Aufgelöste Fabriken",
|
||||
industryNoFacilitiesFound: "Keine Fabriken gefunden.",
|
||||
industryCreateFacility: "Fabrik erstellen",
|
||||
industryMembers: "Mitglieder",
|
||||
industryMemberBadge: "MITGLIED",
|
||||
industryName: "Name",
|
||||
industryNamePlaceholder: "Name der Fabrik",
|
||||
industryDescriptionLabel: "Beschreibung",
|
||||
industryDescriptionPlaceholder: "Was produziert diese Fabrik?",
|
||||
industrySector: "Sektor",
|
||||
industryMembershipPolicy: "Mitgliedschaftsrichtlinie",
|
||||
industryQuorum: "Quorum",
|
||||
industryMajority: "Mehrheit",
|
||||
industryLaborRate: "Arbeitssatz",
|
||||
industryCreateButton: "Fabrik erstellen",
|
||||
industryUpdateButton: "Aktualisieren",
|
||||
industrySteward: "Verwalter",
|
||||
industryStatusActive: "IN BETRIEB",
|
||||
industryStatusPaused: "PAUSIERT",
|
||||
industryStatusDissolved: "AUFGELÖST",
|
||||
industryStatusLabel: "Status",
|
||||
industryJoinButton: "Beitreten",
|
||||
industryApplyButton: "Beitritt beantragen",
|
||||
industryLeaveButton: "Verlassen",
|
||||
industryInviteButton: "Einladen",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "Du brauchst eine Einladung, um beizutreten.",
|
||||
industryPauseButton: "Für Pause stimmen",
|
||||
industryResumeButton: "Für Fortsetzung stimmen",
|
||||
industryEditButton: "Bearbeiten",
|
||||
industryDeleteButton: "Löschen",
|
||||
industryBackToList: "← Industrie",
|
||||
industryPendingApplicants: "Ausstehende Bewerber",
|
||||
industryVotesYes: "ja",
|
||||
industryVotesNo: "nein",
|
||||
industryAlreadyVoted: "abgestimmt",
|
||||
industryAdmit: "Zulassen",
|
||||
industryReject: "Ablehnen",
|
||||
industryDissolveTitle: "Fabrik auflösen",
|
||||
industryDissolveHint: "Die Auflösung erfordert eine gemeinschaftliche Abstimmung; der Verwalter kann sie nicht allein auflösen.",
|
||||
industryDissolveVote: "Für Auflösung stimmen",
|
||||
industrySector_software: "Software",
|
||||
industrySector_hardware: "Hardware",
|
||||
industrySector_agriculture: "Landwirtschaft",
|
||||
industrySector_textile: "Textil",
|
||||
industrySector_energy: "Energie",
|
||||
industrySector_food: "Lebensmittel",
|
||||
industrySector_construction: "Bau",
|
||||
industrySector_media: "Medien",
|
||||
industrySector_services: "Dienstleistungen",
|
||||
industrySector_other: "Andere",
|
||||
industryPolicy_open: "Offen",
|
||||
industryPolicy_vote: "Per Abstimmung",
|
||||
industryPolicy_invite: "Nur mit Einladung",
|
||||
projectsTitle: "Projekte",
|
||||
projectsDescription: "Gemeinschaftsprojekte in deinem Netzwerk erstellen, finanzieren und verfolgen.",
|
||||
projectCreateProject: "Projekt erstellen",
|
||||
|
|
@ -3304,6 +3604,8 @@ module.exports = {
|
|||
chatOpenTitle: "Offene Chats",
|
||||
chatClosedTitle: "Geschlossene Chats",
|
||||
chatDescription: "Beschreibung",
|
||||
chatMessageReply: "Antwort",
|
||||
chatMessageLabel: "Nachricht",
|
||||
chatCategory: "Kategorie",
|
||||
chatStatus: "STATUS",
|
||||
chatFilterAll: "ALLE",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
en: {
|
||||
bbAdd: "Add",
|
||||
bbQuickActions: "Quick actions",
|
||||
bbPickTitle: "Pin a module",
|
||||
bbPickDesc: "Choose a module for the + slot in the bottom bar.",
|
||||
bbPickNone: "None",
|
||||
bbManage: "Edit",
|
||||
bbYourBar: "Your bar",
|
||||
bbRemove: "Remove",
|
||||
bbFull: "Maximum reached",
|
||||
bbDone: "Done",
|
||||
activityChangeFilter: "Change filter",
|
||||
emptyConnectHint: "Connect to a pub to sync with the network.",
|
||||
emptyConnectCta: "Connect to a pub",
|
||||
menuCommunity: "Community",
|
||||
activityGroupCommunity: "Community & Governance",
|
||||
activityGroupOrg: "Organization",
|
||||
activityGroupComm: "Communication",
|
||||
activityGroupEconomy: "Economy",
|
||||
activityGroupMedia: "Content & Media",
|
||||
activityGroupOther: "Others",
|
||||
languageName: "English",
|
||||
shopOrderStatusPaid: "Payment received",
|
||||
shopOrderStatusReceived: "Received",
|
||||
|
|
@ -441,7 +421,8 @@ module.exports = {
|
|||
publish: "Write",
|
||||
contentWarningPlaceholder: "Add a subject to the post (optional)",
|
||||
privateWarningPlaceholder: "Add inhabitants to send a private post (optional)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Body capped at 7000 characters.",
|
||||
publishTooLong: "Your post is too long. Please shorten it.",
|
||||
publishCustomDescription: [
|
||||
"REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
|
||||
],
|
||||
|
|
@ -512,14 +493,96 @@ module.exports = {
|
|||
passwordLengthInfo: "Password must be at least 32 characters long.",
|
||||
passwordImport: "Write your password to decrypt data that will be saved at your system home (name: secret)",
|
||||
exportPasswordPlaceholder: "Use lowercase, uppercase, numbers & symbols",
|
||||
fileInfo: "Your encrypted secret key will be saved at your system home (name: oasis.enc)",
|
||||
fileInfo: "Your encrypted secret key will be downloaded to your device (name: oasis.enc)",
|
||||
developer: "Developer",
|
||||
devTitle: "Developer",
|
||||
welcomeBannerText: "Welcome to OASIS. Follow these quick steps to set up your avatar.",
|
||||
welcomeBannerAction: "Start wizard!",
|
||||
welcomeTitle: "Welcome",
|
||||
welcomeStepGreetingAction: "Send Feed",
|
||||
welcomeJoinPubButton: "Join Pub",
|
||||
welcomeStepLarpAction: "Join \"The Academy\"",
|
||||
welcomeStepLarpText: "Join our live action role playing game.",
|
||||
welcomeStepLarpTitle: "Join L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "Send a \"Hello world!\"",
|
||||
welcomeStepGreetingText: "Send a message so other inhabitants can discover you.",
|
||||
welcomeJoinPub: "Join",
|
||||
welcomeDescription: "A few things worth doing before you start.",
|
||||
welcomeProgress: "Completed",
|
||||
welcomeStepDone: "done",
|
||||
welcomeStepPending: "pending",
|
||||
welcomeSkip: "Skip for now",
|
||||
welcomeStepLanguageTitle: "Choose your language",
|
||||
welcomeStepLanguageText: "Oasis speaks different languages. You can change it whenever you want.",
|
||||
welcomeStepProfileTitle: "Edit your profile",
|
||||
welcomeStepProfileText: "Pick a name, add a description and set a picture so other inhabitants can recognise you.",
|
||||
welcomeStepProfileAction: "Save Profile",
|
||||
welcomeStepFederationTitle: "Join Main Network",
|
||||
welcomeStepFederationText: "Connect to our pub to meet other inhabitants and start replicating.",
|
||||
welcomeStepFederationAction: "Go to invites",
|
||||
welcomeStepBackupTitle: "Backup your ID",
|
||||
welcomeStepBackupText: "Your identity is a key file on this device.",
|
||||
welcomeStepBackupWarning: "IF YOU LOSE IT, NOBODY CAN RECOVER IT FOR YOU.",
|
||||
welcomeStepBackupAction: "Backup!",
|
||||
welcomeCompleteTitle: "All set.",
|
||||
welcomeCompleteText: "Your node is ready. From here the network grows with the people you follow.",
|
||||
welcomeFindPeople: "Find inhabitants",
|
||||
devFilterFiles: "FILES",
|
||||
devFilterSearch: "SEARCH",
|
||||
devFilterModules: "MODULES",
|
||||
devFilterTranslations: "TRANSLATIONS",
|
||||
devFilterStyles: "STYLES",
|
||||
devFilterTests: "TESTS",
|
||||
devVersion: "Version",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Test suites",
|
||||
devParentFolder: "Parent folder",
|
||||
devOpenFolder: "open",
|
||||
devDescription: "Explore the source code running on this node.",
|
||||
devTreeTitle: "Files",
|
||||
devSearchTitle: "Search code",
|
||||
devMapTitle: "Modules",
|
||||
devRoot: "root",
|
||||
devRootButton: "ROOT",
|
||||
devSearchPlaceholder: "Text to find in the code",
|
||||
devAnyExtension: "Any file",
|
||||
devSearchButton: "Search",
|
||||
devStatsFiles: "Files",
|
||||
devStatsLines: "Lines",
|
||||
devStatsModules: "Modules",
|
||||
devStatsLanguages: "Languages",
|
||||
devNotViewable: "not viewable",
|
||||
devEmptyFolder: "This folder is empty.",
|
||||
devSize: "Size",
|
||||
devShowing: "Showing",
|
||||
devLine: "line",
|
||||
devReportBug: "Report Bug",
|
||||
devCreateTask: "Create Task",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Found while reading the Oasis source code",
|
||||
devTaskPrefix: "Review",
|
||||
devPrevPage: "Previous lines",
|
||||
devNextPage: "Next lines",
|
||||
devMatches: "matches",
|
||||
devFilesScanned: "files scanned",
|
||||
devNoResults: "No matches, yet.",
|
||||
devColModule: "Module",
|
||||
devColState: "State",
|
||||
devColModel: "Model",
|
||||
devColView: "View",
|
||||
devColRoutes: "Routes",
|
||||
devColTests: "Tests",
|
||||
devOn: "on",
|
||||
devOff: "off",
|
||||
modulesDevLabel: "Developer",
|
||||
modulesDevDescription: "Module to manage the Oasis source code.",
|
||||
themeIntro:
|
||||
"Choose a theme.",
|
||||
setTheme: "Set theme",
|
||||
language: "Language",
|
||||
languageDescription:
|
||||
"If you'd like to use another language, select it here.",
|
||||
setLanguage: "Set language",
|
||||
setLanguage: "Set Language",
|
||||
peerConnections: "Peers",
|
||||
peerConnectionsIntro: "Manage all your connections with other peers.",
|
||||
peerConnectionsTitle: "Connections",
|
||||
|
|
@ -714,7 +777,7 @@ module.exports = {
|
|||
spreadLabel: "Spread",
|
||||
spreadHint: "Spread this to your supporters (replicates via your feed).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Welcome to Oasis — a libre, peer-to-peer, federated and encrypted social network with a distributed invite-only architecture.\n\nSome interesting places to start:\n\n- /profile — Edit your avatar, name, description and which modules appear on your public side.\n- /settings — Tune your local instance: language, theme, modules, privacy and sync.\n- /invites — Add a pub to federate with the wider network.\n- /peers — See who is connected, rescan your LAN, export or import peer lists.\n- /inhabitants — Discover and visit other people's avatars.\n- /tribes — Create or join private groups with end-to-end encryption.\n- /inbox — Read and send private messages.\n- /banking — See your ECO balance, UBI, ECO tax and the wealth-redistribution rules.\n- /activity — See recent activity, yours and your network's.\n- /publish — Write a post or share an image, audio, video or document.\n\nSome interesting places to connect:\n\n- /fediverse — Manage your other fediverse accounts, including sending and receiving content.\n\nThis message was sent privately from you to yourself, so no connection was required to receive it.",
|
||||
welcomePmBody: "Welcome to Oasis — a libre, peer-to-peer, federated and encrypted social network with a distributed invite-only architecture.\n\nSome interesting places to start:\n\n- /profile — Edit your avatar, name, description and which modules appear on your public side.\n- /settings — Tune your local instance: language, theme, modules, privacy and sync.\n- /invites — Add a pub to federate with the wider network.\n- /peers — See who is connected, rescan your LAN, export or import peer lists.\n- /inhabitants — Discover and visit other people's avatars.\n- /tribes — Create or join private groups with end-to-end encryption.\n- /inbox — Read and send private messages.\n- /banking — See your ECO balance, UBI, ECO tax and the wealth-redistribution rules.\n- /activity — See recent activity, yours and your network's.\n- /publish — Write a post or share an image, audio, video or document.\n- /search — Search the network's content by type.\n\nSome interesting places to connect:\n\n- /fediverse — Manage your other fediverse accounts, including sending and receiving content.\n\nThis message was sent privately from you to yourself, so no connection was required to receive it.",
|
||||
indexingTitle: "Synchronizing",
|
||||
indexingMessage: "Oasis is trying to syncronize a huge network of inhabitants. Just wait!",
|
||||
indexingRefreshNote: "This page refreshes every 10 seconds.",
|
||||
|
|
@ -1000,7 +1063,7 @@ module.exports = {
|
|||
bankTaxesExample: "Example",
|
||||
bankTaxesUserNoteOtherParams: "ECO Tax is currently derived from the carbon footprint of each block, but it may incorporate other parameters over time — energy spent on replication, redundant storage across peers, blob bandwidth, computational cost of decryption, mining footprint of associated transactions, or any other measurable load the network agrees to value.",
|
||||
bankTaxesUserAmount: "Your ECO tax (price to return)",
|
||||
bankOverviewYourTaxes: "Your taxes",
|
||||
bankOverviewYourTaxes: "Your Taxes",
|
||||
bankTaxesTotalBlocks: "Total blocks",
|
||||
bankTaxesTotalBytes: "Total bytes",
|
||||
bankTaxesTotalCarbon: "Total carbon",
|
||||
|
|
@ -1351,6 +1414,9 @@ module.exports = {
|
|||
eventButton: "EVENTS",
|
||||
taskButton: "TASKS",
|
||||
votesButton: "VOTATIONS",
|
||||
industryButton: "INDUSTRY",
|
||||
projectButton: "PROJECTS",
|
||||
shopProductButton: "PRODUCTS",
|
||||
reportButton: "REPORTS",
|
||||
feedButton: "FEED",
|
||||
marketButton: "MARKET",
|
||||
|
|
@ -1379,7 +1445,7 @@ module.exports = {
|
|||
trendingItemStatus: "Item Status",
|
||||
trendingTotalVotes: "Total Votes",
|
||||
trendingTotalOpinions: "Total Opinions",
|
||||
trendingNoContentMessage: "No trending content available, yet.",
|
||||
trendingNoContentMessage: "No trending available, yet.",
|
||||
trendingAuthor: "By",
|
||||
trendingCreatedAtLabel: "Created At",
|
||||
trendingTotalCount: "Total Count",
|
||||
|
|
@ -1568,7 +1634,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Created At",
|
||||
transfersConfirmations: "CONFIRMATIONS",
|
||||
transfersContainingBlock: "Containing block",
|
||||
transfersExportContract: "Create Contract",
|
||||
transfersExportContract: "Smart Contract",
|
||||
transfersConfirmButton: "Confirm Transfer",
|
||||
transfersNoItems: "No transfers found.",
|
||||
transfersMineSectionTitle: "Your Transfers",
|
||||
|
|
@ -1694,7 +1760,7 @@ module.exports = {
|
|||
cvDeleteButton: "Delete",
|
||||
cvNoCV: "No CV found.",
|
||||
blogSubject: "Subject",
|
||||
blogMessage: "Body capped at 8096 characters.",
|
||||
blogMessage: "Message",
|
||||
blogImage: "Upload media (max-size: 50MB)",
|
||||
blogPublish: "Preview",
|
||||
noPopularMessages: "No popular messages published, yet",
|
||||
|
|
@ -2487,6 +2553,7 @@ module.exports = {
|
|||
agendaFilterReports: "REPORTS",
|
||||
agendaFilterTransfers: "TRANSFERS",
|
||||
agendaFilterJobs: "JOBS",
|
||||
agendaFilterIndustry: "INDUSTRY",
|
||||
agendaFilterProjects: "PROJECTS",
|
||||
agendaFilterCalendars: "CALENDARS",
|
||||
agendaNoItems: "No assignments found.",
|
||||
|
|
@ -2608,16 +2675,31 @@ module.exports = {
|
|||
privateMessage: "PM",
|
||||
pmSendTitle: "Private Messages",
|
||||
pmSend: "Send!",
|
||||
pmDescription: "Use this form to send an encrypted message to other inhabitants.",
|
||||
pmCancel: "Cancel",
|
||||
pmReset: "Reset",
|
||||
pmSharedKeyHint: "Share this key with the recipient out of band. It is required to decrypt.",
|
||||
pmDescription: "Use this form to send an encrypted message/file to other inhabitants.",
|
||||
pmComposeTitle: "Send a message",
|
||||
pmRecipients: "Recipients",
|
||||
pmRecipientsHint: "Enter Oasis IDs separated by commas",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "Up to 7 recipients per message.",
|
||||
pmTextPlaceholder: "Body capped at 7000 characters.",
|
||||
pmSubject: "Subject",
|
||||
pmSubjectHint: "Enter the message subject",
|
||||
pmText: "Message",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Decrypt",
|
||||
fileShareTitle: "Share a file",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "File",
|
||||
fileShareDownload: "Download",
|
||||
fileShareMutualError: "You can only share files with inhabitants with mutual support.",
|
||||
fileShareNoFile: "No file selected.",
|
||||
fileShareTooLarge: "The file exceeds the allowed size.",
|
||||
fileShareFailed: "Could not prepare the file.",
|
||||
fileShareSendError: "Could not send the file.",
|
||||
fileShareUnavailable: "This file is not available right now. Try again later.",
|
||||
pmCrypterBadKey: "Your shared key is incorrect!",
|
||||
pmCrypterTooLong: "The message is too long to encrypt with the Crypter. Please shorten it and try again.",
|
||||
pmCrypterCipherLabel: "Re-encrypted message",
|
||||
|
|
@ -2638,15 +2720,27 @@ module.exports = {
|
|||
pmNoSubject: "(no subject)",
|
||||
pmSubjectLabel: "Subject:",
|
||||
pmBodyLabel: "Body",
|
||||
pmBotJobs: "42-JobsBOT",
|
||||
pmBotProjects: "42-ProjectsBOT",
|
||||
pmBotMarket: "42-MarketBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "The ruling house of the L.A.R.P has changed.",
|
||||
politicalBotParliamentTitle: "A new government cycle has begun in the Parliament.",
|
||||
politicalBotTribeTitle: "A new government cycle has begun in one of your Tribes.",
|
||||
politicalBotLarpIntro: "Now {house} rules during this cycle: {cycle}",
|
||||
politicalBotParliamentIntro: "The current government is {gov}",
|
||||
politicalBotParliamentIntroLeader: "The current government is {gov}, led by {leader}",
|
||||
politicalBotTribeIntro: "The current government in the Tribe {tribe} is {gov}",
|
||||
politicalBotTribeIntroLeader: "The current government in the Tribe {tribe} is {gov}, led by {leader}",
|
||||
politicalBotLeaderLabel: "Leader",
|
||||
inboxJobSubscribedTitle: "New subscription to your job offer",
|
||||
pmInhabitantWithId: "Inhabitant with OASIS ID:",
|
||||
pmHasSubscribedToYourJobOffer: "has subscribed to your job offer",
|
||||
inboxProjectCreatedTitle: "New project created",
|
||||
pmHasCreatedAProject: "has created a project",
|
||||
inboxMarketItemSoldTitle: "Item Sold",
|
||||
inboxShopSoldTitle: "Product Sold",
|
||||
pmYourItem: "Your item",
|
||||
pmHasBeenSoldTo: "has been sold to",
|
||||
pmFor: "for",
|
||||
|
|
@ -2681,7 +2775,7 @@ module.exports = {
|
|||
visitContent: "Visit Content",
|
||||
banking: 'Banking',
|
||||
bankingTitle: 'Banking',
|
||||
bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.',
|
||||
bankingDescription: "The ECOin economy: balance, UBI, taxes and industry value.",
|
||||
bankOverview: 'Overview',
|
||||
bankEpochs: 'Epochs',
|
||||
bankRules: 'Rules',
|
||||
|
|
@ -2715,6 +2809,10 @@ module.exports = {
|
|||
bankEpochId: 'Epoch ID',
|
||||
bankRuleHash: 'Rules Snapshot Hash',
|
||||
bankViewEpoch: 'View Epoch',
|
||||
bankYourIndustryBalance: "Your Industry Share",
|
||||
bankYourUbiMonth: "Your UBI (this month)",
|
||||
bankYourFundsMonth: "Your Funds (this month)",
|
||||
bankIndustryBalance: "Industry Production (estimated)",
|
||||
bankUserBalance: 'Your Balance',
|
||||
ecoWalletNotConfigured: 'ECOin Wallet not configured',
|
||||
editWallet: 'Edit wallet',
|
||||
|
|
@ -2754,7 +2852,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "NO FUNDS!",
|
||||
bankUbiAvailableOk: "AVAILABLE!",
|
||||
bankUbiAvailability: "UBI availability",
|
||||
bankUbiAvailability: "UBI (network)",
|
||||
bankAlreadyClaimedThisMonth: "Already claimed this month",
|
||||
bankUbiThisMonth: "UBI (this month)",
|
||||
bankUbiLastClaimed: "UBI (last claimed)",
|
||||
|
|
@ -3184,6 +3282,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Tags",
|
||||
jobsTagsPlaceholder: "tag1, tag2, tag3",
|
||||
noJobsMatch: "No jobs match your search.",
|
||||
industrySearchPlaceholder: "Search facilities…",
|
||||
industryAllSectors: "All sectors",
|
||||
industryVisitButton: "Visit Industry",
|
||||
industryAdvanceTo: "Set to",
|
||||
industryAmount: "Amount",
|
||||
industryApproveBuild: "Approve",
|
||||
industryBackToFacility: "← Facility",
|
||||
industryBlueprint: "Blueprint",
|
||||
industryBlueprintLabel: "Industry Blueprint",
|
||||
industryBlueprints: "Blueprints",
|
||||
industryBuild: "Build",
|
||||
industryBuildNotes: "Notes",
|
||||
industryBuildStart: "Start date",
|
||||
industryVoteUpdateButton: "Vote update",
|
||||
industryVoteDeleteButton: "Vote delete",
|
||||
industryRevokeVote: "Revoke",
|
||||
industryTimeLeft: "Time left",
|
||||
industryBuildEnd: "End date",
|
||||
industryBuilds: "Builds",
|
||||
industryBuildTitle: "Title",
|
||||
industryContribute: "Contribute",
|
||||
industryContributeEco: "Contribute ECO",
|
||||
industryContributeLabor: "Contribute labor",
|
||||
industryContributeButton: "Contribute",
|
||||
industryContributeMaterial: "Contribute material",
|
||||
industryContributions: "Contributions",
|
||||
industryContributors: "contributors",
|
||||
industryCreateBlueprintButton: "Create Blueprint",
|
||||
industryDistribute: "Distribute",
|
||||
industryDistributeButton: "Distribute by Shares",
|
||||
industryDistribution: "Distribution",
|
||||
industryEcoAmount: "Amount (ECO)",
|
||||
industryEcoContribHint: "ECO contributions are transferred to the steward as the build's treasury custodian.",
|
||||
industryEditBlueprint: "Edit Blueprint",
|
||||
industryFacility: "Facility",
|
||||
industryKindLabel: "Kind",
|
||||
industryKind_labor: "Labor",
|
||||
industryKind_material: "Material",
|
||||
industryKind_eco: "Funds",
|
||||
industryLaborHours: "Labor (hours)",
|
||||
industryHours: "Hours",
|
||||
industryLicense: "License",
|
||||
industryMaterialItem: "Material",
|
||||
industryMaterials: "Materials",
|
||||
industryMaterialsHint: "One material per line, written as name:quantity:price.",
|
||||
industryEstMaterials: "Total Materials",
|
||||
industryEstLabor: "Total Labor",
|
||||
industryEstTaxes: "Taxes",
|
||||
industryEstTotal: "Estimated price",
|
||||
industryBuildingPrice: "Building price",
|
||||
industryFinalPrice: "Final price",
|
||||
industryBlueprintDescPlaceholder: "Specs, dimensions, weight, docs…",
|
||||
industryMaterialValue: "Value (ECO)",
|
||||
industryMember: "Member",
|
||||
industryNewBlueprint: "New Blueprint",
|
||||
industryNewBuild: "Propose a Build",
|
||||
industryEditBuild: "Edit build",
|
||||
industryNoBlueprint: "— none —",
|
||||
industryNeedBlueprint: "Create a blueprint first: every build produces one.",
|
||||
industryNoBlueprints: "No blueprints yet.",
|
||||
industryNoBuilds: "No builds yet.",
|
||||
industryNote: "Note",
|
||||
industryOutput: "Output",
|
||||
industryOutputItem: "Product name",
|
||||
industryOutputKind: "Product type",
|
||||
industryOutputQty: "Units per build",
|
||||
industryOutputUnit: "Unit of measure",
|
||||
industryOutputValue: "Output value (ECO, e.g. from sale)",
|
||||
industryPayout: "Payout",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Create Job",
|
||||
industryPot: "Pot",
|
||||
industryProposeBuildButton: "Propose Build",
|
||||
industryProposer: "Proposer",
|
||||
industryAuthor: "Author",
|
||||
industrySellOnMarket: "Send to Market",
|
||||
industrySendToProjects: "Create Project",
|
||||
industryShare: "Share",
|
||||
industryShares: "Shares",
|
||||
industrySkills: "Skills",
|
||||
industryTreasury: "Treasury",
|
||||
industryKind_physical: "Physical",
|
||||
industryKind_digital: "Digital",
|
||||
industryBuildStatus_PROPOSED: "PROPOSED",
|
||||
industryBuildStatus_REJECTED: "REJECTED",
|
||||
industryBuildStatus_APPROVED: "APPROVED",
|
||||
industryBuildStatus_STOCKING: "STOCKING",
|
||||
industryBuildStatus_IN_PRODUCTION: "IN PRODUCTION",
|
||||
industryBuildStatus_COMPLETED: "COMPLETED",
|
||||
industryBuildStatus_FAILED: "FAILED",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "You have been admitted to a facility.",
|
||||
industryBotApplicationTitle: "New membership application in your facility.",
|
||||
industryBotInvitedTitle: "You have been invited to a facility.",
|
||||
industryBotDissolvedTitle: "A facility you belong to has been dissolved.",
|
||||
industryBotBuildApprovedTitle: "A build has been approved.",
|
||||
industryBotDistributedTitle: "A build output has been distributed.",
|
||||
industryFilterRules: "RULES",
|
||||
industryRulesTitle: "Rules",
|
||||
industryRulesIntro: "Industry lets inhabitants collectively own the means of production: a Facility is a network-owned workshop that nobody owns privately.",
|
||||
industryRulesSteward: "The founder is the steward — a caretaker, not an owner: they cannot sell, privatize or dissolve the Facility on their own.",
|
||||
industryRulesMembership: "Membership policy sets how people join: Open (join instantly), By vote (admitted by the members' vote) or Invite only (a member must invite them first).",
|
||||
industryRulesQuorum: "Quorum is the minimum number of members that must vote for a decision to count, so a small Facility isn't decided by a single person.",
|
||||
industryRulesMajority: "Majority is the fraction of votes needed to pass (0.5 = half, 1 = unanimity); a decision passes when YES votes reach at least max(quorum, members × majority).",
|
||||
industryRulesDecisions: "Members vote to admit newcomers, approve builds and dissolve the Facility; the steward cannot override these collective decisions.",
|
||||
industryRulesBlueprints: "Blueprints are libre (COPYLEFT) recipes — the inputs (materials, labor hours, skills) and the output (a physical or digital good) — and anyone can fork them.",
|
||||
industryRulesBuilds: "A Build is a production order: PROPOSED → APPROVED (by vote) → STOCKING → IN PRODUCTION → COMPLETED, and it only accepts contributions once approved.",
|
||||
industryRulesContributions: "Members contribute labor (hours), materials (declared ECO value) or ECO to a build; each contribution earns karma.",
|
||||
industryRulesLaborRate: "Labor rate is the ECO value of one work hour in this Facility; it turns hours into karma so effort and capital compare fairly: karma = hours × labor rate + material value + ECO.",
|
||||
industryRulesShares: "Your share of a build is your karma ÷ total karma, and it sets how much of the output value you receive.",
|
||||
industryRulesDistribution: "When a build is completed the steward distributes the pot (the build's funds plus any sale value) among contributors, proportional to their shares.",
|
||||
industryRulesTreasury: "ECO contributions are held by the steward as the build's treasury custodian until distribution; all movements are recorded on the network and disputes can go to Courts.",
|
||||
industryJobs: "Jobs",
|
||||
industryNoJobs: "No positions yet.",
|
||||
industryCreatePosition: "Create position",
|
||||
industryViewCV: "CV",
|
||||
industryReportButton: "Report",
|
||||
industryCreateTask: "Create Task",
|
||||
industryOpenDispute: "Open dispute",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "e.g. unit, kg, license",
|
||||
industryOutputItemPlaceholder: "e.g. robot",
|
||||
industryOutputQtyPlaceholder: "e.g. 5",
|
||||
industrySkillsPlaceholder: "e.g. soldering, networking, solar-installation",
|
||||
industryCreateInvite: "Generate invite",
|
||||
industryPauseVotes: "Status votes",
|
||||
industryTitle: "Industry",
|
||||
industryDescription: "Module to manage the means of production collectively.",
|
||||
industryLabel: "Industry",
|
||||
typeIndustryBuild: "BUILD",
|
||||
typeIndustryBlueprint: "BLUEPRINT",
|
||||
typeIndustryAllocation: "DISTRIBUTION",
|
||||
typeIndustry: "INDUSTRY",
|
||||
modulesIndustryLabel: "Industry",
|
||||
modulesIndustryDescription: "Module to manage the means of production collectively.",
|
||||
industryFilterAll: "ALL",
|
||||
industryFilterMember: "MEMBER",
|
||||
industryFilterBlueprints: "BLUEPRINTS",
|
||||
industryFilterBuilds: "BUILDS",
|
||||
industryFilterMine: "MINE",
|
||||
industryFilterActive: "WORKING",
|
||||
industryFilterPaused: "PAUSED",
|
||||
industryFilterDissolved: "DISSOLVED",
|
||||
industryAllTitle: "Industry",
|
||||
industryMemberTitle: "Facilities I'm in",
|
||||
industryMineTitle: "My facilities",
|
||||
industryActiveTitle: "Working",
|
||||
industryPausedTitle: "Paused facilities",
|
||||
industryDissolvedTitle: "Dissolved facilities",
|
||||
industryNoFacilitiesFound: "No facilities found.",
|
||||
industryCreateFacility: "Create Facility",
|
||||
industryMembers: "Members",
|
||||
industryMemberBadge: "MEMBER",
|
||||
industryName: "Name",
|
||||
industryNamePlaceholder: "Facility name",
|
||||
industryDescriptionLabel: "Description",
|
||||
industryDescriptionPlaceholder: "What does this facility produce?",
|
||||
industrySector: "Sector",
|
||||
industryMembershipPolicy: "Membership policy",
|
||||
industryQuorum: "Quorum",
|
||||
industryMajority: "Majority",
|
||||
industryLaborRate: "Labor rate",
|
||||
industryCreateButton: "Create Facility",
|
||||
industryUpdateButton: "Update",
|
||||
industrySteward: "Steward",
|
||||
industryStatusActive: "WORKING",
|
||||
industryStatusPaused: "PAUSED",
|
||||
industryStatusDissolved: "DISSOLVED",
|
||||
industryStatusLabel: "Status",
|
||||
industryJoinButton: "Join",
|
||||
industryApplyButton: "Request to join",
|
||||
industryLeaveButton: "Leave",
|
||||
industryInviteButton: "Invite",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "You need an invitation to join.",
|
||||
industryPauseButton: "Vote to pause",
|
||||
industryResumeButton: "Vote to resume",
|
||||
industryEditButton: "Edit",
|
||||
industryDeleteButton: "Delete",
|
||||
industryBackToList: "← Industry",
|
||||
industryPendingApplicants: "Pending applicants",
|
||||
industryVotesYes: "yes",
|
||||
industryVotesNo: "no",
|
||||
industryAlreadyVoted: "voted",
|
||||
industryAdmit: "Admit",
|
||||
industryReject: "Reject",
|
||||
industryDissolveTitle: "Dissolve facility",
|
||||
industryDissolveHint: "Dissolution requires a collective vote; the steward cannot dissolve alone.",
|
||||
industryDissolveVote: "Vote to dissolve",
|
||||
industrySector_software: "Software",
|
||||
industrySector_hardware: "Hardware",
|
||||
industrySector_agriculture: "Agriculture",
|
||||
industrySector_textile: "Textile",
|
||||
industrySector_energy: "Energy",
|
||||
industrySector_food: "Food",
|
||||
industrySector_construction: "Construction",
|
||||
industrySector_media: "Media",
|
||||
industrySector_services: "Services",
|
||||
industrySector_other: "Other",
|
||||
industryPolicy_open: "Open",
|
||||
industryPolicy_vote: "By vote",
|
||||
industryPolicy_invite: "Invite only",
|
||||
projectsTitle: "Projects",
|
||||
projectsDescription: "Create, fund, and follow community-driven projects in your network.",
|
||||
projectCreateProject: "Create Project",
|
||||
|
|
@ -3617,6 +3917,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "Description",
|
||||
chatMessageReply: "Reply",
|
||||
chatMessageLabel: "Message",
|
||||
chatCategory: "Category",
|
||||
chatStatus: "STATUS",
|
||||
chatFilterAll: "ALL",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
es: {
|
||||
bbAdd: "Añadir",
|
||||
bbQuickActions: "Acciones rápidas",
|
||||
bbPickTitle: "Fijar un módulo",
|
||||
bbPickDesc: "Elige un módulo para el hueco + de la barra inferior.",
|
||||
bbPickNone: "Ninguno",
|
||||
bbManage: "Editar",
|
||||
bbYourBar: "Tu barra",
|
||||
bbRemove: "Quitar",
|
||||
bbFull: "Máximo alcanzado",
|
||||
bbDone: "Hecho",
|
||||
activityChangeFilter: "Cambiar filtro",
|
||||
emptyConnectHint: "Conéctate a un pub para sincronizar con la red.",
|
||||
emptyConnectCta: "Conéctate a un pub",
|
||||
menuCommunity: "Comunidad",
|
||||
activityGroupCommunity: "Comunidad y Gobernanza",
|
||||
activityGroupOrg: "Organización",
|
||||
activityGroupComm: "Comunicación",
|
||||
activityGroupEconomy: "Economía",
|
||||
activityGroupMedia: "Contenido y Media",
|
||||
activityGroupOther: "Otros",
|
||||
languageName: "Castellano",
|
||||
shopOrderStatusPaid: "Pago recibido",
|
||||
shopOrderStatusReceived: "Recibido",
|
||||
|
|
@ -419,7 +399,8 @@ module.exports = {
|
|||
publish: "Publicar",
|
||||
contentWarningPlaceholder: "Añade un título a tu post (opcional)",
|
||||
privateWarningPlaceholder: "Añade habitantes para enviar un post privado (opcional)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Cuerpo limitado a 7000 caracteres.",
|
||||
publishTooLong: "Tu publicación es demasiado larga. Acórtala, por favor.",
|
||||
publishCustomDescription: [
|
||||
"RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
|
||||
],
|
||||
|
|
@ -484,7 +465,89 @@ module.exports = {
|
|||
passwordLengthInfo: "La contraseña debe tener mínimo 32 caracteres de longitud.",
|
||||
passwordImport: "Escribe tu contraseña para descifrar los datos que serán guardados en tu sistema (nombre: secret)",
|
||||
exportPasswordPlaceholder: "Utiliza minúsculas, mayúsculas, números y símbolos",
|
||||
fileInfo: "Tu secreto cifrado será guardado en tu sistema (nombre: oasis.enc)",
|
||||
fileInfo: "Tu secreto cifrado se descargará en tu dispositivo (nombre: oasis.enc)",
|
||||
developer: "Desarrollo",
|
||||
devTitle: "Desarrollo",
|
||||
welcomeBannerText: "Bienvenida a OASIS. Sigue estos pasos rápidos para configurar tu avatar.",
|
||||
welcomeBannerAction: "¡Empezar!",
|
||||
welcomeTitle: "Bienvenida",
|
||||
welcomeStepGreetingAction: "Enviar feed",
|
||||
welcomeJoinPubButton: "Unirse al pub",
|
||||
welcomeStepLarpAction: "Unirse a \"La Academia\"",
|
||||
welcomeStepLarpText: "Únete a nuestro juego de rol de acción real.",
|
||||
welcomeStepLarpTitle: "Únete al L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "Envía un \"Hola mundo!\"",
|
||||
welcomeStepGreetingText: "Envía un mensaje para que otros habitantes puedan descubrirte.",
|
||||
welcomeJoinPub: "Unirse a",
|
||||
welcomeDescription: "Unas pocas cosas que conviene hacer antes de empezar.",
|
||||
welcomeProgress: "Completado",
|
||||
welcomeStepDone: "hecho",
|
||||
welcomeStepPending: "pendiente",
|
||||
welcomeSkip: "Ahora no",
|
||||
welcomeStepLanguageTitle: "Elige tu idioma",
|
||||
welcomeStepLanguageText: "Oasis habla varios idiomas. Puedes cambiarlo cuando quieras.",
|
||||
welcomeStepProfileTitle: "Edita tu perfil",
|
||||
welcomeStepProfileText: "Elige un nombre, añade una descripción y pon una imagen para que el resto de habitantes te reconozca.",
|
||||
welcomeStepProfileAction: "Guardar perfil",
|
||||
welcomeStepFederationTitle: "Únete a la red principal",
|
||||
welcomeStepFederationText: "Conéctate a nuestro pub para encontrar a otros habitantes y empezar a replicar.",
|
||||
welcomeStepFederationAction: "Ir a invitaciones",
|
||||
welcomeStepBackupTitle: "Copia de seguridad de tu ID",
|
||||
welcomeStepBackupText: "Tu identidad es un fichero de claves en este dispositivo.",
|
||||
welcomeStepBackupWarning: "SI LO PIERDES, NADIE PUEDE RECUPERARLO POR TI.",
|
||||
welcomeStepBackupAction: "¡Copia de seguridad!",
|
||||
welcomeCompleteTitle: "Todo listo.",
|
||||
welcomeCompleteText: "Tu nodo está preparado. A partir de aquí la red crece con la gente a la que sigues.",
|
||||
welcomeFindPeople: "Buscar habitantes",
|
||||
devFilterFiles: "FICHEROS",
|
||||
devFilterSearch: "BUSCAR",
|
||||
devFilterModules: "MÓDULOS",
|
||||
devFilterTranslations: "TRADUCCIONES",
|
||||
devFilterStyles: "ESTILOS",
|
||||
devFilterTests: "TESTS",
|
||||
devVersion: "Versión",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Suites de tests",
|
||||
devParentFolder: "Carpeta superior",
|
||||
devOpenFolder: "abrir",
|
||||
devDescription: "Explora el código que se está ejecutando en este nodo.",
|
||||
devTreeTitle: "Ficheros",
|
||||
devSearchTitle: "Buscar en el código",
|
||||
devMapTitle: "Módulos",
|
||||
devRoot: "raíz",
|
||||
devRootButton: "RAÍZ",
|
||||
devSearchPlaceholder: "Texto a buscar en el código",
|
||||
devAnyExtension: "Cualquier fichero",
|
||||
devSearchButton: "Buscar",
|
||||
devStatsFiles: "Ficheros",
|
||||
devStatsLines: "Líneas",
|
||||
devStatsModules: "Módulos",
|
||||
devStatsLanguages: "Idiomas",
|
||||
devNotViewable: "no visualizable",
|
||||
devEmptyFolder: "Esta carpeta está vacía.",
|
||||
devSize: "Tamaño",
|
||||
devShowing: "Mostrando",
|
||||
devLine: "línea",
|
||||
devReportBug: "Reportar Bug",
|
||||
devCreateTask: "Crear Tarea",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Encontrado leyendo el código de Oasis",
|
||||
devTaskPrefix: "Revisar",
|
||||
devPrevPage: "Líneas anteriores",
|
||||
devNextPage: "Líneas siguientes",
|
||||
devMatches: "coincidencias",
|
||||
devFilesScanned: "ficheros revisados",
|
||||
devNoResults: "Todavía no hay coincidencias.",
|
||||
devColModule: "Módulo",
|
||||
devColState: "Estado",
|
||||
devColModel: "Modelo",
|
||||
devColView: "Vista",
|
||||
devColRoutes: "Rutas",
|
||||
devColTests: "Tests",
|
||||
devOn: "activo",
|
||||
devOff: "inactivo",
|
||||
modulesDevLabel: "Desarrollo",
|
||||
modulesDevDescription: "Módulo para gestionar el código de Oasis.",
|
||||
themeIntro:
|
||||
"Elige un tema.",
|
||||
setTheme: "Establecer tema",
|
||||
|
|
@ -682,7 +745,7 @@ module.exports = {
|
|||
spreadLabel: "Difundir",
|
||||
spreadHint: "Difunde esto a quienes te apoyan (se replica vía tu feed).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Bienvenido a Oasis — una red social libre, peer-to-peer, federada y cifrada, con una arquitectura distribuida y solo por invitación.\n\nAlgunos lugares interesantes para empezar:\n\n- /profile — Edita tu avatar, nombre, descripción y qué módulos se muestran en tu cara pública.\n- /invites — Añade un pub para federarte con el resto de la red.\n- /peers — Mira quién está conectado, reescanea tu LAN, exporta o importa listas de peers.\n- /inhabitants — Descubre y visita los avatares de otras personas.\n- /tribes — Crea o únete a grupos privados con cifrado de extremo a extremo.\n- /inbox — Lee y envía mensajes privados.\n- /activity — Mira la actividad reciente, tuya y de tu red.\n- /publish — Escribe un post o comparte una imagen, audio, vídeo o documento.\n\nAlgunos lugares interesantes para conectar:\n\n- /fediverse — Gestiona tus otras cuentas del fediverso, incluyendo enviar y recibir contenido.\n\nEste mensaje se envió de forma privada desde ti hacia ti, por eso no hizo falta conexión para recibirlo.",
|
||||
welcomePmBody: "Bienvenido a Oasis — una red social libre, peer-to-peer, federada y cifrada, con una arquitectura distribuida y solo por invitación.\n\nAlgunos lugares interesantes para empezar:\n\n- /profile — Edita tu avatar, nombre, descripción y qué módulos se muestran en tu cara pública.\n- /invites — Añade un pub para federarte con el resto de la red.\n- /peers — Mira quién está conectado, reescanea tu LAN, exporta o importa listas de peers.\n- /inhabitants — Descubre y visita los avatares de otras personas.\n- /tribes — Crea o únete a grupos privados con cifrado de extremo a extremo.\n- /inbox — Lee y envía mensajes privados.\n- /activity — Mira la actividad reciente, tuya y de tu red.\n- /publish — Escribe un post o comparte una imagen, audio, vídeo o documento.\n- /search — Busca el contenido de la red por tipo.\n\nAlgunos lugares interesantes para conectar:\n\n- /fediverse — Gestiona tus otras cuentas del fediverso, incluyendo enviar y recibir contenido.\n\nEste mensaje se envió de forma privada desde ti hacia ti, por eso no hizo falta conexión para recibirlo.",
|
||||
profileVisibilityTitle: "Visibilidad del perfil público",
|
||||
profileVisibilityHint: "Marca qué campos ven otros habitantes en tu perfil. Por defecto solo se muestra Karma.",
|
||||
profileSensorsSectionTitle: "Sensores",
|
||||
|
|
@ -1214,6 +1277,9 @@ module.exports = {
|
|||
eventButton: "EVENTOS",
|
||||
taskButton: "TAREAS",
|
||||
votesButton: "GOBIERNO",
|
||||
industryButton: "INDUSTRIA",
|
||||
projectButton: "PROYECTOS",
|
||||
shopProductButton: "PRODUCTOS",
|
||||
reportButton: "INFORMES",
|
||||
feedButton: "FEED",
|
||||
marketButton: "MERCADO",
|
||||
|
|
@ -1242,7 +1308,7 @@ module.exports = {
|
|||
trendingItemStatus: "Estado del Artículo",
|
||||
trendingTotalVotes: "Total de Votos",
|
||||
trendingTotalOpinions: "Total de Opiniones",
|
||||
trendingNoContentMessage: "No hay tendencias disponibles, aún.",
|
||||
trendingNoContentMessage: "Todavía no hay tendencias.",
|
||||
trendingAuthor: "Por",
|
||||
trendingCreatedAtLabel: "Creado el",
|
||||
trendingTotalCount: "Total de Contadores",
|
||||
|
|
@ -1431,7 +1497,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Creado el",
|
||||
transfersConfirmations: "CONFIRMACIONES",
|
||||
transfersContainingBlock: "Bloque contenedor",
|
||||
transfersExportContract: "Crear contrato",
|
||||
transfersExportContract: "Contrato inteligente",
|
||||
transfersConfirmButton: "Confirmar Transferencia",
|
||||
transfersNoItems: "No se encontraron transferencias.",
|
||||
transfersMineSectionTitle: "Tus Transferencias",
|
||||
|
|
@ -1557,7 +1623,7 @@ module.exports = {
|
|||
cvDeleteButton: "Eliminar",
|
||||
cvNoCV: "No se encontró ningún CV.",
|
||||
blogSubject: "Asunto",
|
||||
blogMessage: "Cuerpo limitado a 8096 caracteres.",
|
||||
blogMessage: "Mensaje",
|
||||
blogImage: "Subir contenido multimedia (max: 50MB)",
|
||||
blogPublish: "Vista previa",
|
||||
noPopularMessages: "No se han publicado mensajes populares, aún",
|
||||
|
|
@ -2193,6 +2259,7 @@ module.exports = {
|
|||
agendaFilterReports: "INFORMES",
|
||||
agendaFilterTransfers: "TRANSFERENCIAS",
|
||||
agendaFilterJobs: "TRABAJOS",
|
||||
agendaFilterIndustry: "INDUSTRIA",
|
||||
agendaFilterProjects: "PROYECTOS",
|
||||
agendaFilterCalendars: "CALENDARIOS",
|
||||
agendaNoItems: "No se encontraron asignaciones.",
|
||||
|
|
@ -2314,16 +2381,31 @@ module.exports = {
|
|||
privateMessage: "MP",
|
||||
pmSendTitle: "Mensajes Privados",
|
||||
pmSend: "Enviar!",
|
||||
pmDescription: "Usa este formulario para enviar un mensaje cifrado a otros habitantes.",
|
||||
pmCancel: "Cancelar",
|
||||
pmReset: "Restablecer",
|
||||
pmSharedKeyHint: "Comparte esta clave con el destinatario por otro canal. Es necesaria para descifrar.",
|
||||
pmDescription: "Usa este formulario para enviar un mensaje/fichero cifrado a otros habitantes.",
|
||||
pmComposeTitle: "Enviar un mensaje",
|
||||
pmRecipients: "Destinatarios",
|
||||
pmRecipientsHint: "Introduce los IDs de Oasis separados por comas",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "Hasta 7 destinatarios por mensaje.",
|
||||
pmTextPlaceholder: "Cuerpo limitado a 7000 caracteres.",
|
||||
pmSubject: "Asunto",
|
||||
pmSubjectHint: "Introduce el asunto del mensaje",
|
||||
pmText: "Mensaje",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Descifrar",
|
||||
fileShareTitle: "Compartir un fichero",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "Fichero",
|
||||
fileShareDownload: "Descargar",
|
||||
fileShareMutualError: "Solo puedes compartir ficheros con habitantes que te apoyen mutuamente.",
|
||||
fileShareNoFile: "No se ha seleccionado ningún fichero.",
|
||||
fileShareTooLarge: "El fichero supera el tamaño permitido.",
|
||||
fileShareFailed: "No se pudo preparar el fichero.",
|
||||
fileShareSendError: "No se pudo enviar el fichero.",
|
||||
fileShareUnavailable: "Este fichero no está disponible ahora mismo. Inténtalo más tarde.",
|
||||
pmCrypterBadKey: "¡La clave compartida es incorrecta!",
|
||||
pmCrypterTooLong: "El mensaje es demasiado largo para cifrarlo con el Crypter. Acórtalo e inténtalo de nuevo.",
|
||||
pmCrypterCipherLabel: "Mensaje recifrado",
|
||||
|
|
@ -2352,15 +2434,27 @@ module.exports = {
|
|||
pmNoSubject: "(sin asunto)",
|
||||
pmSubjectLabel: "Asunto:",
|
||||
pmBodyLabel: "Cuerpo",
|
||||
pmBotJobs: "42-EmpleosBOT",
|
||||
pmBotProjects: "42-ProyectosBOT",
|
||||
pmBotMarket: "42-MercadoBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "La casa gobernante del L.A.R.P ha cambiado.",
|
||||
politicalBotParliamentTitle: "Ha comenzado un nuevo ciclo de gobierno en el Parlamento.",
|
||||
politicalBotTribeTitle: "Ha comenzado un nuevo ciclo de gobierno en una de tus Tribus.",
|
||||
politicalBotLarpIntro: "Ahora gobierna {house} durante este ciclo: {cycle}",
|
||||
politicalBotParliamentIntro: "El gobierno actual es {gov}",
|
||||
politicalBotParliamentIntroLeader: "El gobierno actual es {gov} ejercida por {leader}",
|
||||
politicalBotTribeIntro: "El gobierno actual en la Tribu {tribe} es {gov}",
|
||||
politicalBotTribeIntroLeader: "El gobierno actual en la Tribu {tribe} es {gov} ejercida por {leader}",
|
||||
politicalBotLeaderLabel: "Líder",
|
||||
inboxJobSubscribedTitle: "Nueva suscripción a tu oferta de trabajo",
|
||||
pmInhabitantWithId: "Habitante con ID OASIS:",
|
||||
pmHasSubscribedToYourJobOffer: "se ha suscrito a tu oferta de trabajo",
|
||||
inboxProjectCreatedTitle: "Nuevo proyecto creado",
|
||||
pmHasCreatedAProject: "ha creado un proyecto",
|
||||
inboxMarketItemSoldTitle: "Artículo vendido",
|
||||
inboxShopSoldTitle: "Producto vendido",
|
||||
pmYourItem: "Tu artículo",
|
||||
pmHasBeenSoldTo: "se ha vendido a",
|
||||
pmFor: "por",
|
||||
|
|
@ -2393,7 +2487,7 @@ module.exports = {
|
|||
blockchainBack: 'Volver al Blockexplorer',
|
||||
banking: 'Banking',
|
||||
bankingTitle: 'Banking',
|
||||
bankingDescription: 'Explora el valor actual de ECOin y la asignación de RBU correspondiente, distribuida semanalmente en función de la participación y la confianza.',
|
||||
bankingDescription: "La economía de ECOin: balance, RBU, tasas y valor de industria.",
|
||||
bankOverview: 'Resumen',
|
||||
bankEpochs: 'Épocas',
|
||||
bankRules: 'Reglas',
|
||||
|
|
@ -2427,6 +2521,10 @@ module.exports = {
|
|||
bankEpochId: 'ID de época',
|
||||
bankRuleHash: 'Hash del snapshot de reglas',
|
||||
bankViewEpoch: 'Ver época',
|
||||
bankYourIndustryBalance: "Tu parte de la industria",
|
||||
bankYourUbiMonth: "Tu RBU (este mes)",
|
||||
bankYourFundsMonth: "Tus fondos (este mes)",
|
||||
bankIndustryBalance: "Producción industrial (estimada)",
|
||||
bankUserBalance: 'Tu saldo',
|
||||
ecoWalletNotConfigured: 'Cartera de ECOin no configurada',
|
||||
editWallet: 'Editar cartera',
|
||||
|
|
@ -2466,7 +2564,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "SIN FONDOS!",
|
||||
bankUbiAvailableOk: "¡DISPONIBLE!",
|
||||
bankUbiAvailability: "Disponibilidad de UBI",
|
||||
bankUbiAvailability: "RBU (red)",
|
||||
bankAlreadyClaimedThisMonth: "Ya reclamado este mes",
|
||||
bankUbiThisMonth: "UBI (este mes)",
|
||||
bankUbiLastClaimed: "UBI (última reclamada)",
|
||||
|
|
@ -2896,6 +2994,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Etiquetas",
|
||||
jobsTagsPlaceholder: "etiqueta1, etiqueta2, etiqueta3",
|
||||
noJobsMatch: "No hay ofertas que coincidan con tu búsqueda.",
|
||||
industrySearchPlaceholder: "Buscar fábricas…",
|
||||
industryAllSectors: "Todos los sectores",
|
||||
industryVisitButton: "Visitar Industria",
|
||||
industryAdvanceTo: "Cambiar a",
|
||||
industryAmount: "Cantidad",
|
||||
industryApproveBuild: "Aprobar",
|
||||
industryBackToFacility: "← Fábrica",
|
||||
industryBlueprint: "Blueprint",
|
||||
industryBlueprintLabel: "Blueprint de Industria",
|
||||
industryBlueprints: "Blueprints",
|
||||
industryBuild: "Build",
|
||||
industryBuildNotes: "Notas",
|
||||
industryBuildStart: "Fecha de inicio",
|
||||
industryVoteUpdateButton: "Votar actualización",
|
||||
industryVoteDeleteButton: "Votar borrado",
|
||||
industryRevokeVote: "Revocar",
|
||||
industryTimeLeft: "Tiempo restante",
|
||||
industryBuildEnd: "Fecha de fin",
|
||||
industryBuilds: "Builds",
|
||||
industryBuildTitle: "Título",
|
||||
industryContribute: "Contribuir",
|
||||
industryContributeEco: "Contribuir ECO",
|
||||
industryContributeLabor: "Contribuir trabajo",
|
||||
industryContributeButton: "Contribuir",
|
||||
industryContributeMaterial: "Contribuir material",
|
||||
industryContributions: "Contribuciones",
|
||||
industryContributors: "colaboradores",
|
||||
industryCreateBlueprintButton: "Crear blueprint",
|
||||
industryDistribute: "Distribuir",
|
||||
industryDistributeButton: "Distribuir por cuotas",
|
||||
industryDistribution: "Distribución",
|
||||
industryEcoAmount: "Cantidad (ECO)",
|
||||
industryEcoContribHint: "Las contribuciones en ECO se transfieren al mayordomo como custodio de la tesorería del build.",
|
||||
industryEditBlueprint: "Editar blueprint",
|
||||
industryFacility: "Fábrica",
|
||||
industryKindLabel: "Tipo",
|
||||
industryKind_labor: "Mano de obra",
|
||||
industryKind_material: "Material",
|
||||
industryKind_eco: "Fondos",
|
||||
industryLaborHours: "Mano de obra (horas)",
|
||||
industryHours: "Horas",
|
||||
industryLicense: "Licencia",
|
||||
industryMaterialItem: "Material",
|
||||
industryMaterials: "Materiales",
|
||||
industryMaterialsHint: "Un material por línea, con el formato nombre:cantidad:precio.",
|
||||
industryEstMaterials: "Total materiales",
|
||||
industryEstLabor: "Total mano de obra",
|
||||
industryEstTaxes: "Tasas",
|
||||
industryEstTotal: "Precio estimado",
|
||||
industryBuildingPrice: "Precio de construcción",
|
||||
industryFinalPrice: "Precio final",
|
||||
industryBlueprintDescPlaceholder: "Especificaciones, dimensiones, peso, documentación…",
|
||||
industryMaterialValue: "Valor (ECO)",
|
||||
industryMember: "Miembro",
|
||||
industryNewBlueprint: "Nuevo blueprint",
|
||||
industryNewBuild: "Proponer un build",
|
||||
industryEditBuild: "Editar producción",
|
||||
industryNoBlueprint: "— ninguno —",
|
||||
industryNeedBlueprint: "Crea primero un plano: cada producción fabrica uno.",
|
||||
industryNoBlueprints: "Aún no hay blueprints.",
|
||||
industryNoBuilds: "Aún no hay builds.",
|
||||
industryNote: "Nota",
|
||||
industryOutput: "Salida",
|
||||
industryOutputItem: "Nombre del producto",
|
||||
industryOutputKind: "Tipo de producto",
|
||||
industryOutputQty: "Unidades por producción",
|
||||
industryOutputUnit: "Unidad de medida",
|
||||
industryOutputValue: "Valor de salida (ECO, p. ej. de la venta)",
|
||||
industryPayout: "Pago",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Crear Trabajo",
|
||||
industryPot: "Bote",
|
||||
industryProposeBuildButton: "Proponer build",
|
||||
industryProposer: "Proponente",
|
||||
industryAuthor: "Autor",
|
||||
industrySellOnMarket: "Enviar al Mercado",
|
||||
industrySendToProjects: "Crear Proyecto",
|
||||
industryShare: "Cuota",
|
||||
industryShares: "Cuotas",
|
||||
industrySkills: "Habilidades",
|
||||
industryTreasury: "Tesorería",
|
||||
industryKind_physical: "Físico",
|
||||
industryKind_digital: "Digital",
|
||||
industryBuildStatus_PROPOSED: "PROPUESTO",
|
||||
industryBuildStatus_REJECTED: "RECHAZADO",
|
||||
industryBuildStatus_APPROVED: "APROBADO",
|
||||
industryBuildStatus_STOCKING: "ABASTECIENDO",
|
||||
industryBuildStatus_IN_PRODUCTION: "EN PRODUCCIÓN",
|
||||
industryBuildStatus_COMPLETED: "COMPLETADO",
|
||||
industryBuildStatus_FAILED: "FALLIDO",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "Has sido admitido en una fábrica.",
|
||||
industryBotApplicationTitle: "Nueva solicitud de ingreso en tu fábrica.",
|
||||
industryBotInvitedTitle: "Has sido invitado a una fábrica.",
|
||||
industryBotDissolvedTitle: "Una fábrica a la que perteneces ha sido disuelta.",
|
||||
industryBotBuildApprovedTitle: "Un build ha sido aprobado.",
|
||||
industryBotDistributedTitle: "Se ha distribuido la salida de un build.",
|
||||
industryFilterRules: "REGLAS",
|
||||
industryRulesTitle: "Reglas",
|
||||
industryRulesIntro: "Industry permite a los habitantes poseer colectivamente los medios de producción: una Fábrica es un taller de la red que nadie posee de forma privada.",
|
||||
industryRulesSteward: "El fundador es el mayordomo — un custodio, no un dueño: no puede vender, privatizar ni disolver la Fábrica en solitario.",
|
||||
industryRulesMembership: "La política de membresía define cómo se une la gente: Abierta (entras al instante), Por voto (te admite el voto de los miembros) o Solo invitación (un miembro debe invitarte antes).",
|
||||
industryRulesQuorum: "El quórum es el número mínimo de miembros que deben votar para que una decisión cuente, para que una Fábrica pequeña no la decida una sola persona.",
|
||||
industryRulesMajority: "La mayoría es la fracción de votos necesaria para aprobar (0,5 = mitad, 1 = unanimidad); una decisión pasa cuando los SÍ alcanzan al menos max(quórum, miembros × mayoría).",
|
||||
industryRulesDecisions: "Los miembros votan para admitir nuevos, aprobar builds y disolver la Fábrica; el mayordomo no puede saltarse estas decisiones colectivas.",
|
||||
industryRulesBlueprints: "Los Blueprints son recetas libres (COPYLEFT) — las entradas (materiales, horas de trabajo, skills) y la salida (un bien físico o digital) — y cualquiera puede forkearlas.",
|
||||
industryRulesBuilds: "Un Build es una orden de producción: PROPUESTO → APROBADO (por voto) → ABASTECIENDO → EN PRODUCCIÓN → COMPLETADO, y solo acepta contribuciones una vez aprobado.",
|
||||
industryRulesContributions: "Los miembros aportan trabajo (horas), materiales (valor declarado en ECO) o ECO a un build; cada aporte gana karma.",
|
||||
industryRulesLaborRate: "La tarifa de trabajo es el valor en ECO de una hora de trabajo en esta Fábrica; convierte horas en karma para comparar esfuerzo y capital de forma justa: karma = horas × tarifa + valor material + ECO.",
|
||||
industryRulesShares: "Tu cuota en un build es tu karma ÷ karma total, y determina cuánto del valor de salida recibes.",
|
||||
industryRulesDistribution: "Cuando una producción se completa, el steward reparte el fondo (los fondos de la producción más el valor de venta) entre quienes contribuyeron, en proporción a su participación.",
|
||||
industryRulesTreasury: "Las aportaciones en ECO las custodia el mayordomo como tesorería del build hasta el reparto; todos los movimientos quedan registrados en la red y las disputas pueden ir a Courts.",
|
||||
industryJobs: "Empleos",
|
||||
industryNoJobs: "Aún no hay puestos.",
|
||||
industryCreatePosition: "Crear puesto",
|
||||
industryViewCV: "CV",
|
||||
industryReportButton: "Reportar",
|
||||
industryCreateTask: "Crear Tarea",
|
||||
industryOpenDispute: "Abrir disputa",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "p. ej. unidad, kg, licencia",
|
||||
industryOutputItemPlaceholder: "p. ej. robot",
|
||||
industryOutputQtyPlaceholder: "p. ej. 5",
|
||||
industrySkillsPlaceholder: "p. ej. soldadura, redes, instalación-solar",
|
||||
industryCreateInvite: "Generar invitación",
|
||||
industryPauseVotes: "Votos de estado",
|
||||
industryTitle: "Industria",
|
||||
industryDescription: "Módulo para gestionar los medios de producción de forma colectiva.",
|
||||
industryLabel: "Industria",
|
||||
typeIndustryBuild: "BUILD",
|
||||
typeIndustryBlueprint: "BLUEPRINT",
|
||||
typeIndustryAllocation: "DISTRIBUCIÓN",
|
||||
typeIndustry: "INDUSTRIA",
|
||||
modulesIndustryLabel: "Industria",
|
||||
modulesIndustryDescription: "Módulo para gestionar los medios de producción de forma colectiva.",
|
||||
industryFilterAll: "TODAS",
|
||||
industryFilterMember: "MIEMBRO",
|
||||
industryFilterBlueprints: "PLANOS",
|
||||
industryFilterBuilds: "PRODUCCIONES",
|
||||
industryFilterMine: "MÍAS",
|
||||
industryFilterActive: "EN MARCHA",
|
||||
industryFilterPaused: "PAUSADAS",
|
||||
industryFilterDissolved: "DISUELTAS",
|
||||
industryAllTitle: "Industria",
|
||||
industryMemberTitle: "Fábricas en las que estoy",
|
||||
industryMineTitle: "Mis fábricas",
|
||||
industryActiveTitle: "En marcha",
|
||||
industryPausedTitle: "Fábricas pausadas",
|
||||
industryDissolvedTitle: "Fábricas disueltas",
|
||||
industryNoFacilitiesFound: "No se encontraron fábricas.",
|
||||
industryCreateFacility: "Crear fábrica",
|
||||
industryMembers: "Miembros",
|
||||
industryMemberBadge: "MIEMBRO",
|
||||
industryName: "Nombre",
|
||||
industryNamePlaceholder: "Nombre de la fábrica",
|
||||
industryDescriptionLabel: "Descripción",
|
||||
industryDescriptionPlaceholder: "¿Qué produce esta fábrica?",
|
||||
industrySector: "Sector",
|
||||
industryMembershipPolicy: "Política de membresía",
|
||||
industryQuorum: "Quórum",
|
||||
industryMajority: "Mayoría",
|
||||
industryLaborRate: "Tarifa de trabajo",
|
||||
industryCreateButton: "Crear fábrica",
|
||||
industryUpdateButton: "Actualizar",
|
||||
industrySteward: "Mayordomo",
|
||||
industryStatusActive: "EN MARCHA",
|
||||
industryStatusPaused: "PAUSADA",
|
||||
industryStatusDissolved: "DISUELTA",
|
||||
industryStatusLabel: "Estado",
|
||||
industryJoinButton: "Unirse",
|
||||
industryApplyButton: "Solicitar ingreso",
|
||||
industryLeaveButton: "Salir",
|
||||
industryInviteButton: "Invitar",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "Necesitas una invitación para unirte.",
|
||||
industryPauseButton: "Votar pausar",
|
||||
industryResumeButton: "Votar reanudar",
|
||||
industryEditButton: "Editar",
|
||||
industryDeleteButton: "Eliminar",
|
||||
industryBackToList: "← Industria",
|
||||
industryPendingApplicants: "Solicitudes pendientes",
|
||||
industryVotesYes: "sí",
|
||||
industryVotesNo: "no",
|
||||
industryAlreadyVoted: "votado",
|
||||
industryAdmit: "Admitir",
|
||||
industryReject: "Rechazar",
|
||||
industryDissolveTitle: "Disolver fábrica",
|
||||
industryDissolveHint: "La disolución requiere un voto colectivo; el mayordomo no puede disolverla en solitario.",
|
||||
industryDissolveVote: "Votar disolución",
|
||||
industrySector_software: "Software",
|
||||
industrySector_hardware: "Hardware",
|
||||
industrySector_agriculture: "Agricultura",
|
||||
industrySector_textile: "Textil",
|
||||
industrySector_energy: "Energía",
|
||||
industrySector_food: "Alimentación",
|
||||
industrySector_construction: "Construcción",
|
||||
industrySector_media: "Medios",
|
||||
industrySector_services: "Servicios",
|
||||
industrySector_other: "Otro",
|
||||
industryPolicy_open: "Abierta",
|
||||
industryPolicy_vote: "Por voto",
|
||||
industryPolicy_invite: "Solo invitación",
|
||||
projectsTitle: "Proyectos",
|
||||
projectsDescription: "Crea, financia y sigue proyectos impulsados por la comunidad en tu red.",
|
||||
projectCreateProject: "Crear Proyecto",
|
||||
|
|
@ -3331,6 +3631,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "Descripción",
|
||||
chatMessageReply: "Respuesta",
|
||||
chatMessageLabel: "Mensaje",
|
||||
chatCategory: "Categoría",
|
||||
chatStatus: "ESTADO",
|
||||
chatFilterAll: "TODOS",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
eu: {
|
||||
bbAdd: "Gehitu",
|
||||
bbQuickActions: "Ekintza azkarrak",
|
||||
bbPickTitle: "Ainguratu modulu bat",
|
||||
bbPickDesc: "Aukeratu modulu bat beheko barrako + hutsunerako.",
|
||||
bbPickNone: "Bat ere ez",
|
||||
bbManage: "Editatu",
|
||||
bbYourBar: "Zure barra",
|
||||
bbRemove: "Kendu",
|
||||
bbFull: "Gehienekora iritsi da",
|
||||
bbDone: "Eginda",
|
||||
activityChangeFilter: "Aldatu iragazkia",
|
||||
emptyConnectHint: "Konektatu pub batera sarearekin sinkronizatzeko.",
|
||||
emptyConnectCta: "Konektatu pub batera",
|
||||
menuCommunity: "Komunitatea",
|
||||
activityGroupCommunity: "Komunitatea eta gobernantza",
|
||||
activityGroupOrg: "Antolakuntza",
|
||||
activityGroupComm: "Komunikazioa",
|
||||
activityGroupEconomy: "Ekonomia",
|
||||
activityGroupMedia: "Edukia eta multimedia",
|
||||
activityGroupOther: "Bestelakoak",
|
||||
languageName: "Basque",
|
||||
shopOrderStatusPaid: "Ordainketa jasota",
|
||||
shopOrderStatusReceived: "Jasota",
|
||||
|
|
@ -421,7 +401,8 @@ module.exports = {
|
|||
publish: "Idatzi",
|
||||
contentWarningPlaceholder: "Gehitu gaia bidalketari (hautazkoa)",
|
||||
privateWarningPlaceholder: "Gehitu bizilagunak mezu pribatua bidaltzeko (hautazkoa)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Gorputza 7000 karakteretara mugatua.",
|
||||
publishTooLong: "Zure argitalpena luzeegia da. Laburtu ezazu, mesedez.",
|
||||
publishCustomDescription: [
|
||||
"GOGORATU: Blockchain teknologia dela eta, bidalketa argitaratu ezkero, ezin izango da aldatu ezta ezabatu.",
|
||||
],
|
||||
|
|
@ -486,7 +467,89 @@ module.exports = {
|
|||
passwordLengthInfo: "Pasahitzak 32 karaketereko luzera izan behar du.",
|
||||
passwordImport: "Idatzi pasahitza zure karpeta nagusian gordeko diren datuak deszifratzeko (izena: secret)",
|
||||
exportPasswordPlaceholder: "Erabili minuskulak, maiuskulak, zenbakiak eta sinboloak.",
|
||||
fileInfo: "Zifratutako gako sekretua zure etxeko karpetan gordeko da. (izena: oasis.enc)",
|
||||
fileInfo: "Zure gako sekretu zifratua zure gailura deskargatuko da (izena: oasis.enc)",
|
||||
developer: "Garapena",
|
||||
devTitle: "Garapena",
|
||||
welcomeBannerText: "Ongi etorri OASISera. Jarraitu urrats azkar hauek zure avatarra konfiguratzeko.",
|
||||
welcomeBannerAction: "Hasi!",
|
||||
welcomeTitle: "Ongi etorri",
|
||||
welcomeStepGreetingAction: "Bidali",
|
||||
welcomeJoinPubButton: "Batu pubera",
|
||||
welcomeStepLarpAction: "Batu \"Akademiara\"",
|
||||
welcomeStepLarpText: "Batu gure zuzeneko rol jokora.",
|
||||
welcomeStepLarpTitle: "Batu L.A.R.P.era",
|
||||
welcomeStepGreetingTitle: "Bidali \"Kaixo mundua!\" bat",
|
||||
welcomeStepGreetingText: "Bidali mezu bat beste biztanleek aurki zaitzaten.",
|
||||
welcomeJoinPub: "Batu:",
|
||||
welcomeDescription: "Hasi aurretik komeni diren gauza batzuk.",
|
||||
welcomeProgress: "Osatuta",
|
||||
welcomeStepDone: "eginda",
|
||||
welcomeStepPending: "egiteke",
|
||||
welcomeSkip: "Orain ez",
|
||||
welcomeStepLanguageTitle: "Aukeratu zure hizkuntza",
|
||||
welcomeStepLanguageText: "Oasisek hainbat hizkuntza hitz egiten ditu. Nahi duzunean alda dezakezu.",
|
||||
welcomeStepProfileTitle: "Editatu zure profila",
|
||||
welcomeStepProfileText: "Aukeratu izena, gehitu deskribapena eta jarri irudi bat beste biztanleek ezagut zaitzaten.",
|
||||
welcomeStepProfileAction: "Gorde profila",
|
||||
welcomeStepFederationTitle: "Batu sare nagusira",
|
||||
welcomeStepFederationText: "Konektatu gure pubera beste biztanleak ezagutu eta erreplikatzen hasteko.",
|
||||
welcomeStepFederationAction: "Joan gonbidapenetara",
|
||||
welcomeStepBackupTitle: "Egin zure IDaren babeskopia",
|
||||
welcomeStepBackupText: "Zure identitatea gailu honetako gako-fitxategi bat da.",
|
||||
welcomeStepBackupWarning: "GALTZEN BADUZU, INORK EZIN DIZU BERRESKURATU.",
|
||||
welcomeStepBackupAction: "Babeskopia!",
|
||||
welcomeCompleteTitle: "Dena prest.",
|
||||
welcomeCompleteText: "Zure nodoa prest dago. Hemendik aurrera sarea jarraitzen duzun jendearekin hazten da.",
|
||||
welcomeFindPeople: "Bilatu biztanleak",
|
||||
devFilterFiles: "FITXATEGIAK",
|
||||
devFilterSearch: "BILATU",
|
||||
devFilterModules: "MODULUAK",
|
||||
devFilterTranslations: "ITZULPENAK",
|
||||
devFilterStyles: "ESTILOAK",
|
||||
devFilterTests: "TESTAK",
|
||||
devVersion: "Bertsioa",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Test multzoak",
|
||||
devParentFolder: "Goiko karpeta",
|
||||
devOpenFolder: "ireki",
|
||||
devDescription: "Arakatu nodo honetan exekutatzen ari den kodea.",
|
||||
devTreeTitle: "Fitxategiak",
|
||||
devSearchTitle: "Bilatu kodean",
|
||||
devMapTitle: "Moduluak",
|
||||
devRoot: "erroa",
|
||||
devRootButton: "ERROA",
|
||||
devSearchPlaceholder: "Kodean bilatzeko testua",
|
||||
devAnyExtension: "Edozein fitxategi",
|
||||
devSearchButton: "Bilatu",
|
||||
devStatsFiles: "Fitxategiak",
|
||||
devStatsLines: "Lerroak",
|
||||
devStatsModules: "Moduluak",
|
||||
devStatsLanguages: "Hizkuntzak",
|
||||
devNotViewable: "ez ikusgai",
|
||||
devEmptyFolder: "Karpeta hau hutsik dago.",
|
||||
devSize: "Tamaina",
|
||||
devShowing: "Erakusten",
|
||||
devLine: "lerroa",
|
||||
devReportBug: "Akatsa Jakinarazi",
|
||||
devCreateTask: "Ataza Sortu",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Oasis kodea irakurtzean aurkitua",
|
||||
devTaskPrefix: "Berrikusi",
|
||||
devPrevPage: "Aurreko lerroak",
|
||||
devNextPage: "Hurrengo lerroak",
|
||||
devMatches: "bat etortze",
|
||||
devFilesScanned: "fitxategi aztertuta",
|
||||
devNoResults: "Oraindik ez dago bat etortzerik.",
|
||||
devColModule: "Modulua",
|
||||
devColState: "Egoera",
|
||||
devColModel: "Eredua",
|
||||
devColView: "Ikuspegia",
|
||||
devColRoutes: "Bideak",
|
||||
devColTests: "Testak",
|
||||
devOn: "aktibo",
|
||||
devOff: "ez-aktibo",
|
||||
modulesDevLabel: "Garapena",
|
||||
modulesDevDescription: "Oasis kodea kudeatzeko modulua.",
|
||||
themeIntro:
|
||||
"Hautatu gaia.",
|
||||
setTheme: "Ezarri gaia",
|
||||
|
|
@ -688,7 +751,7 @@ module.exports = {
|
|||
spreadLabel: "Hedatu",
|
||||
spreadHint: "Hedatu zure babesleei (zure feed bidez errepikatzen da).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Ongi etorri Oasis-era — sare sozial libre, parekideen arteko, federatu eta zifratua, gonbidapen bidezko arkitektura banatu batekin.\n\nHasteko leku interesgarri batzuk:\n\n- /profile — Editatu zure avatarra, izena, deskribapena eta zein modulu agertuko diren zure alde publikoan.\n- /invites — Gehitu pub bat sarearen gainerakoarekin federatzeko.\n- /peers — Ikusi nor dagoen konektatuta, eskaneatu LAN-a berriz, esportatu edo inportatu peer-zerrendak.\n- /inhabitants — Aurkitu eta bisitatu beste pertsonen avatarrak.\n- /tribes — Sortu edo elkartu muturretik muturrera zifratutako talde pribatuetan.\n- /inbox — Irakurri eta bidali mezu pribatuak.\n- /activity — Ikusi azken jarduera, zurea eta zure sarearena.\n- /publish — Idatzi post bat edo partekatu irudia, audioa, bideoa edo dokumentua.\n\nKonektatzeko leku interesgarri batzuk:\n\n- /fediverse — Kudeatu zure beste fediverso kontuak, edukia bidaltzea eta jasotzea barne.\n\nMezu hau zugandik zuregana modu pribatuan bidali da; horregatik ez zen konexiorik behar jasotzeko.",
|
||||
welcomePmBody: "Ongi etorri Oasis-era — sare sozial libre, parekideen arteko, federatu eta zifratua, gonbidapen bidezko arkitektura banatu batekin.\n\nHasteko leku interesgarri batzuk:\n\n- /profile — Editatu zure avatarra, izena, deskribapena eta zein modulu agertuko diren zure alde publikoan.\n- /invites — Gehitu pub bat sarearen gainerakoarekin federatzeko.\n- /peers — Ikusi nor dagoen konektatuta, eskaneatu LAN-a berriz, esportatu edo inportatu peer-zerrendak.\n- /inhabitants — Aurkitu eta bisitatu beste pertsonen avatarrak.\n- /tribes — Sortu edo elkartu muturretik muturrera zifratutako talde pribatuetan.\n- /inbox — Irakurri eta bidali mezu pribatuak.\n- /activity — Ikusi azken jarduera, zurea eta zure sarearena.\n- /publish — Idatzi post bat edo partekatu irudia, audioa, bideoa edo dokumentua.\n- /search — Bilatu sarearen edukia motaren arabera.\n\nKonektatzeko leku interesgarri batzuk:\n\n- /fediverse — Kudeatu zure beste fediverso kontuak, edukia bidaltzea eta jasotzea barne.\n\nMezu hau zugandik zuregana modu pribatuan bidali da; horregatik ez zen konexiorik behar jasotzeko.",
|
||||
profileVisibilityTitle: "Profil publikoaren ikusgaitasuna",
|
||||
profileVisibilityHint: "Aukeratu zein eremu ikus ditzaketen beste biztanleek zure profilean. Lehenetsia: Karma soilik.",
|
||||
profileSensorsSectionTitle: "Sentsoreak",
|
||||
|
|
@ -1262,6 +1325,9 @@ module.exports = {
|
|||
eventButton: "EKITALDIAK",
|
||||
taskButton: "ATAZAK",
|
||||
votesButton: "GOBERNUA",
|
||||
industryButton: "INDUSTRIA",
|
||||
projectButton: "PROIEKTUAK",
|
||||
shopProductButton: "PRODUKTUAK",
|
||||
reportButton: "TXOSTENAK",
|
||||
feedButton: "JARIOA",
|
||||
marketButton: "MERKATUA",
|
||||
|
|
@ -1290,7 +1356,7 @@ module.exports = {
|
|||
trendingItemStatus: "Elementuaren Egoera",
|
||||
trendingTotalVotes: "Bozkak Guztira",
|
||||
trendingTotalOpinions: "Iritzial Guztira",
|
||||
trendingNoContentMessage: "Edukirik ez.",
|
||||
trendingNoContentMessage: "Oraindik ez dago joerarik.",
|
||||
trendingAuthor: "Nork",
|
||||
trendingCreatedAtLabel: "Noiz",
|
||||
trendingTotalCount: "Kopurua Guztira",
|
||||
|
|
@ -1479,7 +1545,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Noiz",
|
||||
transfersConfirmations: "BERRESPENAK",
|
||||
transfersContainingBlock: "Bloke edukitzailea",
|
||||
transfersExportContract: "Sortu kontratua",
|
||||
transfersExportContract: "Kontratu adimenduna",
|
||||
transfersConfirmButton: "Berretsi Transferentzia",
|
||||
transfersNoItems: "Transferentziarik ez.",
|
||||
transfersMineSectionTitle: "Zeure Transferentziak",
|
||||
|
|
@ -1605,7 +1671,7 @@ module.exports = {
|
|||
cvDeleteButton: "Ezabatu",
|
||||
cvNoCV: "CV-rik ez.",
|
||||
blogSubject: "Gaia",
|
||||
blogMessage: "Edukia 8096 karakteretara mugatuta.",
|
||||
blogMessage: "Mezua",
|
||||
blogImage: "Multimedia igo (max: 50MB)",
|
||||
blogPublish: "Aurrebista",
|
||||
noPopularMessages: "Pil-pileko mezurike ez, oraindik",
|
||||
|
|
@ -2195,6 +2261,7 @@ module.exports = {
|
|||
agendaFilterReports: "TXOSTENAK",
|
||||
agendaFilterTransfers: "TRANSFERENTZIAK",
|
||||
agendaFilterJobs: "LANPOSTUAK",
|
||||
agendaFilterIndustry: "INDUSTRIA",
|
||||
agendaFilterProjects: "PROIEKTUAK",
|
||||
agendaFilterCalendars: "EGUTEGIAK",
|
||||
agendaInviteModeLabel: "Egoera",
|
||||
|
|
@ -2316,16 +2383,31 @@ module.exports = {
|
|||
privateMessage: "MP",
|
||||
pmSendTitle: "Mezu Pribatuak",
|
||||
pmSend: "Bidali!",
|
||||
pmDescription: "Erabili formulario hau beste biztanleei mezu zifratua bidaltzeko.",
|
||||
pmCancel: "Utzi",
|
||||
pmReset: "Berrezarri",
|
||||
pmSharedKeyHint: "Partekatu gako hau hartzailearekin beste bide batetik. Deszifratzeko beharrezkoa da.",
|
||||
pmDescription: "Erabili formulario hau beste biztanleei mezu/fitxategi zifratu bat bidaltzeko.",
|
||||
pmComposeTitle: "Bidali mezu bat",
|
||||
pmRecipients: "Hartzaileak",
|
||||
pmRecipientsHint: "Idatzi Oasis IDak, komaz bereizita",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "Mezu bakoitzeko 7 hartzaile gehienez.",
|
||||
pmTextPlaceholder: "Gorputza 7000 karakteretara mugatua.",
|
||||
pmSubject: "Gaia",
|
||||
pmSubjectHint: "Idatzi mezuaren gaia",
|
||||
pmText: "Mezua",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Deszifratu",
|
||||
fileShareTitle: "Partekatu fitxategi bat",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "Fitxategia",
|
||||
fileShareDownload: "Deskargatu",
|
||||
fileShareMutualError: "Elkarrekiko laguntza duten biztanleekin soilik parteka ditzakezu fitxategiak.",
|
||||
fileShareNoFile: "Ez da fitxategirik hautatu.",
|
||||
fileShareTooLarge: "Fitxategiak baimendutako tamaina gainditzen du.",
|
||||
fileShareFailed: "Ezin izan da fitxategia prestatu.",
|
||||
fileShareSendError: "Ezin izan da fitxategia bidali.",
|
||||
fileShareUnavailable: "Fitxategi hau ez dago erabilgarri une honetan. Saiatu geroago.",
|
||||
pmCrypterBadKey: "Partekatutako gakoa ez da zuzena!",
|
||||
pmCrypterTooLong: "Mezua luzeegia da Crypter-arekin zifratzeko. Laburtu eta saiatu berriro.",
|
||||
pmCrypterCipherLabel: "Berriz zifratutako mezua",
|
||||
|
|
@ -2354,15 +2436,27 @@ module.exports = {
|
|||
pmNoSubject: "(gaia gabe)",
|
||||
pmSubjectLabel: "Gaia:",
|
||||
pmBodyLabel: "Gorputza",
|
||||
pmBotJobs: "42-JobsBOT",
|
||||
pmBotProjects: "42-ProjectsBOT",
|
||||
pmBotMarket: "42-MarketBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "L.A.R.P-eko etxe gobernatzailea aldatu da.",
|
||||
politicalBotParliamentTitle: "Gobernu-ziklo berri bat hasi da Parlamentuan.",
|
||||
politicalBotTribeTitle: "Gobernu-ziklo berri bat hasi da zure Tribuetako batean.",
|
||||
politicalBotLarpIntro: "Orain {house} ari da gobernatzen ziklo honetan: {cycle}",
|
||||
politicalBotParliamentIntro: "Egungo gobernua {gov} da",
|
||||
politicalBotParliamentIntroLeader: "Egungo gobernua {gov} da, {leader}-(e)k gauzatua",
|
||||
politicalBotTribeIntro: "{tribe} Tribuko egungo gobernua {gov} da",
|
||||
politicalBotTribeIntroLeader: "{tribe} Tribuko egungo gobernua {gov} da, {leader}-(e)k gauzatua",
|
||||
politicalBotLeaderLabel: "Liderra",
|
||||
inboxJobSubscribedTitle: "Lan-eskaintzara harpidetza berria",
|
||||
pmInhabitantWithId: "OASIS ID duen biztanlea:",
|
||||
pmHasSubscribedToYourJobOffer: "zure lan-eskaintzara harpidetu da",
|
||||
inboxProjectCreatedTitle: "Proiektu berria sortu da",
|
||||
pmHasCreatedAProject: "proiektu bat sortu du",
|
||||
inboxMarketItemSoldTitle: "Artikulua salduta",
|
||||
inboxShopSoldTitle: "Produktua salduta",
|
||||
pmYourItem: "Zure artikulua",
|
||||
pmHasBeenSoldTo: "honi saldu zaio",
|
||||
pmFor: "truke",
|
||||
|
|
@ -2395,7 +2489,7 @@ module.exports = {
|
|||
blockchainContentDeleted: "Edukia ezabatu egin da",
|
||||
banking: 'Banking',
|
||||
bankingTitle: 'Banking',
|
||||
bankingDescription: 'Aztertu ECOin-en egungo balioa eta dagokion RBU esleipena, astero banatzen dena parte-hartzearen eta konfiantzaren arabera.',
|
||||
bankingDescription: "ECOin ekonomia: saldoa, oinarrizko errenta, zergak eta industria balioa.",
|
||||
bankOverview: 'Laburpena',
|
||||
bankEpochs: 'Epeak',
|
||||
bankRules: 'Arauak',
|
||||
|
|
@ -2429,6 +2523,10 @@ module.exports = {
|
|||
bankEpochId: 'Epearen IDa',
|
||||
bankRuleHash: 'Arauen snapshot hash-a',
|
||||
bankViewEpoch: 'Epea ikusi',
|
||||
bankYourIndustryBalance: "Zure industria zatia",
|
||||
bankYourUbiMonth: "Zure OBU (hilabete honetan)",
|
||||
bankYourFundsMonth: "Zure funtsak (hilabete honetan)",
|
||||
bankIndustryBalance: "Industria ekoizpena (estimatua)",
|
||||
bankUserBalance: 'Zure saldoa',
|
||||
ecoWalletNotConfigured: 'ECOin poltsa ez dago konfiguratuta',
|
||||
editWallet: 'Poltsa editatu',
|
||||
|
|
@ -2469,7 +2567,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "FUNTSIK EZ!",
|
||||
bankUbiAvailableOk: "ESKURAGARRI!",
|
||||
bankUbiAvailability: "UBI eskuragarritasuna",
|
||||
bankUbiAvailability: "OBU (sarea)",
|
||||
bankAlreadyClaimedThisMonth: "Hilabete honetan jada aldarrikatu da",
|
||||
bankUbiThisMonth: "UBI (hilabete honetan)",
|
||||
bankUbiLastClaimed: "UBI (azken aldarrikapena)",
|
||||
|
|
@ -2898,6 +2996,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Etiketak",
|
||||
jobsTagsPlaceholder: "etiketa1, etiketa2, etiketa3",
|
||||
noJobsMatch: "Ez dago bilaketarekin bat datorren lan-eskaintzarik.",
|
||||
industrySearchPlaceholder: "Bilatu fabrikak…",
|
||||
industryAllSectors: "Sektore guztiak",
|
||||
industryVisitButton: "Bisitatu industria",
|
||||
industryAdvanceTo: "Ezarri",
|
||||
industryAmount: "Kopurua",
|
||||
industryApproveBuild: "Onartu",
|
||||
industryBackToFacility: "← Fabrika",
|
||||
industryBlueprint: "Blueprint",
|
||||
industryBlueprintLabel: "Industria Blueprint",
|
||||
industryBlueprints: "Blueprint-ak",
|
||||
industryBuild: "Build",
|
||||
industryBuildNotes: "Oharrak",
|
||||
industryBuildStart: "Hasiera data",
|
||||
industryVoteUpdateButton: "Bozkatu eguneraketa",
|
||||
industryVoteDeleteButton: "Bozkatu ezabaketa",
|
||||
industryRevokeVote: "Errebokatu",
|
||||
industryTimeLeft: "Geratzen den denbora",
|
||||
industryBuildEnd: "Amaiera data",
|
||||
industryBuilds: "Build-ak",
|
||||
industryBuildTitle: "Izenburua",
|
||||
industryContribute: "Lagundu",
|
||||
industryContributeEco: "ECO lagundu",
|
||||
industryContributeLabor: "Lana lagundu",
|
||||
industryContributeButton: "Ekarpena egin",
|
||||
industryContributeMaterial: "Materiala lagundu",
|
||||
industryContributions: "Ekarpenak",
|
||||
industryContributors: "laguntzaileak",
|
||||
industryCreateBlueprintButton: "Sortu blueprint",
|
||||
industryDistribute: "Banatu",
|
||||
industryDistributeButton: "Banatu kuoten arabera",
|
||||
industryDistribution: "Banaketa",
|
||||
industryEcoAmount: "Kopurua (ECO)",
|
||||
industryEcoContribHint: "ECO ekarpenak arduradunari transferitzen zaizkio build-aren diruzaintzaren zaindari gisa.",
|
||||
industryEditBlueprint: "Editatu blueprint",
|
||||
industryFacility: "Fabrika",
|
||||
industryKindLabel: "Mota",
|
||||
industryKind_labor: "Lana",
|
||||
industryKind_material: "Materiala",
|
||||
industryKind_eco: "Funtsak",
|
||||
industryLaborHours: "Lana (orduak)",
|
||||
industryHours: "Orduak",
|
||||
industryLicense: "Lizentzia",
|
||||
industryMaterialItem: "Materiala",
|
||||
industryMaterials: "Materialak",
|
||||
industryMaterialsHint: "Material bat lerroko, izena:kopurua:prezioa formatuan.",
|
||||
industryEstMaterials: "Materialak guztira",
|
||||
industryEstLabor: "Lana guztira",
|
||||
industryEstTaxes: "Zergak",
|
||||
industryEstTotal: "Prezio estimatua",
|
||||
industryBuildingPrice: "Eraikuntza prezioa",
|
||||
industryFinalPrice: "Azken prezioa",
|
||||
industryBlueprintDescPlaceholder: "Zehaztapenak, neurriak, pisua, dokumentazioa…",
|
||||
industryMaterialValue: "Balioa (ECO)",
|
||||
industryMember: "Kidea",
|
||||
industryNewBlueprint: "Blueprint berria",
|
||||
industryNewBuild: "Proposatu build bat",
|
||||
industryEditBuild: "Editatu ekoizpena",
|
||||
industryNoBlueprint: "— bat ere ez —",
|
||||
industryNeedBlueprint: "Sortu lehenik planoa: ekoizpen bakoitzak bat egiten du.",
|
||||
industryNoBlueprints: "Oraindik ez dago blueprint-ik.",
|
||||
industryNoBuilds: "Oraindik ez dago build-ik.",
|
||||
industryNote: "Oharra",
|
||||
industryOutput: "Irteera",
|
||||
industryOutputItem: "Produktuaren izena",
|
||||
industryOutputKind: "Produktu mota",
|
||||
industryOutputQty: "Unitateak ekoizpen bakoitzeko",
|
||||
industryOutputUnit: "Neurri-unitatea",
|
||||
industryOutputValue: "Irteera balioa (ECO, adib. salmentatik)",
|
||||
industryPayout: "Ordainketa",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Sortu lana",
|
||||
industryPot: "Poltsa",
|
||||
industryProposeBuildButton: "Proposatu build",
|
||||
industryProposer: "Proposatzailea",
|
||||
industryAuthor: "Egilea",
|
||||
industrySellOnMarket: "Bidali merkatura",
|
||||
industrySendToProjects: "Sortu proiektua",
|
||||
industryShare: "Kuota",
|
||||
industryShares: "Kuotak",
|
||||
industrySkills: "Trebetasunak",
|
||||
industryTreasury: "Diruzaintza",
|
||||
industryKind_physical: "Fisikoa",
|
||||
industryKind_digital: "Digitala",
|
||||
industryBuildStatus_PROPOSED: "PROPOSATUA",
|
||||
industryBuildStatus_REJECTED: "BAZTERTUA",
|
||||
industryBuildStatus_APPROVED: "ONARTUA",
|
||||
industryBuildStatus_STOCKING: "HORNITZEN",
|
||||
industryBuildStatus_IN_PRODUCTION: "EKOIZPENEAN",
|
||||
industryBuildStatus_COMPLETED: "OSATUA",
|
||||
industryBuildStatus_FAILED: "HUTS EGINDA",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "Fabrika batean onartu zaituzte.",
|
||||
industryBotApplicationTitle: "Kidetza eskaera berria zure fabrikan.",
|
||||
industryBotInvitedTitle: "Fabrika batera gonbidatu zaituzte.",
|
||||
industryBotDissolvedTitle: "Zure fabrika bat desegin da.",
|
||||
industryBotBuildApprovedTitle: "Build bat onartu da.",
|
||||
industryBotDistributedTitle: "Build baten irteera banatu da.",
|
||||
industryFilterRules: "ARAUAK",
|
||||
industryRulesTitle: "Arauak",
|
||||
industryRulesIntro: "Industry-k biztanleei ekoizpen bideak modu kolektiboan izatea ahalbidetzen die: Fabrika bat sareko lantegia da, inork pribatuki ez duena.",
|
||||
industryRulesSteward: "Sortzailea arduraduna da — zaindaria, ez jabea: ezin du Fabrika bakarrik saldu, pribatizatu edo desegin.",
|
||||
industryRulesMembership: "Kidetza politikak nola sartu erabakitzen du: Irekia (berehala), Botoz (kideen botoak onartuta) edo Gonbidapenez soilik (kide batek lehenik gonbidatu behar zaitu).",
|
||||
industryRulesQuorum: "Quoruma erabaki batek balio izateko bozkatu behar duten gutxieneko kide kopurua da, Fabrika txiki bat pertsona bakar batek erabaki ez dezan.",
|
||||
industryRulesMajority: "Gehiengoa onartzeko behar den boto frakzioa da (0,5 = erdia, 1 = aho batez); erabaki bat onartzen da BAI botoek gutxienez max(quoruma, kideak × gehiengoa) lortzen dutenean.",
|
||||
industryRulesDecisions: "Kideek bozkatzen dute berriak onartzeko, build-ak onartzeko eta Fabrika desegiteko; arduradunak ezin ditu erabaki kolektibo hauek baztertu.",
|
||||
industryRulesBlueprints: "Blueprint-ak errezeta libreak dira (COPYLEFT) — sarrerak (materialak, lan orduak, trebetasunak) eta irteera (ondasun fisiko edo digital bat) — eta edonork forka ditzake.",
|
||||
industryRulesBuilds: "Build bat ekoizpen agindua da: PROPOSATUA → ONARTUA (botoz) → HORNITZEN → EKOIZPENEAN → OSATUA, eta onartu ondoren soilik onartzen ditu ekarpenak.",
|
||||
industryRulesContributions: "Kideek lana (orduak), materialak (adierazitako ECO balioa) edo ECO ematen diote build bati; ekarpen bakoitzak karma irabazten du.",
|
||||
industryRulesLaborRate: "Lan tarifa Fabrika honetan lan ordu baten ECO balioa da; orduak karma bihurtzen ditu ahalegina eta kapitala modu justuan konparatzeko: karma = orduak × tarifa + material balioa + ECO.",
|
||||
industryRulesShares: "Build batean zure kuota zure karma ÷ karma guztia da, eta irteera balioaren zenbat jasotzen duzun zehazten du.",
|
||||
industryRulesDistribution: "Ekoizpen bat amaitzean, stewardak pota (ekoizpenaren funtsak gehi salmenta balioa) banatzen du ekarpena egin dutenen artean, beren partaidetzaren arabera.",
|
||||
industryRulesTreasury: "ECO ekarpenak arduradunak gordetzen ditu build-aren diruzaintza gisa banaketa arte; mugimendu guztiak sarean erregistratzen dira eta gatazkak Courts-era joan daitezke.",
|
||||
industryJobs: "Lanpostuak",
|
||||
industryNoJobs: "Oraindik ez dago lanposturik.",
|
||||
industryCreatePosition: "Sortu lanpostua",
|
||||
industryViewCV: "CV",
|
||||
industryReportButton: "Salatu",
|
||||
industryCreateTask: "Sortu zeregina",
|
||||
industryOpenDispute: "Ireki auzia",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "adib. unitatea, kg, lizentzia",
|
||||
industryOutputItemPlaceholder: "adib. robota",
|
||||
industryOutputQtyPlaceholder: "adib. 5",
|
||||
industrySkillsPlaceholder: "adib. soldadura, sareak, eguzki-instalazioa",
|
||||
industryCreateInvite: "Sortu gonbidapena",
|
||||
industryPauseVotes: "Egoera botoak",
|
||||
industryTitle: "Industria",
|
||||
industryDescription: "Ekoizpen bideak modu kolektiboan kudeatzeko modulua.",
|
||||
industryLabel: "Industria",
|
||||
typeIndustryBuild: "BUILD",
|
||||
typeIndustryBlueprint: "BLUEPRINT",
|
||||
typeIndustryAllocation: "BANAKETA",
|
||||
typeIndustry: "INDUSTRIA",
|
||||
modulesIndustryLabel: "Industria",
|
||||
modulesIndustryDescription: "Ekoizpen bideak modu kolektiboan kudeatzeko modulua.",
|
||||
industryFilterAll: "GUZTIAK",
|
||||
industryFilterMember: "KIDEA",
|
||||
industryFilterBlueprints: "PLANOAK",
|
||||
industryFilterBuilds: "EKOIZPENAK",
|
||||
industryFilterMine: "NIREAK",
|
||||
industryFilterActive: "MARTXAN",
|
||||
industryFilterPaused: "ETENDA",
|
||||
industryFilterDissolved: "DESEGINDA",
|
||||
industryAllTitle: "Industria",
|
||||
industryMemberTitle: "Kide naizen fabrikak",
|
||||
industryMineTitle: "Nire fabrikak",
|
||||
industryActiveTitle: "Martxan",
|
||||
industryPausedTitle: "Etendako fabrikak",
|
||||
industryDissolvedTitle: "Desegindako fabrikak",
|
||||
industryNoFacilitiesFound: "Ez da fabrikarik aurkitu.",
|
||||
industryCreateFacility: "Sortu fabrika",
|
||||
industryMembers: "Kideak",
|
||||
industryMemberBadge: "KIDEA",
|
||||
industryName: "Izena",
|
||||
industryNamePlaceholder: "Fabrikaren izena",
|
||||
industryDescriptionLabel: "Deskribapena",
|
||||
industryDescriptionPlaceholder: "Zer ekoizten du fabrika honek?",
|
||||
industrySector: "Sektorea",
|
||||
industryMembershipPolicy: "Kidetza politika",
|
||||
industryQuorum: "Quoruma",
|
||||
industryMajority: "Gehiengoa",
|
||||
industryLaborRate: "Lan tarifa",
|
||||
industryCreateButton: "Sortu fabrika",
|
||||
industryUpdateButton: "Eguneratu",
|
||||
industrySteward: "Arduraduna",
|
||||
industryStatusActive: "MARTXAN",
|
||||
industryStatusPaused: "ETENDA",
|
||||
industryStatusDissolved: "DESEGINDA",
|
||||
industryStatusLabel: "Egoera",
|
||||
industryJoinButton: "Elkartu",
|
||||
industryApplyButton: "Eskatu sartzea",
|
||||
industryLeaveButton: "Irten",
|
||||
industryInviteButton: "Gonbidatu",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "Gonbidapena behar duzu elkartzeko.",
|
||||
industryPauseButton: "Bozkatu gelditzea",
|
||||
industryResumeButton: "Bozkatu berrekitea",
|
||||
industryEditButton: "Editatu",
|
||||
industryDeleteButton: "Ezabatu",
|
||||
industryBackToList: "← Industria",
|
||||
industryPendingApplicants: "Zain dauden eskaerak",
|
||||
industryVotesYes: "bai",
|
||||
industryVotesNo: "ez",
|
||||
industryAlreadyVoted: "bozkatuta",
|
||||
industryAdmit: "Onartu",
|
||||
industryReject: "Ukatu",
|
||||
industryDissolveTitle: "Desegin fabrika",
|
||||
industryDissolveHint: "Desegiteak boto kolektiboa behar du; arduradunak ezin du bakarrik desegin.",
|
||||
industryDissolveVote: "Bozkatu desegitea",
|
||||
industrySector_software: "Softwarea",
|
||||
industrySector_hardware: "Hardwarea",
|
||||
industrySector_agriculture: "Nekazaritza",
|
||||
industrySector_textile: "Ehungintza",
|
||||
industrySector_energy: "Energia",
|
||||
industrySector_food: "Elikadura",
|
||||
industrySector_construction: "Eraikuntza",
|
||||
industrySector_media: "Komunikabideak",
|
||||
industrySector_services: "Zerbitzuak",
|
||||
industrySector_other: "Bestelakoa",
|
||||
industryPolicy_open: "Irekia",
|
||||
industryPolicy_vote: "Botoz",
|
||||
industryPolicy_invite: "Gonbidapenez soilik",
|
||||
projectsTitle: "Proiektuak",
|
||||
projectsDescription: "Sortu, finantzatu eta jarraitu komunitateak gidatutako proiektuak zure sarean.",
|
||||
projectCreateProject: "Proiektu Bat Sortu",
|
||||
|
|
@ -3256,6 +3556,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "Deskribapena",
|
||||
chatMessageReply: "Erantzuna",
|
||||
chatMessageLabel: "Mezua",
|
||||
chatCategory: "Kategoria",
|
||||
chatStatus: "EGOERA",
|
||||
chatFilterAll: "GUZTIAK",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
fr: {
|
||||
bbAdd: "Ajouter",
|
||||
bbQuickActions: "Actions rapides",
|
||||
bbPickTitle: "Épingler un module",
|
||||
bbPickDesc: "Choisis un module pour l'emplacement + de la barre inférieure.",
|
||||
bbPickNone: "Aucun",
|
||||
bbManage: "Modifier",
|
||||
bbYourBar: "Ta barre",
|
||||
bbRemove: "Retirer",
|
||||
bbFull: "Maximum atteint",
|
||||
bbDone: "Terminé",
|
||||
activityChangeFilter: "Changer de filtre",
|
||||
emptyConnectHint: "Connecte-toi à un pub pour synchroniser avec le réseau.",
|
||||
emptyConnectCta: "Se connecter à un pub",
|
||||
menuCommunity: "Communauté",
|
||||
activityGroupCommunity: "Communauté et gouvernance",
|
||||
activityGroupOrg: "Organisation",
|
||||
activityGroupComm: "Communication",
|
||||
activityGroupEconomy: "Économie",
|
||||
activityGroupMedia: "Contenu et médias",
|
||||
activityGroupOther: "Autres",
|
||||
languageName: "Français",
|
||||
shopOrderStatusPaid: "Paiement reçu",
|
||||
shopOrderStatusReceived: "Reçu",
|
||||
|
|
@ -419,7 +399,8 @@ module.exports = {
|
|||
publish: "Publier",
|
||||
contentWarningPlaceholder: "Ajoutez un titre à votre post (optionnel)",
|
||||
privateWarningPlaceholder: "Ajoutez des habitants pour envoyer un post privé (optionnel)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Corps limité à 7000 caractères.",
|
||||
publishTooLong: "Votre publication est trop longue. Veuillez la raccourcir.",
|
||||
publishCustomDescription: [
|
||||
"RAPPELEZ-VOUS : En raison de la technologie blockchain, une fois que vous avez publié quelque chose, cela ne peut pas être modifié ni supprimé. Réfléchissez bien !",
|
||||
],
|
||||
|
|
@ -484,7 +465,89 @@ module.exports = {
|
|||
passwordLengthInfo: "Le mot de passe doit contenir au moins 32 caractères.",
|
||||
passwordImport: "Saisissez votre mot de passe pour déchiffrer les données qui seront enregistrées sur votre système (nom : secret)",
|
||||
exportPasswordPlaceholder: "Utilisez des minuscules, majuscules, chiffres et symboles",
|
||||
fileInfo: "Votre secret chiffré sera enregistré sur votre système (nom : oasis.enc)",
|
||||
fileInfo: "Votre secret chiffré sera téléchargé sur votre appareil (nom : oasis.enc)",
|
||||
developer: "Développement",
|
||||
devTitle: "Développement",
|
||||
welcomeBannerText: "Bienvenue sur OASIS. Suivez ces quelques étapes pour configurer votre avatar.",
|
||||
welcomeBannerAction: "Commencer !",
|
||||
welcomeTitle: "Bienvenue",
|
||||
welcomeStepGreetingAction: "Envoyer",
|
||||
welcomeJoinPubButton: "Rejoindre le pub",
|
||||
welcomeStepLarpAction: "Rejoindre « L Académie »",
|
||||
welcomeStepLarpText: "Rejoignez notre jeu de rôle grandeur nature.",
|
||||
welcomeStepLarpTitle: "Rejoindre le L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "Envoyez un « Hello world ! »",
|
||||
welcomeStepGreetingText: "Envoyez un message pour que les autres habitants puissent vous découvrir.",
|
||||
welcomeJoinPub: "Rejoindre",
|
||||
welcomeDescription: "Quelques choses à faire avant de commencer.",
|
||||
welcomeProgress: "Terminé",
|
||||
welcomeStepDone: "fait",
|
||||
welcomeStepPending: "en attente",
|
||||
welcomeSkip: "Pas maintenant",
|
||||
welcomeStepLanguageTitle: "Choisissez votre langue",
|
||||
welcomeStepLanguageText: "Oasis parle plusieurs langues. Vous pouvez en changer quand vous voulez.",
|
||||
welcomeStepProfileTitle: "Modifiez votre profil",
|
||||
welcomeStepProfileText: "Choisissez un nom, ajoutez une description et mettez une image pour que les autres habitants vous reconnaissent.",
|
||||
welcomeStepProfileAction: "Enregistrer le profil",
|
||||
welcomeStepFederationTitle: "Rejoignez le réseau principal",
|
||||
welcomeStepFederationText: "Connectez-vous à notre pub pour rencontrer d autres habitants et commencer à répliquer.",
|
||||
welcomeStepFederationAction: "Voir les invitations",
|
||||
welcomeStepBackupTitle: "Sauvegardez votre ID",
|
||||
welcomeStepBackupText: "Votre identité est un fichier de clés sur cet appareil.",
|
||||
welcomeStepBackupWarning: "SI VOUS LE PERDEZ, PERSONNE NE POURRA LE RÉCUPÉRER.",
|
||||
welcomeStepBackupAction: "Sauvegarder !",
|
||||
welcomeCompleteTitle: "Tout est prêt.",
|
||||
welcomeCompleteText: "Votre nœud est prêt. À partir d'ici le réseau grandit avec les gens que vous suivez.",
|
||||
welcomeFindPeople: "Trouver des habitants",
|
||||
devFilterFiles: "FICHIERS",
|
||||
devFilterSearch: "CHERCHER",
|
||||
devFilterModules: "MODULES",
|
||||
devFilterTranslations: "TRADUCTIONS",
|
||||
devFilterStyles: "STYLES",
|
||||
devFilterTests: "TESTS",
|
||||
devVersion: "Version",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Suites de tests",
|
||||
devParentFolder: "Dossier parent",
|
||||
devOpenFolder: "ouvrir",
|
||||
devDescription: "Explorez le code source exécuté sur ce nœud.",
|
||||
devTreeTitle: "Fichiers",
|
||||
devSearchTitle: "Chercher dans le code",
|
||||
devMapTitle: "Modules",
|
||||
devRoot: "racine",
|
||||
devRootButton: "RACINE",
|
||||
devSearchPlaceholder: "Texte à chercher dans le code",
|
||||
devAnyExtension: "Tout fichier",
|
||||
devSearchButton: "Chercher",
|
||||
devStatsFiles: "Fichiers",
|
||||
devStatsLines: "Lignes",
|
||||
devStatsModules: "Modules",
|
||||
devStatsLanguages: "Langues",
|
||||
devNotViewable: "non affichable",
|
||||
devEmptyFolder: "Ce dossier est vide.",
|
||||
devSize: "Taille",
|
||||
devShowing: "Affichage",
|
||||
devLine: "ligne",
|
||||
devReportBug: "Signaler un Bug",
|
||||
devCreateTask: "Créer une Tâche",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Trouvé en lisant le code source d'Oasis",
|
||||
devTaskPrefix: "Réviser",
|
||||
devPrevPage: "Lignes précédentes",
|
||||
devNextPage: "Lignes suivantes",
|
||||
devMatches: "correspondances",
|
||||
devFilesScanned: "fichiers analysés",
|
||||
devNoResults: "Aucune correspondance, pour l'instant.",
|
||||
devColModule: "Module",
|
||||
devColState: "État",
|
||||
devColModel: "Modèle",
|
||||
devColView: "Vue",
|
||||
devColRoutes: "Routes",
|
||||
devColTests: "Tests",
|
||||
devOn: "actif",
|
||||
devOff: "inactif",
|
||||
modulesDevLabel: "Développement",
|
||||
modulesDevDescription: "Module pour gérer le code source d'Oasis.",
|
||||
themeIntro:
|
||||
"Choisissez un thème.",
|
||||
setTheme: "Définir le thème",
|
||||
|
|
@ -682,7 +745,7 @@ module.exports = {
|
|||
spreadLabel: "Diffuser",
|
||||
spreadHint: "Diffusez ceci à ceux qui vous soutiennent (réplique via votre feed).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Bienvenue sur Oasis — un réseau social libre, pair-à-pair, fédéré et chiffré, avec une architecture distribuée sur invitation uniquement.\n\nQuelques endroits intéressants par où commencer :\n\n- /profile — Édite ton avatar, ton nom, ta description et les modules visibles sur ta partie publique.\n- /invites — Ajoute un pub pour fédérer avec le reste du réseau.\n- /peers — Vois qui est connecté, rescanne ton LAN, exporte ou importe des listes de pairs.\n- /inhabitants — Découvre et visite les avatars d'autres personnes.\n- /tribes — Crée ou rejoins des groupes privés chiffrés de bout en bout.\n- /inbox — Lis et envoie des messages privés.\n- /activity — Vois l'activité récente, la tienne et celle de ton réseau.\n- /publish — Écris un post ou partage une image, un audio, une vidéo ou un document.\n\nQuelques endroits intéressants pour se connecter :\n\n- /fediverse — Gérez vos autres comptes du fédiverse, y compris l'envoi et la réception de contenu.\n\nCe message a été envoyé en privé de toi à toi-même : aucune connexion n'était nécessaire pour le recevoir.",
|
||||
welcomePmBody: "Bienvenue sur Oasis — un réseau social libre, pair-à-pair, fédéré et chiffré, avec une architecture distribuée sur invitation uniquement.\n\nQuelques endroits intéressants par où commencer :\n\n- /profile — Édite ton avatar, ton nom, ta description et les modules visibles sur ta partie publique.\n- /invites — Ajoute un pub pour fédérer avec le reste du réseau.\n- /peers — Vois qui est connecté, rescanne ton LAN, exporte ou importe des listes de pairs.\n- /inhabitants — Découvre et visite les avatars d'autres personnes.\n- /tribes — Crée ou rejoins des groupes privés chiffrés de bout en bout.\n- /inbox — Lis et envoie des messages privés.\n- /activity — Vois l'activité récente, la tienne et celle de ton réseau.\n- /publish — Écris un post ou partage une image, un audio, une vidéo ou un document.\n- /search — Recherchez le contenu du réseau par type.\n\nQuelques endroits intéressants pour se connecter :\n\n- /fediverse — Gérez vos autres comptes du fédiverse, y compris l'envoi et la réception de contenu.\n\nCe message a été envoyé en privé de toi à toi-même : aucune connexion n'était nécessaire pour le recevoir.",
|
||||
profileVisibilityTitle: "Visibilité du profil public",
|
||||
profileVisibilityHint: "Choisissez les champs visibles par les autres habitants sur votre profil. Par défaut, seul Karma est affiché.",
|
||||
profileSensorsSectionTitle: "Capteurs",
|
||||
|
|
@ -1213,6 +1276,9 @@ module.exports = {
|
|||
eventButton: "ÉVÉNEMENTS",
|
||||
taskButton: "TÂCHES",
|
||||
votesButton: "GOUVERNANCE",
|
||||
industryButton: "INDUSTRIE",
|
||||
projectButton: "PROJETS",
|
||||
shopProductButton: "PRODUITS",
|
||||
reportButton: "RAPPORTS",
|
||||
feedButton: "FLUX",
|
||||
marketButton: "MARCHÉ",
|
||||
|
|
@ -1241,7 +1307,7 @@ module.exports = {
|
|||
trendingItemStatus: "Statut de l’article",
|
||||
trendingTotalVotes: "Total des votes",
|
||||
trendingTotalOpinions: "Total des avis",
|
||||
trendingNoContentMessage: "Aucune tendance disponible pour le moment.",
|
||||
trendingNoContentMessage: "Pas encore de tendances.",
|
||||
trendingAuthor: "Par",
|
||||
trendingCreatedAtLabel: "Créé le",
|
||||
trendingTotalCount: "Total des compteurs",
|
||||
|
|
@ -1430,7 +1496,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Créé le",
|
||||
transfersConfirmations: "CONFIRMATIONS",
|
||||
transfersContainingBlock: "Bloc contenant",
|
||||
transfersExportContract: "Créer le contrat",
|
||||
transfersExportContract: "Contrat intelligent",
|
||||
transfersConfirmButton: "Confirmer le transfert",
|
||||
transfersNoItems: "Aucun transfert trouvé.",
|
||||
transfersMineSectionTitle: "Vos transferts",
|
||||
|
|
@ -1556,7 +1622,7 @@ module.exports = {
|
|||
cvDeleteButton: "Supprimer",
|
||||
cvNoCV: "Aucun CV trouvé.",
|
||||
blogSubject: "Sujet",
|
||||
blogMessage: "Corps limité à 8096 caractères.",
|
||||
blogMessage: "Message",
|
||||
blogImage: "Télécharger un média (max: 50 Mo)",
|
||||
blogPublish: "Aperçu",
|
||||
noPopularMessages: "Aucun message populaire publié pour l’instant",
|
||||
|
|
@ -2186,6 +2252,7 @@ module.exports = {
|
|||
agendaFilterReports: "RAPPORTS",
|
||||
agendaFilterTransfers: "TRANSFERTS",
|
||||
agendaFilterJobs: "EMPLOIS",
|
||||
agendaFilterIndustry: "INDUSTRIE",
|
||||
agendaFilterProjects: "PROJETS",
|
||||
agendaFilterCalendars: "CALENDRIERS",
|
||||
agendaNoItems: "Aucune affectation trouvée.",
|
||||
|
|
@ -2307,16 +2374,31 @@ module.exports = {
|
|||
privateMessage: "MP",
|
||||
pmSendTitle: "Messages privés",
|
||||
pmSend: "Envoyer !",
|
||||
pmDescription: "Utilisez ce formulaire pour envoyer un message chiffré à d’autres habitants.",
|
||||
pmCancel: "Annuler",
|
||||
pmReset: "Réinitialiser",
|
||||
pmSharedKeyHint: "Partagez cette clé avec le destinataire par un autre canal. Elle est nécessaire pour déchiffrer.",
|
||||
pmDescription: "Utilisez ce formulaire pour envoyer un message/fichier chiffré à d'autres habitants.",
|
||||
pmComposeTitle: "Envoyer un message",
|
||||
pmRecipients: "Destinataires",
|
||||
pmRecipientsHint: "Saisissez les IDs Oasis séparés par des virgules",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "Jusqu'à 7 destinataires par message.",
|
||||
pmTextPlaceholder: "Corps limité à 7000 caractères.",
|
||||
pmSubject: "Sujet",
|
||||
pmSubjectHint: "Saisissez l’objet du message",
|
||||
pmText: "Message",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Déchiffrer",
|
||||
fileShareTitle: "Partager un fichier",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "Fichier",
|
||||
fileShareDownload: "Télécharger",
|
||||
fileShareMutualError: "Vous ne pouvez partager des fichiers qu'avec des habitants en soutien mutuel.",
|
||||
fileShareNoFile: "Aucun fichier sélectionné.",
|
||||
fileShareTooLarge: "Le fichier dépasse la taille autorisée.",
|
||||
fileShareFailed: "Impossible de préparer le fichier.",
|
||||
fileShareSendError: "Impossible d'envoyer le fichier.",
|
||||
fileShareUnavailable: "Ce fichier n'est pas disponible pour le moment. Réessayez plus tard.",
|
||||
pmCrypterBadKey: "La clé partagée est incorrecte !",
|
||||
pmCrypterTooLong: "Le message est trop long pour être chiffré avec le Crypter. Raccourcissez-le et réessayez.",
|
||||
pmCrypterCipherLabel: "Message rechiffré",
|
||||
|
|
@ -2345,15 +2427,27 @@ module.exports = {
|
|||
pmNoSubject: "(sans objet)",
|
||||
pmSubjectLabel: "Objet :",
|
||||
pmBodyLabel: "Corps",
|
||||
pmBotJobs: "42-EmploisBOT",
|
||||
pmBotProjects: "42-ProjetsBOT",
|
||||
pmBotMarket: "42-MarchéBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "La maison dirigeante du L.A.R.P a changé.",
|
||||
politicalBotParliamentTitle: "Un nouveau cycle de gouvernement a commencé au Parlement.",
|
||||
politicalBotTribeTitle: "Un nouveau cycle de gouvernement a commencé dans l'une de tes Tribus.",
|
||||
politicalBotLarpIntro: "Maintenant {house} gouverne durant ce cycle : {cycle}",
|
||||
politicalBotParliamentIntro: "Le gouvernement actuel est {gov}",
|
||||
politicalBotParliamentIntroLeader: "Le gouvernement actuel est {gov}, exercé par {leader}",
|
||||
politicalBotTribeIntro: "Le gouvernement actuel dans la Tribu {tribe} est {gov}",
|
||||
politicalBotTribeIntroLeader: "Le gouvernement actuel dans la Tribu {tribe} est {gov}, exercé par {leader}",
|
||||
politicalBotLeaderLabel: "Chef",
|
||||
inboxJobSubscribedTitle: "Nouvelle inscription à votre offre d’emploi",
|
||||
pmInhabitantWithId: "Habitat avec ID OASIS :",
|
||||
pmHasSubscribedToYourJobOffer: "s’est inscrit à votre offre d’emploi",
|
||||
inboxProjectCreatedTitle: "Nouveau projet créé",
|
||||
pmHasCreatedAProject: "a créé un projet",
|
||||
inboxMarketItemSoldTitle: "Article vendu",
|
||||
inboxShopSoldTitle: "Produit vendu",
|
||||
pmYourItem: "Votre article",
|
||||
pmHasBeenSoldTo: "a été vendu à",
|
||||
pmFor: "pour",
|
||||
|
|
@ -2386,7 +2480,7 @@ module.exports = {
|
|||
blockchainBack: 'Retour à l’explorateur',
|
||||
banking: 'Banque',
|
||||
bankingTitle: 'Banque',
|
||||
bankingDescription: 'Explorez la valeur actuelle d’ECOin et l’allocation RBU correspondante, distribuée chaque semaine en fonction de la participation et de la confiance.',
|
||||
bankingDescription: "L'économie ECOin : solde, revenu de base, taxes et valeur de l'industrie.",
|
||||
bankOverview: 'Aperçu',
|
||||
bankEpochs: 'Époques',
|
||||
bankRules: 'Règles',
|
||||
|
|
@ -2420,6 +2514,10 @@ module.exports = {
|
|||
bankEpochId: 'ID de l’époque',
|
||||
bankRuleHash: 'Hash de l’instantané des règles',
|
||||
bankViewEpoch: 'Voir l’époque',
|
||||
bankYourIndustryBalance: "Votre part de l'industrie",
|
||||
bankYourUbiMonth: "Votre RBU (ce mois-ci)",
|
||||
bankYourFundsMonth: "Vos fonds (ce mois-ci)",
|
||||
bankIndustryBalance: "Production industrielle (estimée)",
|
||||
bankUserBalance: 'Votre solde',
|
||||
ecoWalletNotConfigured: 'Portefeuille ECOin non configuré',
|
||||
editWallet: 'Modifier le portefeuille',
|
||||
|
|
@ -2460,7 +2558,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "PAS DE FONDS!",
|
||||
bankUbiAvailableOk: "DISPONIBLE!",
|
||||
bankUbiAvailability: "Disponibilité UBI",
|
||||
bankUbiAvailability: "RBU (réseau)",
|
||||
bankAlreadyClaimedThisMonth: "Déjà réclamé ce mois-ci",
|
||||
bankUbiThisMonth: "RBU (ce mois)",
|
||||
bankUbiLastClaimed: "RBU (dernière réclamation)",
|
||||
|
|
@ -2889,6 +2987,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Étiquettes",
|
||||
jobsTagsPlaceholder: "tag1, tag2, tag3",
|
||||
noJobsMatch: "Aucune offre ne correspond à votre recherche.",
|
||||
industrySearchPlaceholder: "Rechercher des usines…",
|
||||
industryAllSectors: "Tous les secteurs",
|
||||
industryVisitButton: "Visiter l’industrie",
|
||||
industryAdvanceTo: "Passer à",
|
||||
industryAmount: "Montant",
|
||||
industryApproveBuild: "Approuver",
|
||||
industryBackToFacility: "← Usine",
|
||||
industryBlueprint: "Blueprint",
|
||||
industryBlueprintLabel: "Blueprint d’industrie",
|
||||
industryBlueprints: "Blueprints",
|
||||
industryBuild: "Build",
|
||||
industryBuildNotes: "Notes",
|
||||
industryBuildStart: "Date de début",
|
||||
industryVoteUpdateButton: "Voter la mise à jour",
|
||||
industryVoteDeleteButton: "Voter la suppression",
|
||||
industryRevokeVote: "Révoquer",
|
||||
industryTimeLeft: "Temps restant",
|
||||
industryBuildEnd: "Date de fin",
|
||||
industryBuilds: "Builds",
|
||||
industryBuildTitle: "Titre",
|
||||
industryContribute: "Contribuer",
|
||||
industryContributeEco: "Contribuer en ECO",
|
||||
industryContributeLabor: "Contribuer du travail",
|
||||
industryContributeButton: "Contribuer",
|
||||
industryContributeMaterial: "Contribuer du matériel",
|
||||
industryContributions: "Contributions",
|
||||
industryContributors: "contributeurs",
|
||||
industryCreateBlueprintButton: "Créer un blueprint",
|
||||
industryDistribute: "Distribuer",
|
||||
industryDistributeButton: "Distribuer par parts",
|
||||
industryDistribution: "Distribution",
|
||||
industryEcoAmount: "Montant (ECO)",
|
||||
industryEcoContribHint: "Les contributions en ECO sont transférées à l'intendant en tant que dépositaire de la trésorerie du build.",
|
||||
industryEditBlueprint: "Modifier le blueprint",
|
||||
industryFacility: "Usine",
|
||||
industryKindLabel: "Type",
|
||||
industryKind_labor: "Main-d'œuvre",
|
||||
industryKind_material: "Matériau",
|
||||
industryKind_eco: "Fonds",
|
||||
industryLaborHours: "Main-d'œuvre (heures)",
|
||||
industryHours: "Heures",
|
||||
industryLicense: "Licence",
|
||||
industryMaterialItem: "Matériel",
|
||||
industryMaterials: "Matériaux",
|
||||
industryMaterialsHint: "Un matériau par ligne, au format nom:quantité:prix.",
|
||||
industryEstMaterials: "Total matériaux",
|
||||
industryEstLabor: "Total main-d'œuvre",
|
||||
industryEstTaxes: "Taxes",
|
||||
industryEstTotal: "Prix estimé",
|
||||
industryBuildingPrice: "Prix de fabrication",
|
||||
industryFinalPrice: "Prix final",
|
||||
industryBlueprintDescPlaceholder: "Spécifications, dimensions, poids, documentation…",
|
||||
industryMaterialValue: "Valeur (ECO)",
|
||||
industryMember: "Membre",
|
||||
industryNewBlueprint: "Nouveau blueprint",
|
||||
industryNewBuild: "Proposer un build",
|
||||
industryEditBuild: "Modifier la production",
|
||||
industryNoBlueprint: "— aucun —",
|
||||
industryNeedBlueprint: "Créez d'abord un plan : chaque production en fabrique un.",
|
||||
industryNoBlueprints: "Aucun blueprint pour l'instant.",
|
||||
industryNoBuilds: "Aucun build pour l'instant.",
|
||||
industryNote: "Note",
|
||||
industryOutput: "Sortie",
|
||||
industryOutputItem: "Nom du produit",
|
||||
industryOutputKind: "Type de produit",
|
||||
industryOutputQty: "Unités par production",
|
||||
industryOutputUnit: "Unité de mesure",
|
||||
industryOutputValue: "Valeur de sortie (ECO, p. ex. de la vente)",
|
||||
industryPayout: "Paiement",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Créer un emploi",
|
||||
industryPot: "Cagnotte",
|
||||
industryProposeBuildButton: "Proposer le build",
|
||||
industryProposer: "Proposant",
|
||||
industryAuthor: "Auteur",
|
||||
industrySellOnMarket: "Envoyer au marché",
|
||||
industrySendToProjects: "Créer un projet",
|
||||
industryShare: "Part",
|
||||
industryShares: "Parts",
|
||||
industrySkills: "Compétences",
|
||||
industryTreasury: "Trésorerie",
|
||||
industryKind_physical: "Physique",
|
||||
industryKind_digital: "Numérique",
|
||||
industryBuildStatus_PROPOSED: "PROPOSÉ",
|
||||
industryBuildStatus_REJECTED: "REJETÉ",
|
||||
industryBuildStatus_APPROVED: "APPROUVÉ",
|
||||
industryBuildStatus_STOCKING: "APPROVISIONNEMENT",
|
||||
industryBuildStatus_IN_PRODUCTION: "EN PRODUCTION",
|
||||
industryBuildStatus_COMPLETED: "TERMINÉ",
|
||||
industryBuildStatus_FAILED: "ÉCHOUÉ",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "Vous avez été admis dans une usine.",
|
||||
industryBotApplicationTitle: "Nouvelle demande d'adhésion dans votre usine.",
|
||||
industryBotInvitedTitle: "Vous avez été invité dans une usine.",
|
||||
industryBotDissolvedTitle: "Une usine dont vous faites partie a été dissoute.",
|
||||
industryBotBuildApprovedTitle: "Un build a été approuvé.",
|
||||
industryBotDistributedTitle: "La sortie d'un build a été distribuée.",
|
||||
industryFilterRules: "RÈGLES",
|
||||
industryRulesTitle: "Règles",
|
||||
industryRulesIntro: "Industry permet aux habitants de posséder collectivement les moyens de production : une Usine est un atelier du réseau que personne ne possède à titre privé.",
|
||||
industryRulesSteward: "Le fondateur est l'intendant — un gardien, pas un propriétaire : il ne peut ni vendre, ni privatiser, ni dissoudre l'Usine seul.",
|
||||
industryRulesMembership: "La politique d'adhésion définit comment on rejoint : Ouverte (adhésion immédiate), Par vote (admis par le vote des membres) ou Sur invitation (un membre doit inviter d'abord).",
|
||||
industryRulesQuorum: "Le quorum est le nombre minimum de membres qui doivent voter pour qu'une décision compte, afin qu'une petite Usine ne soit pas décidée par une seule personne.",
|
||||
industryRulesMajority: "La majorité est la fraction de votes nécessaire (0,5 = moitié, 1 = unanimité) ; une décision passe quand les OUI atteignent au moins max(quorum, membres × majorité).",
|
||||
industryRulesDecisions: "Les membres votent pour admettre de nouveaux venus, approuver les builds et dissoudre l'Usine ; l'intendant ne peut pas passer outre ces décisions collectives.",
|
||||
industryRulesBlueprints: "Les Blueprints sont des recettes libres (COPYLEFT) — les intrants (matériaux, heures de travail, compétences) et la sortie (un bien physique ou numérique) — et chacun peut les forker.",
|
||||
industryRulesBuilds: "Un Build est un ordre de production : PROPOSÉ → APPROUVÉ (par vote) → APPROVISIONNEMENT → EN PRODUCTION → TERMINÉ, et il n'accepte des contributions qu'une fois approuvé.",
|
||||
industryRulesContributions: "Les membres contribuent en travail (heures), matériaux (valeur ECO déclarée) ou ECO à un build ; chaque contribution rapporte du karma.",
|
||||
industryRulesLaborRate: "Le taux de travail est la valeur ECO d'une heure de travail dans cette Usine ; il convertit les heures en karma pour comparer équitablement effort et capital : karma = heures × taux + valeur matériaux + ECO.",
|
||||
industryRulesShares: "Votre part d'un build est votre karma ÷ karma total, et fixe la part de la valeur de sortie que vous recevez.",
|
||||
industryRulesDistribution: "Lorsqu'une production est terminée, le steward répartit le pot (les fonds de la production plus la valeur de vente) entre les contributeurs, au prorata de leurs parts.",
|
||||
industryRulesTreasury: "Les contributions en ECO sont détenues par l'intendant comme dépositaire de la trésorerie du build jusqu'à la distribution ; tous les mouvements sont enregistrés sur le réseau et les litiges peuvent aller aux Courts.",
|
||||
industryJobs: "Emplois",
|
||||
industryNoJobs: "Aucun poste pour l'instant.",
|
||||
industryCreatePosition: "Créer un poste",
|
||||
industryViewCV: "CV",
|
||||
industryReportButton: "Signaler",
|
||||
industryCreateTask: "Créer une tâche",
|
||||
industryOpenDispute: "Ouvrir un litige",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "p. ex. unité, kg, licence",
|
||||
industryOutputItemPlaceholder: "ex. robot",
|
||||
industryOutputQtyPlaceholder: "ex. 5",
|
||||
industrySkillsPlaceholder: "p. ex. soudure, réseaux, installation-solaire",
|
||||
industryCreateInvite: "Générer une invitation",
|
||||
industryPauseVotes: "Votes de statut",
|
||||
industryTitle: "Industrie",
|
||||
industryDescription: "Module pour gérer collectivement les moyens de production.",
|
||||
industryLabel: "Industrie",
|
||||
typeIndustryBuild: "BUILD",
|
||||
typeIndustryBlueprint: "BLUEPRINT",
|
||||
typeIndustryAllocation: "DISTRIBUTION",
|
||||
typeIndustry: "INDUSTRIE",
|
||||
modulesIndustryLabel: "Industrie",
|
||||
modulesIndustryDescription: "Module pour gérer collectivement les moyens de production.",
|
||||
industryFilterAll: "TOUTES",
|
||||
industryFilterMember: "MEMBRE",
|
||||
industryFilterBlueprints: "PLANS",
|
||||
industryFilterBuilds: "PRODUCTIONS",
|
||||
industryFilterMine: "MIENNES",
|
||||
industryFilterActive: "EN MARCHE",
|
||||
industryFilterPaused: "EN PAUSE",
|
||||
industryFilterDissolved: "DISSOUTES",
|
||||
industryAllTitle: "Industrie",
|
||||
industryMemberTitle: "Usines dont je fais partie",
|
||||
industryMineTitle: "Mes usines",
|
||||
industryActiveTitle: "En marche",
|
||||
industryPausedTitle: "Usines en pause",
|
||||
industryDissolvedTitle: "Usines dissoutes",
|
||||
industryNoFacilitiesFound: "Aucune usine trouvée.",
|
||||
industryCreateFacility: "Créer une usine",
|
||||
industryMembers: "Membres",
|
||||
industryMemberBadge: "MEMBRE",
|
||||
industryName: "Nom",
|
||||
industryNamePlaceholder: "Nom de l'usine",
|
||||
industryDescriptionLabel: "Description",
|
||||
industryDescriptionPlaceholder: "Que produit cette usine ?",
|
||||
industrySector: "Secteur",
|
||||
industryMembershipPolicy: "Politique d'adhésion",
|
||||
industryQuorum: "Quorum",
|
||||
industryMajority: "Majorité",
|
||||
industryLaborRate: "Taux de travail",
|
||||
industryCreateButton: "Créer une usine",
|
||||
industryUpdateButton: "Mettre à jour",
|
||||
industrySteward: "Intendant",
|
||||
industryStatusActive: "EN MARCHE",
|
||||
industryStatusPaused: "EN PAUSE",
|
||||
industryStatusDissolved: "DISSOUTE",
|
||||
industryStatusLabel: "État",
|
||||
industryJoinButton: "Rejoindre",
|
||||
industryApplyButton: "Demander à rejoindre",
|
||||
industryLeaveButton: "Quitter",
|
||||
industryInviteButton: "Inviter",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "Vous avez besoin d'une invitation pour rejoindre.",
|
||||
industryPauseButton: "Voter la pause",
|
||||
industryResumeButton: "Voter la reprise",
|
||||
industryEditButton: "Modifier",
|
||||
industryDeleteButton: "Supprimer",
|
||||
industryBackToList: "← Industrie",
|
||||
industryPendingApplicants: "Candidatures en attente",
|
||||
industryVotesYes: "oui",
|
||||
industryVotesNo: "non",
|
||||
industryAlreadyVoted: "voté",
|
||||
industryAdmit: "Admettre",
|
||||
industryReject: "Rejeter",
|
||||
industryDissolveTitle: "Dissoudre l'usine",
|
||||
industryDissolveHint: "La dissolution requiert un vote collectif ; l'intendant ne peut pas dissoudre seul.",
|
||||
industryDissolveVote: "Voter la dissolution",
|
||||
industrySector_software: "Logiciel",
|
||||
industrySector_hardware: "Matériel",
|
||||
industrySector_agriculture: "Agriculture",
|
||||
industrySector_textile: "Textile",
|
||||
industrySector_energy: "Énergie",
|
||||
industrySector_food: "Alimentation",
|
||||
industrySector_construction: "Construction",
|
||||
industrySector_media: "Médias",
|
||||
industrySector_services: "Services",
|
||||
industrySector_other: "Autre",
|
||||
industryPolicy_open: "Ouverte",
|
||||
industryPolicy_vote: "Par vote",
|
||||
industryPolicy_invite: "Sur invitation",
|
||||
projectsTitle: "Projets",
|
||||
projectsDescription: "Créez, financez et suivez des projets communautaires dans votre réseau.",
|
||||
projectCreateProject: "Créer un projet",
|
||||
|
|
@ -3250,6 +3550,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "Description",
|
||||
chatMessageReply: "Réponse",
|
||||
chatMessageLabel: "Message",
|
||||
chatCategory: "Catégorie",
|
||||
chatStatus: "STATUT",
|
||||
chatFilterAll: "TOUS",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
hi: {
|
||||
bbAdd: "जोड़ें",
|
||||
bbQuickActions: "त्वरित क्रियाएँ",
|
||||
bbPickTitle: "एक मॉड्यूल पिन करें",
|
||||
bbPickDesc: "नीचे की बार में + स्लॉट के लिए एक मॉड्यूल चुनें।",
|
||||
bbPickNone: "कोई नहीं",
|
||||
bbManage: "संपादित करें",
|
||||
bbYourBar: "आपकी बार",
|
||||
bbRemove: "हटाएँ",
|
||||
bbFull: "अधिकतम पहुँच गया",
|
||||
bbDone: "हो गया",
|
||||
activityChangeFilter: "फ़िल्टर बदलें",
|
||||
emptyConnectHint: "नेटवर्क से सिंक करने के लिए किसी pub से जुड़ें।",
|
||||
emptyConnectCta: "pub से जुड़ें",
|
||||
menuCommunity: "समुदाय",
|
||||
activityGroupCommunity: "समुदाय और शासन",
|
||||
activityGroupOrg: "संगठन",
|
||||
activityGroupComm: "संचार",
|
||||
activityGroupEconomy: "अर्थव्यवस्था",
|
||||
activityGroupMedia: "सामग्री और मीडिया",
|
||||
activityGroupOther: "अन्य",
|
||||
languageName: "हिन्दी",
|
||||
shopOrderStatusPaid: "भुगतान प्राप्त",
|
||||
shopOrderStatusReceived: "प्राप्त",
|
||||
|
|
@ -428,7 +408,8 @@ module.exports = {
|
|||
publish: "लिखें",
|
||||
contentWarningPlaceholder: "पोस्ट में विषय जोड़ें (वैकल्पिक)",
|
||||
privateWarningPlaceholder: "निजी पोस्ट भेजने के लिए निवासी जोड़ें (वैकल्पिक)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "मुख्य पाठ 7000 वर्णों तक सीमित।",
|
||||
publishTooLong: "आपकी पोस्ट बहुत लंबी है। कृपया इसे छोटा करें।",
|
||||
publishCustomDescription: [
|
||||
"याद रखें: ब्लॉकचेन तकनीक के कारण, एक बार पोस्ट प्रकाशित होने के बाद इसे संपादित या हटाया नहीं जा सकता।",
|
||||
],
|
||||
|
|
@ -493,7 +474,89 @@ module.exports = {
|
|||
passwordLengthInfo: "पासवर्ड कम से कम 32 अक्षर लंबा होना चाहिए।",
|
||||
passwordImport: "डेटा को डिक्रिप्ट करने के लिए अपना पासवर्ड लिखें जो आपके सिस्टम होम पर सहेजा जाएगा (नाम: secret)",
|
||||
exportPasswordPlaceholder: "लोअरकेस, अपरकेस, संख्याएँ और प्रतीक उपयोग करें",
|
||||
fileInfo: "आपकी एन्क्रिप्टेड गुप्त कुंजी आपके सिस्टम होम पर सहेजी जाएगी (नाम: oasis.enc)",
|
||||
fileInfo: "आपकी एन्क्रिप्टेड गुप्त कुंजी आपके डिवाइस पर डाउनलोड की जाएगी (नाम: oasis.enc)",
|
||||
developer: "विकास",
|
||||
devTitle: "विकास",
|
||||
welcomeBannerText: "OASIS में स्वागत है। अपना अवतार सेट करने के लिए इन आसान चरणों का पालन करें।",
|
||||
welcomeBannerAction: "शुरू करें!",
|
||||
welcomeTitle: "स्वागत है",
|
||||
welcomeStepGreetingAction: "भेजें",
|
||||
welcomeJoinPubButton: "pub से जुड़ें",
|
||||
welcomeStepLarpAction: "\"अकादमी\" में शामिल हों",
|
||||
welcomeStepLarpText: "हमारे लाइव एक्शन रोल प्लेइंग खेल में शामिल हों।",
|
||||
welcomeStepLarpTitle: "L.A.R.P. में शामिल हों",
|
||||
welcomeStepGreetingTitle: "एक \"Hello world!\" भेजें",
|
||||
welcomeStepGreetingText: "एक संदेश भेजें ताकि दूसरे निवासी आपको खोज सकें।",
|
||||
welcomeJoinPub: "जुड़ें:",
|
||||
welcomeDescription: "शुरू करने से पहले कुछ ज़रूरी बातें।",
|
||||
welcomeProgress: "पूर्ण",
|
||||
welcomeStepDone: "हो गया",
|
||||
welcomeStepPending: "बाकी",
|
||||
welcomeSkip: "अभी नहीं",
|
||||
welcomeStepLanguageTitle: "अपनी भाषा चुनें",
|
||||
welcomeStepLanguageText: "Oasis कई भाषाएँ बोलता है। आप इसे कभी भी बदल सकते हैं।",
|
||||
welcomeStepProfileTitle: "अपनी प्रोफ़ाइल संपादित करें",
|
||||
welcomeStepProfileText: "एक नाम चुनें, विवरण जोड़ें और तस्वीर लगाएँ ताकि दूसरे निवासी आपको पहचान सकें।",
|
||||
welcomeStepProfileAction: "प्रोफ़ाइल सहेजें",
|
||||
welcomeStepFederationTitle: "मुख्य नेटवर्क से जुड़ें",
|
||||
welcomeStepFederationText: "दूसरे निवासियों से मिलने और सिंक शुरू करने के लिए हमारे pub से जुड़ें।",
|
||||
welcomeStepFederationAction: "आमंत्रण देखें",
|
||||
welcomeStepBackupTitle: "अपनी ID का बैकअप लें",
|
||||
welcomeStepBackupText: "आपकी पहचान इस डिवाइस पर एक कुंजी फ़ाइल है।",
|
||||
welcomeStepBackupWarning: "यदि यह खो गई, तो कोई भी इसे वापस नहीं ला सकता।",
|
||||
welcomeStepBackupAction: "बैकअप!",
|
||||
welcomeCompleteTitle: "सब तैयार है।",
|
||||
welcomeCompleteText: "आपका नोड तैयार है। यहाँ से नेटवर्क उन लोगों के साथ बढ़ता है जिन्हें आप फ़ॉलो करते हैं।",
|
||||
welcomeFindPeople: "निवासी खोजें",
|
||||
devFilterFiles: "फ़ाइलें",
|
||||
devFilterSearch: "खोज",
|
||||
devFilterModules: "मॉड्यूल",
|
||||
devFilterTranslations: "अनुवाद",
|
||||
devFilterStyles: "शैलियाँ",
|
||||
devFilterTests: "टेस्ट",
|
||||
devVersion: "संस्करण",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "टेस्ट सूट",
|
||||
devParentFolder: "मूल फ़ोल्डर",
|
||||
devOpenFolder: "खोलें",
|
||||
devDescription: "इस नोड पर चल रहे स्रोत कोड का अन्वेषण करें।",
|
||||
devTreeTitle: "फ़ाइलें",
|
||||
devSearchTitle: "कोड में खोजें",
|
||||
devMapTitle: "मॉड्यूल",
|
||||
devRoot: "मूल",
|
||||
devRootButton: "मूल",
|
||||
devSearchPlaceholder: "कोड में खोजने के लिए पाठ",
|
||||
devAnyExtension: "कोई भी फ़ाइल",
|
||||
devSearchButton: "खोजें",
|
||||
devStatsFiles: "फ़ाइलें",
|
||||
devStatsLines: "पंक्तियाँ",
|
||||
devStatsModules: "मॉड्यूल",
|
||||
devStatsLanguages: "भाषाएँ",
|
||||
devNotViewable: "देखने योग्य नहीं",
|
||||
devEmptyFolder: "यह फ़ोल्डर खाली है।",
|
||||
devSize: "आकार",
|
||||
devShowing: "दिखा रहे हैं",
|
||||
devLine: "पंक्ति",
|
||||
devReportBug: "बग रिपोर्ट करें",
|
||||
devCreateTask: "कार्य बनाएँ",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Oasis स्रोत कोड पढ़ते समय मिला",
|
||||
devTaskPrefix: "समीक्षा",
|
||||
devPrevPage: "पिछली पंक्तियाँ",
|
||||
devNextPage: "अगली पंक्तियाँ",
|
||||
devMatches: "मिलान",
|
||||
devFilesScanned: "फ़ाइलें जाँची गईं",
|
||||
devNoResults: "अभी तक कोई मिलान नहीं।",
|
||||
devColModule: "मॉड्यूल",
|
||||
devColState: "स्थिति",
|
||||
devColModel: "मॉडल",
|
||||
devColView: "दृश्य",
|
||||
devColRoutes: "रूट",
|
||||
devColTests: "टेस्ट",
|
||||
devOn: "चालू",
|
||||
devOff: "बंद",
|
||||
modulesDevLabel: "विकास",
|
||||
modulesDevDescription: "Oasis स्रोत कोड को प्रबंधित करने का मॉड्यूल।",
|
||||
themeIntro:
|
||||
"एक थीम चुनें।",
|
||||
setTheme: "थीम सेट करें",
|
||||
|
|
@ -695,7 +758,7 @@ module.exports = {
|
|||
spreadLabel: "फैलाएँ",
|
||||
spreadHint: "अपने समर्थकों को फैलाएँ (फ़ीड से प्रतिकृति)।",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Oasis में आपका स्वागत है — एक स्वतंत्र, पीयर-टू-पीयर, फ़ेडरेटेड और एन्क्रिप्टेड सोशल नेटवर्क, जिसकी वास्तुकला वितरित और केवल-आमंत्रण आधारित है।\n\nशुरुआत के लिए कुछ रोचक स्थान:\n\n- /profile — अपना अवतार, नाम, विवरण और कौन से मॉड्यूल आपके सार्वजनिक पक्ष पर दिखेंगे, संपादित करें।\n- /invites — व्यापक नेटवर्क के साथ फेडरेट करने के लिए एक pub जोड़ें।\n- /peers — देखें कौन जुड़ा है, अपनी LAN फिर से स्कैन करें, पीयर सूचियाँ निर्यात या आयात करें।\n- /inhabitants — दूसरों के अवतार खोजें और देखें।\n- /tribes — एंड-टू-एंड एन्क्रिप्शन वाले निजी समूह बनाएँ या उनमें शामिल हों।\n- /inbox — निजी संदेश पढ़ें और भेजें।\n- /activity — हाल की गतिविधि देखें — आपकी और आपके नेटवर्क की।\n- /publish — पोस्ट लिखें, या चित्र, ऑडियो, वीडियो, दस्तावेज़ साझा करें।\n\nकनेक्ट करने के लिए कुछ दिलचस्प जगहें:\n\n- /fediverse — अपने अन्य फ़ेडिवर्स खातों को प्रबंधित करें, जिसमें सामग्री भेजना और प्राप्त करना शामिल है।\n\nयह संदेश आपके द्वारा निजी रूप से स्वयं को भेजा गया था, इसलिए इसे प्राप्त करने के लिए किसी कनेक्शन की आवश्यकता नहीं थी।",
|
||||
welcomePmBody: "Oasis में आपका स्वागत है — एक स्वतंत्र, पीयर-टू-पीयर, फ़ेडरेटेड और एन्क्रिप्टेड सोशल नेटवर्क, जिसकी वास्तुकला वितरित और केवल-आमंत्रण आधारित है।\n\nशुरुआत के लिए कुछ रोचक स्थान:\n\n- /profile — अपना अवतार, नाम, विवरण और कौन से मॉड्यूल आपके सार्वजनिक पक्ष पर दिखेंगे, संपादित करें।\n- /invites — व्यापक नेटवर्क के साथ फेडरेट करने के लिए एक pub जोड़ें।\n- /peers — देखें कौन जुड़ा है, अपनी LAN फिर से स्कैन करें, पीयर सूचियाँ निर्यात या आयात करें।\n- /inhabitants — दूसरों के अवतार खोजें और देखें।\n- /tribes — एंड-टू-एंड एन्क्रिप्शन वाले निजी समूह बनाएँ या उनमें शामिल हों।\n- /inbox — निजी संदेश पढ़ें और भेजें।\n- /activity — हाल की गतिविधि देखें — आपकी और आपके नेटवर्क की।\n- /publish — पोस्ट लिखें, या चित्र, ऑडियो, वीडियो, दस्तावेज़ साझा करें।\n- /search — नेटवर्क की सामग्री को प्रकार के अनुसार खोजें।\n\nकनेक्ट करने के लिए कुछ दिलचस्प जगहें:\n\n- /fediverse — अपने अन्य फ़ेडिवर्स खातों को प्रबंधित करें, जिसमें सामग्री भेजना और प्राप्त करना शामिल है।\n\nयह संदेश आपके द्वारा निजी रूप से स्वयं को भेजा गया था, इसलिए इसे प्राप्त करने के लिए किसी कनेक्शन की आवश्यकता नहीं थी।",
|
||||
profileVisibilityTitle: "सार्वजनिक प्रोफ़ाइल दृश्यता",
|
||||
profileVisibilityHint: "तय करें कि आपकी प्रोफ़ाइल में अन्य निवासी कौन से क्षेत्र देखें। डिफ़ॉल्ट रूप से केवल Karma दिखाया जाता है।",
|
||||
profileSensorsSectionTitle: "सेंसर",
|
||||
|
|
@ -1226,6 +1289,9 @@ module.exports = {
|
|||
eventButton: "कार्यक्रम",
|
||||
taskButton: "कार्य",
|
||||
votesButton: "मतदान",
|
||||
industryButton: "उद्योग",
|
||||
projectButton: "परियोजनाएं",
|
||||
shopProductButton: "उत्पाद",
|
||||
reportButton: "रिपोर्ट",
|
||||
feedButton: "फ़ीड",
|
||||
marketButton: "बाज़ार",
|
||||
|
|
@ -1254,7 +1320,7 @@ module.exports = {
|
|||
trendingItemStatus: "आइटम स्थिति",
|
||||
trendingTotalVotes: "कुल मत",
|
||||
trendingTotalOpinions: "कुल राय",
|
||||
trendingNoContentMessage: "अभी तक कोई ट्रेंडिंग सामग्री उपलब्ध नहीं।",
|
||||
trendingNoContentMessage: "अभी तक कोई ट्रेंडिंग नहीं है।",
|
||||
trendingAuthor: "द्वारा",
|
||||
trendingCreatedAtLabel: "बनाया गया",
|
||||
trendingTotalCount: "कुल संख्या",
|
||||
|
|
@ -1443,7 +1509,7 @@ module.exports = {
|
|||
transfersCreatedAt: "बनाया गया",
|
||||
transfersConfirmations: "पुष्टि",
|
||||
transfersContainingBlock: "धारक ब्लॉक",
|
||||
transfersExportContract: "अनुबंध बनाएँ",
|
||||
transfersExportContract: "स्मार्ट अनुबंध",
|
||||
transfersConfirmButton: "स्थानांतरण पुष्टि करें",
|
||||
transfersNoItems: "कोई स्थानांतरण नहीं मिला।",
|
||||
transfersMineSectionTitle: "आपके स्थानांतरण",
|
||||
|
|
@ -1569,7 +1635,7 @@ module.exports = {
|
|||
cvDeleteButton: "हटाएँ",
|
||||
cvNoCV: "कोई CV नहीं मिला।",
|
||||
blogSubject: "विषय",
|
||||
blogMessage: "मुख्य भाग 8096 वर्णों तक सीमित।",
|
||||
blogMessage: "संदेश",
|
||||
blogImage: "मीडिया अपलोड करें (अधिकतम-आकार: 50MB)",
|
||||
blogPublish: "पूर्वावलोकन",
|
||||
noPopularMessages: "अभी तक कोई लोकप्रिय संदेश प्रकाशित नहीं हुआ",
|
||||
|
|
@ -2204,6 +2270,7 @@ module.exports = {
|
|||
agendaFilterReports: "रिपोर्ट",
|
||||
agendaFilterTransfers: "स्थानांतरण",
|
||||
agendaFilterJobs: "नौकरियाँ",
|
||||
agendaFilterIndustry: "उद्योग",
|
||||
agendaFilterProjects: "परियोजनाएँ",
|
||||
agendaFilterCalendars: "कैलेंडर",
|
||||
agendaNoItems: "कोई सौंपे गए आइटम नहीं मिले।",
|
||||
|
|
@ -2325,16 +2392,31 @@ module.exports = {
|
|||
privateMessage: "PM",
|
||||
pmSendTitle: "निजी संदेश",
|
||||
pmSend: "भेजें!",
|
||||
pmDescription: "अन्य निवासियों को एन्क्रिप्टेड संदेश भेजने के लिए इस फ़ॉर्म का उपयोग करें।",
|
||||
pmCancel: "रद्द करें",
|
||||
pmReset: "रीसेट",
|
||||
pmSharedKeyHint: "इस कुंजी को प्राप्तकर्ता के साथ किसी अन्य माध्यम से साझा करें। डिक्रिप्ट करने के लिए यह आवश्यक है।",
|
||||
pmDescription: "अन्य निवासियों को एन्क्रिप्टेड संदेश/फ़ाइल भेजने के लिए इस फ़ॉर्म का उपयोग करें।",
|
||||
pmComposeTitle: "संदेश भेजें",
|
||||
pmRecipients: "प्राप्तकर्ता",
|
||||
pmRecipientsHint: "अल्पविराम से अलग Oasis IDs दर्ज करें",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "प्रति संदेश अधिकतम 7 प्राप्तकर्ता।",
|
||||
pmTextPlaceholder: "मुख्य पाठ 7000 वर्णों तक सीमित।",
|
||||
pmSubject: "विषय",
|
||||
pmSubjectHint: "संदेश विषय दर्ज करें",
|
||||
pmText: "संदेश",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "डिक्रिप्ट करें",
|
||||
fileShareTitle: "फ़ाइल साझा करें",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "फ़ाइल",
|
||||
fileShareDownload: "डाउनलोड करें",
|
||||
fileShareMutualError: "आप केवल पारस्परिक समर्थन वाले निवासियों के साथ फ़ाइलें साझा कर सकते हैं।",
|
||||
fileShareNoFile: "कोई फ़ाइल चयनित नहीं।",
|
||||
fileShareTooLarge: "फ़ाइल अनुमत आकार से बड़ी है।",
|
||||
fileShareFailed: "फ़ाइल तैयार नहीं की जा सकी।",
|
||||
fileShareSendError: "फ़ाइल भेजी नहीं जा सकी।",
|
||||
fileShareUnavailable: "यह फ़ाइल अभी उपलब्ध नहीं है। बाद में पुनः प्रयास करें।",
|
||||
pmCrypterBadKey: "साझा कुंजी गलत है!",
|
||||
pmCrypterTooLong: "यह संदेश Crypter से एन्क्रिप्ट करने के लिए बहुत लंबा है। कृपया इसे छोटा करके पुनः प्रयास करें।",
|
||||
pmCrypterCipherLabel: "पुनः एन्क्रिप्टेड संदेश",
|
||||
|
|
@ -2355,15 +2437,27 @@ module.exports = {
|
|||
pmNoSubject: "(कोई विषय नहीं)",
|
||||
pmSubjectLabel: "विषय:",
|
||||
pmBodyLabel: "मुख्य भाग",
|
||||
pmBotJobs: "42-JobsBOT",
|
||||
pmBotProjects: "42-ProjectsBOT",
|
||||
pmBotMarket: "42-MarketBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "L.A.R.P का शासक घराना बदल गया है।",
|
||||
politicalBotParliamentTitle: "संसद में एक नया शासन चक्र शुरू हो गया है।",
|
||||
politicalBotTribeTitle: "आपकी किसी जनजाति में एक नया शासन चक्र शुरू हो गया है।",
|
||||
politicalBotLarpIntro: "अब इस चक्र में {house} शासन करता है: {cycle}",
|
||||
politicalBotParliamentIntro: "वर्तमान सरकार {gov} है",
|
||||
politicalBotParliamentIntroLeader: "वर्तमान सरकार {gov} है, {leader} द्वारा संचालित",
|
||||
politicalBotTribeIntro: "जनजाति {tribe} में वर्तमान सरकार {gov} है",
|
||||
politicalBotTribeIntroLeader: "जनजाति {tribe} में वर्तमान सरकार {gov} है, {leader} द्वारा संचालित",
|
||||
politicalBotLeaderLabel: "नेता",
|
||||
inboxJobSubscribedTitle: "आपके नौकरी प्रस्ताव के लिए नई सदस्यता",
|
||||
pmInhabitantWithId: "OASIS ID वाला निवासी:",
|
||||
pmHasSubscribedToYourJobOffer: "ने आपके नौकरी प्रस्ताव की सदस्यता ली है",
|
||||
inboxProjectCreatedTitle: "नई परियोजना बनाई गई",
|
||||
pmHasCreatedAProject: "ने एक परियोजना बनाई है",
|
||||
inboxMarketItemSoldTitle: "आइटम बिक गया",
|
||||
inboxShopSoldTitle: "उत्पाद बिका",
|
||||
pmYourItem: "आपका आइटम",
|
||||
pmHasBeenSoldTo: "बेचा गया",
|
||||
pmFor: "के लिए",
|
||||
|
|
@ -2398,7 +2492,7 @@ module.exports = {
|
|||
visitContent: "सामग्री देखें",
|
||||
banking: 'बैंकिंग',
|
||||
bankingTitle: 'बैंकिंग',
|
||||
bankingDescription: 'ECOin का वर्तमान मूल्य और संबंधित UBI आवंटन खोजें, जो भागीदारी और विश्वास के आधार पर प्रति युग वितरित होता है।',
|
||||
bankingDescription: "ECOin अर्थव्यवस्था: शेष, यूबीआई, कर और उद्योग मूल्य।",
|
||||
bankOverview: 'अवलोकन',
|
||||
bankEpochs: 'युग',
|
||||
bankRules: 'नियम',
|
||||
|
|
@ -2432,6 +2526,10 @@ module.exports = {
|
|||
bankEpochId: 'युग ID',
|
||||
bankRuleHash: 'नियम स्नैपशॉट हैश',
|
||||
bankViewEpoch: 'युग देखें',
|
||||
bankYourIndustryBalance: "आपका औद्योगिक हिस्सा",
|
||||
bankYourUbiMonth: "आपकी UBI (इस माह)",
|
||||
bankYourFundsMonth: "आपकी निधि (इस माह)",
|
||||
bankIndustryBalance: "औद्योगिक उत्पादन (अनुमानित)",
|
||||
bankUserBalance: 'आपका शेष',
|
||||
ecoWalletNotConfigured: 'ECOin वॉलेट कॉन्फ़िगर नहीं है',
|
||||
editWallet: 'वॉलेट संपादित करें',
|
||||
|
|
@ -2471,7 +2569,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "कोई धन नहीं!",
|
||||
bankUbiAvailableOk: "उपलब्ध!",
|
||||
bankUbiAvailability: "UBI उपलब्धता",
|
||||
bankUbiAvailability: "UBI (नेटवर्क)",
|
||||
bankAlreadyClaimedThisMonth: "इस महीने पहले ही दावा किया गया",
|
||||
bankUbiThisMonth: "UBI (इस महीने)",
|
||||
bankUbiLastClaimed: "UBI (अंतिम दावा)",
|
||||
|
|
@ -2901,6 +2999,208 @@ module.exports = {
|
|||
jobsTagsLabel: "टैग",
|
||||
jobsTagsPlaceholder: "tag1, tag2, tag3",
|
||||
noJobsMatch: "आपकी खोज से कोई नौकरी मेल नहीं खाती।",
|
||||
industrySearchPlaceholder: "फैक्टरियाँ खोजें…",
|
||||
industryAllSectors: "सभी क्षेत्र",
|
||||
industryVisitButton: "उद्योग देखें",
|
||||
industryAdvanceTo: "पर सेट करें",
|
||||
industryAmount: "राशि",
|
||||
industryApproveBuild: "मंज़ूर करें",
|
||||
industryBackToFacility: "← फैक्टरी",
|
||||
industryBlueprint: "ब्लूप्रिंट",
|
||||
industryBlueprintLabel: "उद्योग ब्लूप्रिंट",
|
||||
industryBlueprints: "ब्लूप्रिंट",
|
||||
industryBuild: "बिल्ड",
|
||||
industryBuildNotes: "नोट्स",
|
||||
industryBuildStart: "आरंभ तिथि",
|
||||
industryVoteUpdateButton: "अपडेट के लिए वोट",
|
||||
industryVoteDeleteButton: "हटाने के लिए वोट",
|
||||
industryRevokeVote: "वापस लें",
|
||||
industryTimeLeft: "शेष समय",
|
||||
industryBuildEnd: "समाप्ति तिथि",
|
||||
industryBuilds: "बिल्ड्स",
|
||||
industryBuildTitle: "शीर्षक",
|
||||
industryContribute: "योगदान करें",
|
||||
industryContributeEco: "ECO योगदान करें",
|
||||
industryContributeLabor: "श्रम योगदान करें",
|
||||
industryContributeButton: "योगदान करें",
|
||||
industryContributeMaterial: "सामग्री योगदान करें",
|
||||
industryContributions: "योगदान",
|
||||
industryContributors: "योगदानकर्ता",
|
||||
industryCreateBlueprintButton: "ब्लूप्रिंट बनाएं",
|
||||
industryDistribute: "वितरण करें",
|
||||
industryDistributeButton: "हिस्सों के अनुसार वितरण",
|
||||
industryDistribution: "वितरण",
|
||||
industryEcoAmount: "राशि (ECO)",
|
||||
industryEcoContribHint: "ECO योगदान बिल्ड के कोष के संरक्षक के रूप में प्रबंधक को स्थानांतरित किए जाते हैं।",
|
||||
industryEditBlueprint: "ब्लूप्रिंट संपादित करें",
|
||||
industryFacility: "फैक्टरी",
|
||||
industryKindLabel: "प्रकार",
|
||||
industryKind_labor: "श्रम",
|
||||
industryKind_material: "सामग्री",
|
||||
industryKind_eco: "निधि",
|
||||
industryLaborHours: "श्रम (घंटे)",
|
||||
industryHours: "घंटे",
|
||||
industryLicense: "लाइसेंस",
|
||||
industryMaterialItem: "सामग्री",
|
||||
industryMaterials: "सामग्री",
|
||||
industryMaterialsHint: "प्रति पंक्ति एक सामग्री, प्रारूप नाम:मात्रा:मूल्य।",
|
||||
industryEstMaterials: "कुल सामग्री",
|
||||
industryEstLabor: "कुल श्रम",
|
||||
industryEstTaxes: "कर",
|
||||
industryEstTotal: "अनुमानित मूल्य",
|
||||
industryBuildingPrice: "निर्माण मूल्य",
|
||||
industryFinalPrice: "अंतिम मूल्य",
|
||||
industryBlueprintDescPlaceholder: "विनिर्देश, आयाम, वज़न, दस्तावेज़…",
|
||||
industryMaterialValue: "मूल्य (ECO)",
|
||||
industryMember: "सदस्य",
|
||||
industryNewBlueprint: "नया ब्लूप्रिंट",
|
||||
industryNewBuild: "बिल्ड प्रस्तावित करें",
|
||||
industryEditBuild: "उत्पादन संपादित करें",
|
||||
industryNoBlueprint: "— कोई नहीं —",
|
||||
industryNeedBlueprint: "पहले ब्लूप्रिंट बनाएँ: हर उत्पादन उसी को बनाता है।",
|
||||
industryNoBlueprints: "अभी तक कोई ब्लूप्रिंट नहीं।",
|
||||
industryNoBuilds: "अभी तक कोई बिल्ड नहीं।",
|
||||
industryNote: "नोट",
|
||||
industryOutput: "आउटपुट",
|
||||
industryOutputItem: "उत्पाद का नाम",
|
||||
industryOutputKind: "उत्पाद का प्रकार",
|
||||
industryOutputQty: "प्रति उत्पादन इकाइयाँ",
|
||||
industryOutputUnit: "माप की इकाई",
|
||||
industryOutputValue: "आउटपुट मूल्य (ECO, जैसे बिक्री से)",
|
||||
industryPayout: "भुगतान",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "नौकरी बनाएँ",
|
||||
industryPot: "कोष",
|
||||
industryProposeBuildButton: "बिल्ड प्रस्तावित करें",
|
||||
industryProposer: "प्रस्तावक",
|
||||
industryAuthor: "लेखक",
|
||||
industrySellOnMarket: "बाज़ार में भेजें",
|
||||
industrySendToProjects: "प्रोजेक्ट बनाएँ",
|
||||
industryShare: "हिस्सा",
|
||||
industryShares: "हिस्से",
|
||||
industrySkills: "कौशल",
|
||||
industryTreasury: "कोष",
|
||||
industryKind_physical: "भौतिक",
|
||||
industryKind_digital: "डिजिटल",
|
||||
industryBuildStatus_PROPOSED: "प्रस्तावित",
|
||||
industryBuildStatus_REJECTED: "अस्वीकृत",
|
||||
industryBuildStatus_APPROVED: "स्वीकृत",
|
||||
industryBuildStatus_STOCKING: "भंडारण",
|
||||
industryBuildStatus_IN_PRODUCTION: "उत्पादन में",
|
||||
industryBuildStatus_COMPLETED: "पूर्ण",
|
||||
industryBuildStatus_FAILED: "विफल",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "आपको एक फैक्टरी में स्वीकार किया गया है।",
|
||||
industryBotApplicationTitle: "आपकी फैक्टरी में नया सदस्यता अनुरोध।",
|
||||
industryBotInvitedTitle: "आपको एक फैक्टरी में आमंत्रित किया गया है।",
|
||||
industryBotDissolvedTitle: "आपकी एक फैक्टरी विघटित कर दी गई है।",
|
||||
industryBotBuildApprovedTitle: "एक बिल्ड स्वीकृत हो गया है।",
|
||||
industryBotDistributedTitle: "एक बिल्ड का आउटपुट वितरित किया गया है।",
|
||||
industryFilterRules: "नियम",
|
||||
industryRulesTitle: "नियम",
|
||||
industryRulesIntro: "Industry निवासियों को उत्पादन के साधनों का सामूहिक स्वामित्व देता है: एक फैक्टरी नेटवर्क-स्वामित्व वाली कार्यशाला है जिसे कोई निजी रूप से नहीं रखता।",
|
||||
industryRulesSteward: "संस्थापक प्रबंधक होता है — संरक्षक, मालिक नहीं: वह फैक्टरी को अकेले बेच, निजीकृत या विघटित नहीं कर सकता।",
|
||||
industryRulesMembership: "सदस्यता नीति तय करती है कि कैसे जुड़ें: खुला (तुरंत), मतदान द्वारा (सदस्यों के वोट से स्वीकृत) या केवल आमंत्रण (पहले किसी सदस्य को आमंत्रित करना होगा)।",
|
||||
industryRulesQuorum: "कोरम वह न्यूनतम सदस्य संख्या है जिन्हें किसी निर्णय के गिनने के लिए मतदान करना चाहिए, ताकि छोटी फैक्टरी एक व्यक्ति द्वारा तय न हो।",
|
||||
industryRulesMajority: "बहुमत पारित होने के लिए आवश्यक मतों का अंश है (0.5 = आधा, 1 = सर्वसम्मति); निर्णय तब पारित होता है जब हाँ वोट कम से कम max(कोरम, सदस्य × बहुमत) तक पहुँचें।",
|
||||
industryRulesDecisions: "सदस्य नए लोगों को स्वीकारने, बिल्ड स्वीकृत करने और फैक्टरी विघटित करने के लिए मतदान करते हैं; प्रबंधक इन सामूहिक निर्णयों को नहीं टाल सकता।",
|
||||
industryRulesBlueprints: "ब्लूप्रिंट स्वतंत्र (COPYLEFT) व्यंजन हैं — इनपुट (सामग्री, श्रम घंटे, कौशल) और आउटपुट (एक भौतिक या डिजिटल वस्तु) — और कोई भी इन्हें फोर्क कर सकता है।",
|
||||
industryRulesBuilds: "बिल्ड एक उत्पादन आदेश है: प्रस्तावित → स्वीकृत (मतदान से) → भंडारण → उत्पादन में → पूर्ण, और स्वीकृत होने के बाद ही योगदान स्वीकार करता है।",
|
||||
industryRulesContributions: "सदस्य किसी बिल्ड में श्रम (घंटे), सामग्री (घोषित ECO मूल्य) या ECO का योगदान करते हैं; हर योगदान Karma अर्जित करता है।",
|
||||
industryRulesLaborRate: "श्रम दर इस फैक्टरी में एक कार्य-घंटे का ECO मूल्य है; यह घंटों को Karma में बदलती है ताकि श्रम और पूँजी की निष्पक्ष तुलना हो: Karma = घंटे × दर + सामग्री मूल्य + ECO।",
|
||||
industryRulesShares: "किसी बिल्ड में आपका हिस्सा आपका Karma ÷ कुल Karma है, और यह तय करता है कि आपको आउटपुट मूल्य का कितना भाग मिलेगा।",
|
||||
industryRulesDistribution: "उत्पादन पूरा होने पर स्टीवर्ड पॉट (उत्पादन की निधि और बिक्री मूल्य) को योगदानकर्ताओं में उनके हिस्से के अनुपात में बाँटता है।",
|
||||
industryRulesTreasury: "ECO योगदान वितरण तक प्रबंधक द्वारा बिल्ड कोष के संरक्षक के रूप में रखे जाते हैं; सभी लेन-देन नेटवर्क पर दर्ज होते हैं और विवाद Courts में जा सकते हैं।",
|
||||
industryJobs: "नौकरियाँ",
|
||||
industryNoJobs: "अभी तक कोई पद नहीं।",
|
||||
industryCreatePosition: "पद बनाएं",
|
||||
industryViewCV: "सीवी",
|
||||
industryReportButton: "रिपोर्ट",
|
||||
industryCreateTask: "कार्य बनाएँ",
|
||||
industryOpenDispute: "विवाद खोलें",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "जैसे इकाई, kg, लाइसेंस",
|
||||
industryOutputItemPlaceholder: "जैसे robot",
|
||||
industryOutputQtyPlaceholder: "जैसे 5",
|
||||
industrySkillsPlaceholder: "जैसे सोल्डरिंग, नेटवर्किंग, सौर-स्थापना",
|
||||
industryCreateInvite: "आमंत्रण उत्पन्न करें",
|
||||
industryPauseVotes: "स्थिति मत",
|
||||
industryTitle: "उद्योग",
|
||||
industryDescription: "उत्पादन के साधनों को सामूहिक रूप से प्रबंधित करने का मॉड्यूल।",
|
||||
industryLabel: "उद्योग",
|
||||
typeIndustryBuild: "बिल्ड",
|
||||
typeIndustryBlueprint: "ब्लूप्रिंट",
|
||||
typeIndustryAllocation: "वितरण",
|
||||
typeIndustry: "उद्योग",
|
||||
modulesIndustryLabel: "उद्योग",
|
||||
modulesIndustryDescription: "उत्पादन के साधनों को सामूहिक रूप से प्रबंधित करने का मॉड्यूल।",
|
||||
industryFilterAll: "सभी",
|
||||
industryFilterMember: "सदस्य",
|
||||
industryFilterBlueprints: "ब्लूप्रिंट",
|
||||
industryFilterBuilds: "उत्पादन",
|
||||
industryFilterMine: "मेरी",
|
||||
industryFilterActive: "चालू",
|
||||
industryFilterPaused: "रोकी गई",
|
||||
industryFilterDissolved: "विघटित",
|
||||
industryAllTitle: "उद्योग",
|
||||
industryMemberTitle: "जिन फैक्टरियों में मैं हूँ",
|
||||
industryMineTitle: "मेरी फैक्टरियाँ",
|
||||
industryActiveTitle: "चालू",
|
||||
industryPausedTitle: "रोकी गई फैक्टरियाँ",
|
||||
industryDissolvedTitle: "विघटित फैक्टरियाँ",
|
||||
industryNoFacilitiesFound: "कोई फैक्टरी नहीं मिली।",
|
||||
industryCreateFacility: "फैक्टरी बनाएं",
|
||||
industryMembers: "सदस्य",
|
||||
industryMemberBadge: "सदस्य",
|
||||
industryName: "नाम",
|
||||
industryNamePlaceholder: "फैक्टरी का नाम",
|
||||
industryDescriptionLabel: "विवरण",
|
||||
industryDescriptionPlaceholder: "यह फैक्टरी क्या उत्पादित करती है?",
|
||||
industrySector: "क्षेत्र",
|
||||
industryMembershipPolicy: "सदस्यता नीति",
|
||||
industryQuorum: "कोरम",
|
||||
industryMajority: "बहुमत",
|
||||
industryLaborRate: "श्रम दर",
|
||||
industryCreateButton: "फैक्टरी बनाएं",
|
||||
industryUpdateButton: "अपडेट",
|
||||
industrySteward: "प्रबंधक",
|
||||
industryStatusActive: "चालू",
|
||||
industryStatusPaused: "रोका गया",
|
||||
industryStatusDissolved: "विघटित",
|
||||
industryStatusLabel: "स्थिति",
|
||||
industryJoinButton: "शामिल हों",
|
||||
industryApplyButton: "शामिल होने का अनुरोध",
|
||||
industryLeaveButton: "छोड़ें",
|
||||
industryInviteButton: "आमंत्रित करें",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "शामिल होने के लिए आपको आमंत्रण चाहिए।",
|
||||
industryPauseButton: "रोकने के लिए मतदान",
|
||||
industryResumeButton: "फिर से शुरू करने के लिए मतदान",
|
||||
industryEditButton: "संपादित करें",
|
||||
industryDeleteButton: "हटाएं",
|
||||
industryBackToList: "← उद्योग",
|
||||
industryPendingApplicants: "लंबित आवेदक",
|
||||
industryVotesYes: "हाँ",
|
||||
industryVotesNo: "नहीं",
|
||||
industryAlreadyVoted: "मतदान किया",
|
||||
industryAdmit: "स्वीकार करें",
|
||||
industryReject: "अस्वीकार करें",
|
||||
industryDissolveTitle: "फैक्टरी विघटित करें",
|
||||
industryDissolveHint: "विघटन के लिए सामूहिक मतदान आवश्यक है; प्रबंधक अकेले विघटित नहीं कर सकता।",
|
||||
industryDissolveVote: "विघटन के लिए मतदान",
|
||||
industrySector_software: "सॉफ्टवेयर",
|
||||
industrySector_hardware: "हार्डवेयर",
|
||||
industrySector_agriculture: "कृषि",
|
||||
industrySector_textile: "वस्त्र",
|
||||
industrySector_energy: "ऊर्जा",
|
||||
industrySector_food: "खाद्य",
|
||||
industrySector_construction: "निर्माण",
|
||||
industrySector_media: "मीडिया",
|
||||
industrySector_services: "सेवाएं",
|
||||
industrySector_other: "अन्य",
|
||||
industryPolicy_open: "खुला",
|
||||
industryPolicy_vote: "मतदान से",
|
||||
industryPolicy_invite: "केवल आमंत्रण",
|
||||
projectsTitle: "परियोजनाएँ",
|
||||
projectsDescription: "अपने नेटवर्क में समुदाय-संचालित परियोजनाएँ बनाएँ, वित्तपोषित करें और अनुसरण करें।",
|
||||
projectCreateProject: "परियोजना बनाएँ",
|
||||
|
|
@ -3260,6 +3560,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "विवरण",
|
||||
chatMessageReply: "उत्तर",
|
||||
chatMessageLabel: "संदेश",
|
||||
chatCategory: "श्रेणी",
|
||||
chatStatus: "स्थिति",
|
||||
chatFilterAll: "सभी",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
it: {
|
||||
bbAdd: "Aggiungi",
|
||||
bbQuickActions: "Azioni rapide",
|
||||
bbPickTitle: "Fissa un modulo",
|
||||
bbPickDesc: "Scegli un modulo per lo spazio + nella barra inferiore.",
|
||||
bbPickNone: "Nessuno",
|
||||
bbManage: "Modifica",
|
||||
bbYourBar: "La tua barra",
|
||||
bbRemove: "Rimuovi",
|
||||
bbFull: "Massimo raggiunto",
|
||||
bbDone: "Fatto",
|
||||
activityChangeFilter: "Cambia filtro",
|
||||
emptyConnectHint: "Connettiti a un pub per sincronizzarti con la rete.",
|
||||
emptyConnectCta: "Connettiti a un pub",
|
||||
menuCommunity: "Comunità",
|
||||
activityGroupCommunity: "Comunità e governance",
|
||||
activityGroupOrg: "Organizzazione",
|
||||
activityGroupComm: "Comunicazione",
|
||||
activityGroupEconomy: "Economia",
|
||||
activityGroupMedia: "Contenuti e media",
|
||||
activityGroupOther: "Altri",
|
||||
languageName: "Italiano",
|
||||
shopOrderStatusPaid: "Pagamento ricevuto",
|
||||
shopOrderStatusReceived: "Ricevuto",
|
||||
|
|
@ -426,7 +406,8 @@ module.exports = {
|
|||
publish: "Pubblica",
|
||||
contentWarningPlaceholder: "Aggiungi un oggetto al post (opzionale)",
|
||||
privateWarningPlaceholder: "Aggiungi abitanti per inviare un post privato (opzionale)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Corpo limitato a 7000 caratteri.",
|
||||
publishTooLong: "Il tuo post è troppo lungo. Accorcialo, per favore.",
|
||||
publishCustomDescription: [
|
||||
"RICORDA: A causa della tecnologia blockchain, una volta pubblicato un post non può essere modificato né eliminato.",
|
||||
],
|
||||
|
|
@ -491,7 +472,89 @@ module.exports = {
|
|||
passwordLengthInfo: "La password deve avere almeno 32 caratteri.",
|
||||
passwordImport: "Scrivi la tua password per decifrare i dati che verranno salvati nella home del sistema (nome: secret)",
|
||||
exportPasswordPlaceholder: "Usa minuscole, maiuscole, numeri e simboli",
|
||||
fileInfo: "La tua chiave segreta crittografata verrà salvata nella home del sistema (nome: oasis.enc)",
|
||||
fileInfo: "La tua chiave segreta crittografata verrà scaricata sul tuo dispositivo (nome: oasis.enc)",
|
||||
developer: "Sviluppo",
|
||||
devTitle: "Sviluppo",
|
||||
welcomeBannerText: "Benvenuta in OASIS. Segui questi passi rapidi per configurare il tuo avatar.",
|
||||
welcomeBannerAction: "Inizia!",
|
||||
welcomeTitle: "Benvenuta",
|
||||
welcomeStepGreetingAction: "Invia",
|
||||
welcomeJoinPubButton: "Unisciti al pub",
|
||||
welcomeStepLarpAction: "Unisciti a \"L Accademia\"",
|
||||
welcomeStepLarpText: "Unisciti al nostro gioco di ruolo dal vivo.",
|
||||
welcomeStepLarpTitle: "Unisciti al L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "Invia un \"Ciao mondo!\"",
|
||||
welcomeStepGreetingText: "Invia un messaggio perché gli altri abitanti possano scoprirti.",
|
||||
welcomeJoinPub: "Unisciti a",
|
||||
welcomeDescription: "Alcune cose da fare prima di iniziare.",
|
||||
welcomeProgress: "Completato",
|
||||
welcomeStepDone: "fatto",
|
||||
welcomeStepPending: "in sospeso",
|
||||
welcomeSkip: "Non ora",
|
||||
welcomeStepLanguageTitle: "Scegli la tua lingua",
|
||||
welcomeStepLanguageText: "Oasis parla diverse lingue. Puoi cambiarla quando vuoi.",
|
||||
welcomeStepProfileTitle: "Modifica il tuo profilo",
|
||||
welcomeStepProfileText: "Scegli un nome, aggiungi una descrizione e metti un immagine perché gli altri abitanti ti riconoscano.",
|
||||
welcomeStepProfileAction: "Salva profilo",
|
||||
welcomeStepFederationTitle: "Unisciti alla rete principale",
|
||||
welcomeStepFederationText: "Collegati al nostro pub per incontrare altri abitanti e iniziare a replicare.",
|
||||
welcomeStepFederationAction: "Vai agli inviti",
|
||||
welcomeStepBackupTitle: "Fai il backup del tuo ID",
|
||||
welcomeStepBackupText: "La tua identità è un file di chiavi su questo dispositivo.",
|
||||
welcomeStepBackupWarning: "SE LO PERDI, NESSUNO POTRÀ RECUPERARLO PER TE.",
|
||||
welcomeStepBackupAction: "Backup!",
|
||||
welcomeCompleteTitle: "Tutto pronto.",
|
||||
welcomeCompleteText: "Il tuo nodo è pronto. Da qui la rete cresce con le persone che segui.",
|
||||
welcomeFindPeople: "Trova abitanti",
|
||||
devFilterFiles: "FILE",
|
||||
devFilterSearch: "CERCA",
|
||||
devFilterModules: "MODULI",
|
||||
devFilterTranslations: "TRADUZIONI",
|
||||
devFilterStyles: "STILI",
|
||||
devFilterTests: "TEST",
|
||||
devVersion: "Versione",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Suite di test",
|
||||
devParentFolder: "Cartella superiore",
|
||||
devOpenFolder: "apri",
|
||||
devDescription: "Esplora il codice sorgente in esecuzione su questo nodo.",
|
||||
devTreeTitle: "File",
|
||||
devSearchTitle: "Cerca nel codice",
|
||||
devMapTitle: "Moduli",
|
||||
devRoot: "radice",
|
||||
devRootButton: "RADICE",
|
||||
devSearchPlaceholder: "Testo da cercare nel codice",
|
||||
devAnyExtension: "Qualsiasi file",
|
||||
devSearchButton: "Cerca",
|
||||
devStatsFiles: "File",
|
||||
devStatsLines: "Righe",
|
||||
devStatsModules: "Moduli",
|
||||
devStatsLanguages: "Lingue",
|
||||
devNotViewable: "non visualizzabile",
|
||||
devEmptyFolder: "Questa cartella è vuota.",
|
||||
devSize: "Dimensione",
|
||||
devShowing: "Mostrando",
|
||||
devLine: "riga",
|
||||
devReportBug: "Segnala Bug",
|
||||
devCreateTask: "Crea Attività",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Trovato leggendo il codice sorgente di Oasis",
|
||||
devTaskPrefix: "Rivedere",
|
||||
devPrevPage: "Righe precedenti",
|
||||
devNextPage: "Righe successive",
|
||||
devMatches: "corrispondenze",
|
||||
devFilesScanned: "file analizzati",
|
||||
devNoResults: "Ancora nessuna corrispondenza.",
|
||||
devColModule: "Modulo",
|
||||
devColState: "Stato",
|
||||
devColModel: "Modello",
|
||||
devColView: "Vista",
|
||||
devColRoutes: "Rotte",
|
||||
devColTests: "Test",
|
||||
devOn: "attivo",
|
||||
devOff: "inattivo",
|
||||
modulesDevLabel: "Sviluppo",
|
||||
modulesDevDescription: "Modulo per gestire il codice sorgente di Oasis.",
|
||||
themeIntro:
|
||||
"Scegli un tema.",
|
||||
setTheme: "Imposta tema",
|
||||
|
|
@ -693,7 +756,7 @@ module.exports = {
|
|||
spreadLabel: "Diffondi",
|
||||
spreadHint: "Diffondi questo a chi ti supporta (replica via il tuo feed).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Benvenuto su Oasis — un social network libero, peer-to-peer, federato e cifrato, con un'architettura distribuita solo su invito.\n\nAlcuni posti interessanti da cui partire:\n\n- /profile — Modifica il tuo avatar, nome, descrizione e quali moduli appaiono sul tuo lato pubblico.\n- /invites — Aggiungi un pub per federarti con il resto della rete.\n- /peers — Vedi chi è connesso, riscansiona la LAN, esporta o importa liste di peer.\n- /inhabitants — Scopri e visita gli avatar di altre persone.\n- /tribes — Crea o unisciti a gruppi privati cifrati end-to-end.\n- /inbox — Leggi e invia messaggi privati.\n- /activity — Vedi l'attività recente, tua e della tua rete.\n- /publish — Scrivi un post o condividi un'immagine, un audio, un video o un documento.\n\nAlcuni luoghi interessanti per connettersi:\n\n- /fediverse — Gestisci i tuoi altri account del fediverso, inclusi l'invio e la ricezione di contenuti.\n\nQuesto messaggio è stato inviato privatamente da te a te stesso, perciò non serviva alcuna connessione per riceverlo.",
|
||||
welcomePmBody: "Benvenuto su Oasis — un social network libero, peer-to-peer, federato e cifrato, con un'architettura distribuita solo su invito.\n\nAlcuni posti interessanti da cui partire:\n\n- /profile — Modifica il tuo avatar, nome, descrizione e quali moduli appaiono sul tuo lato pubblico.\n- /invites — Aggiungi un pub per federarti con il resto della rete.\n- /peers — Vedi chi è connesso, riscansiona la LAN, esporta o importa liste di peer.\n- /inhabitants — Scopri e visita gli avatar di altre persone.\n- /tribes — Crea o unisciti a gruppi privati cifrati end-to-end.\n- /inbox — Leggi e invia messaggi privati.\n- /activity — Vedi l'attività recente, tua e della tua rete.\n- /publish — Scrivi un post o condividi un'immagine, un audio, un video o un documento.\n- /search — Cerca i contenuti della rete per tipo.\n\nAlcuni luoghi interessanti per connettersi:\n\n- /fediverse — Gestisci i tuoi altri account del fediverso, inclusi l'invio e la ricezione di contenuti.\n\nQuesto messaggio è stato inviato privatamente da te a te stesso, perciò non serviva alcuna connessione per riceverlo.",
|
||||
profileVisibilityTitle: "Visibilità del profilo pubblico",
|
||||
profileVisibilityHint: "Scegli quali campi mostrano gli altri abitanti nel tuo profilo. Per impostazione predefinita appare solo Karma.",
|
||||
profileSensorsSectionTitle: "Sensori",
|
||||
|
|
@ -1224,6 +1287,9 @@ module.exports = {
|
|||
eventButton: "EVENTI",
|
||||
taskButton: "COMPITI",
|
||||
votesButton: "VOTAZIONI",
|
||||
industryButton: "INDUSTRIA",
|
||||
projectButton: "PROGETTI",
|
||||
shopProductButton: "PRODOTTI",
|
||||
reportButton: "SEGNALAZIONI",
|
||||
feedButton: "FEED",
|
||||
marketButton: "MERCATO",
|
||||
|
|
@ -1252,7 +1318,7 @@ module.exports = {
|
|||
trendingItemStatus: "Stato articolo",
|
||||
trendingTotalVotes: "Voti totali",
|
||||
trendingTotalOpinions: "Opinioni totali",
|
||||
trendingNoContentMessage: "Nessun contenuto di tendenza disponibile.",
|
||||
trendingNoContentMessage: "Ancora nessuna tendenza.",
|
||||
trendingAuthor: "Di",
|
||||
trendingCreatedAtLabel: "Creato il",
|
||||
trendingTotalCount: "Conteggio totale",
|
||||
|
|
@ -1441,7 +1507,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Creato il",
|
||||
transfersConfirmations: "CONFERME",
|
||||
transfersContainingBlock: "Blocco contenitore",
|
||||
transfersExportContract: "Crea contratto",
|
||||
transfersExportContract: "Contratto intelligente",
|
||||
transfersConfirmButton: "Conferma trasferimento",
|
||||
transfersNoItems: "Nessun trasferimento trovato.",
|
||||
transfersMineSectionTitle: "I tuoi trasferimenti",
|
||||
|
|
@ -1567,7 +1633,7 @@ module.exports = {
|
|||
cvDeleteButton: "Elimina",
|
||||
cvNoCV: "Nessun CV trovato.",
|
||||
blogSubject: "Oggetto",
|
||||
blogMessage: "Corpo limitato a 8096 caratteri.",
|
||||
blogMessage: "Messaggio",
|
||||
blogImage: "Carica media (max: 50MB)",
|
||||
blogPublish: "Anteprima",
|
||||
noPopularMessages: "Nessun messaggio popolare pubblicato ancora",
|
||||
|
|
@ -2202,6 +2268,7 @@ module.exports = {
|
|||
agendaFilterReports: "SEGNALAZIONI",
|
||||
agendaFilterTransfers: "TRASFERIMENTI",
|
||||
agendaFilterJobs: "LAVORI",
|
||||
agendaFilterIndustry: "INDUSTRIA",
|
||||
agendaFilterProjects: "PROGETTI",
|
||||
agendaFilterCalendars: "CALENDARI",
|
||||
agendaNoItems: "Nessun incarico trovato.",
|
||||
|
|
@ -2323,16 +2390,31 @@ module.exports = {
|
|||
privateMessage: "PM",
|
||||
pmSendTitle: "Messaggi privati",
|
||||
pmSend: "Invia!",
|
||||
pmDescription: "Usa questo modulo per inviare un messaggio crittografato ad altri abitanti.",
|
||||
pmCancel: "Annulla",
|
||||
pmReset: "Reimposta",
|
||||
pmSharedKeyHint: "Condividi questa chiave con il destinatario tramite un altro canale. È necessaria per decifrare.",
|
||||
pmDescription: "Usa questo modulo per inviare un messaggio/file cifrato ad altri abitanti.",
|
||||
pmComposeTitle: "Invia un messaggio",
|
||||
pmRecipients: "Destinatari",
|
||||
pmRecipientsHint: "Inserisci Oasis ID separati da virgole",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "Fino a 7 destinatari per messaggio.",
|
||||
pmTextPlaceholder: "Corpo limitato a 7000 caratteri.",
|
||||
pmSubject: "Oggetto",
|
||||
pmSubjectHint: "Inserisci l'oggetto del messaggio",
|
||||
pmText: "Messaggio",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Decifra",
|
||||
fileShareTitle: "Condividi un file",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "File",
|
||||
fileShareDownload: "Scarica",
|
||||
fileShareMutualError: "Puoi condividere file solo con abitanti con supporto reciproco.",
|
||||
fileShareNoFile: "Nessun file selezionato.",
|
||||
fileShareTooLarge: "Il file supera la dimensione consentita.",
|
||||
fileShareFailed: "Impossibile preparare il file.",
|
||||
fileShareSendError: "Impossibile inviare il file.",
|
||||
fileShareUnavailable: "Questo file non è disponibile al momento. Riprova più tardi.",
|
||||
pmCrypterBadKey: "La chiave condivisa è errata!",
|
||||
pmCrypterTooLong: "Il messaggio è troppo lungo per essere cifrato con il Crypter. Accorcialo e riprova.",
|
||||
pmCrypterCipherLabel: "Messaggio ricifrato",
|
||||
|
|
@ -2353,15 +2435,27 @@ module.exports = {
|
|||
pmNoSubject: "(senza oggetto)",
|
||||
pmSubjectLabel: "Oggetto:",
|
||||
pmBodyLabel: "Messaggio",
|
||||
pmBotJobs: "42-LavoriBOT",
|
||||
pmBotProjects: "42-ProgettiBOT",
|
||||
pmBotMarket: "42-MercatoBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "La casa al governo del L.A.R.P è cambiata.",
|
||||
politicalBotParliamentTitle: "È iniziato un nuovo ciclo di governo nel Parlamento.",
|
||||
politicalBotTribeTitle: "È iniziato un nuovo ciclo di governo in una delle tue Tribù.",
|
||||
politicalBotLarpIntro: "Ora governa {house} durante questo ciclo: {cycle}",
|
||||
politicalBotParliamentIntro: "Il governo attuale è {gov}",
|
||||
politicalBotParliamentIntroLeader: "Il governo attuale è {gov}, esercitato da {leader}",
|
||||
politicalBotTribeIntro: "Il governo attuale nella Tribù {tribe} è {gov}",
|
||||
politicalBotTribeIntroLeader: "Il governo attuale nella Tribù {tribe} è {gov}, esercitato da {leader}",
|
||||
politicalBotLeaderLabel: "Leader",
|
||||
inboxJobSubscribedTitle: "Nuova iscrizione alla tua offerta di lavoro",
|
||||
pmInhabitantWithId: "Abitante con Oasis ID:",
|
||||
pmHasSubscribedToYourJobOffer: "si è iscritto alla tua offerta di lavoro",
|
||||
inboxProjectCreatedTitle: "Nuovo progetto creato",
|
||||
pmHasCreatedAProject: "ha creato un progetto",
|
||||
inboxMarketItemSoldTitle: "Articolo venduto",
|
||||
inboxShopSoldTitle: "Prodotto venduto",
|
||||
pmYourItem: "Il tuo articolo",
|
||||
pmHasBeenSoldTo: "è stato venduto a",
|
||||
pmFor: "per",
|
||||
|
|
@ -2396,7 +2490,7 @@ module.exports = {
|
|||
visitContent: "Visita contenuto",
|
||||
banking: 'Banking',
|
||||
bankingTitle: 'Banking',
|
||||
bankingDescription: 'Esplora il valore attuale di ECOin e la corrispondente allocazione UBI, distribuita per epoca in base a partecipazione e fiducia.',
|
||||
bankingDescription: "L'economia ECOin: saldo, reddito di base, tasse e valore dell'industria.",
|
||||
bankOverview: 'Panoramica',
|
||||
bankEpochs: 'Epoche',
|
||||
bankRules: 'Regole',
|
||||
|
|
@ -2430,6 +2524,10 @@ module.exports = {
|
|||
bankEpochId: 'ID epoca',
|
||||
bankRuleHash: 'Hash snapshot regole',
|
||||
bankViewEpoch: 'Vedi epoca',
|
||||
bankYourIndustryBalance: "La tua quota industriale",
|
||||
bankYourUbiMonth: "Il tuo RBU (questo mese)",
|
||||
bankYourFundsMonth: "I tuoi fondi (questo mese)",
|
||||
bankIndustryBalance: "Produzione industriale (stimata)",
|
||||
bankUserBalance: 'Il tuo saldo',
|
||||
ecoWalletNotConfigured: 'Portafoglio ECOin non configurato',
|
||||
editWallet: 'Modifica portafoglio',
|
||||
|
|
@ -2469,7 +2567,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "NESSUN FONDO!",
|
||||
bankUbiAvailableOk: "DISPONIBILE!",
|
||||
bankUbiAvailability: "Disponibilità UBI",
|
||||
bankUbiAvailability: "RBU (rete)",
|
||||
bankAlreadyClaimedThisMonth: "Già richiesto questo mese",
|
||||
bankUbiThisMonth: "RBU (questo mese)",
|
||||
bankUbiLastClaimed: "RBU (ultima richiesta)",
|
||||
|
|
@ -2899,6 +2997,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Tag",
|
||||
jobsTagsPlaceholder: "tag1, tag2, tag3",
|
||||
noJobsMatch: "Nessun lavoro corrisponde alla ricerca.",
|
||||
industrySearchPlaceholder: "Cerca fabbriche…",
|
||||
industryAllSectors: "Tutti i settori",
|
||||
industryVisitButton: "Visita industria",
|
||||
industryAdvanceTo: "Imposta a",
|
||||
industryAmount: "Importo",
|
||||
industryApproveBuild: "Approva",
|
||||
industryBackToFacility: "← Fabbrica",
|
||||
industryBlueprint: "Blueprint",
|
||||
industryBlueprintLabel: "Blueprint di Industria",
|
||||
industryBlueprints: "Blueprint",
|
||||
industryBuild: "Build",
|
||||
industryBuildNotes: "Note",
|
||||
industryBuildStart: "Data di inizio",
|
||||
industryVoteUpdateButton: "Vota aggiornamento",
|
||||
industryVoteDeleteButton: "Vota eliminazione",
|
||||
industryRevokeVote: "Revoca",
|
||||
industryTimeLeft: "Tempo rimanente",
|
||||
industryBuildEnd: "Data di fine",
|
||||
industryBuilds: "Build",
|
||||
industryBuildTitle: "Titolo",
|
||||
industryContribute: "Contribuisci",
|
||||
industryContributeEco: "Contribuisci ECO",
|
||||
industryContributeLabor: "Contribuisci lavoro",
|
||||
industryContributeButton: "Contribuisci",
|
||||
industryContributeMaterial: "Contribuisci materiale",
|
||||
industryContributions: "Contributi",
|
||||
industryContributors: "contributori",
|
||||
industryCreateBlueprintButton: "Crea blueprint",
|
||||
industryDistribute: "Distribuisci",
|
||||
industryDistributeButton: "Distribuisci per quote",
|
||||
industryDistribution: "Distribuzione",
|
||||
industryEcoAmount: "Importo (ECO)",
|
||||
industryEcoContribHint: "I contributi in ECO vengono trasferiti all'amministratore come custode della tesoreria del build.",
|
||||
industryEditBlueprint: "Modifica blueprint",
|
||||
industryFacility: "Fabbrica",
|
||||
industryKindLabel: "Tipo",
|
||||
industryKind_labor: "Lavoro",
|
||||
industryKind_material: "Materiale",
|
||||
industryKind_eco: "Fondi",
|
||||
industryLaborHours: "Lavoro (ore)",
|
||||
industryHours: "Ore",
|
||||
industryLicense: "Licenza",
|
||||
industryMaterialItem: "Materiale",
|
||||
industryMaterials: "Materiali",
|
||||
industryMaterialsHint: "Un materiale per riga, nel formato nome:quantità:prezzo.",
|
||||
industryEstMaterials: "Totale materiali",
|
||||
industryEstLabor: "Totale lavoro",
|
||||
industryEstTaxes: "Tasse",
|
||||
industryEstTotal: "Prezzo stimato",
|
||||
industryBuildingPrice: "Prezzo di costruzione",
|
||||
industryFinalPrice: "Prezzo finale",
|
||||
industryBlueprintDescPlaceholder: "Specifiche, dimensioni, peso, documentazione…",
|
||||
industryMaterialValue: "Valore (ECO)",
|
||||
industryMember: "Membro",
|
||||
industryNewBlueprint: "Nuovo blueprint",
|
||||
industryNewBuild: "Proponi un build",
|
||||
industryEditBuild: "Modifica produzione",
|
||||
industryNoBlueprint: "— nessuno —",
|
||||
industryNeedBlueprint: "Crea prima un progetto: ogni produzione ne fabbrica uno.",
|
||||
industryNoBlueprints: "Ancora nessun blueprint.",
|
||||
industryNoBuilds: "Ancora nessun build.",
|
||||
industryNote: "Nota",
|
||||
industryOutput: "Output",
|
||||
industryOutputItem: "Nome del prodotto",
|
||||
industryOutputKind: "Tipo di prodotto",
|
||||
industryOutputQty: "Unità per produzione",
|
||||
industryOutputUnit: "Unità di misura",
|
||||
industryOutputValue: "Valore di output (ECO, es. dalla vendita)",
|
||||
industryPayout: "Pagamento",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Crea lavoro",
|
||||
industryPot: "Monte",
|
||||
industryProposeBuildButton: "Proponi build",
|
||||
industryProposer: "Proponente",
|
||||
industryAuthor: "Autore",
|
||||
industrySellOnMarket: "Invia al mercato",
|
||||
industrySendToProjects: "Crea progetto",
|
||||
industryShare: "Quota",
|
||||
industryShares: "Quote",
|
||||
industrySkills: "Competenze",
|
||||
industryTreasury: "Tesoreria",
|
||||
industryKind_physical: "Fisico",
|
||||
industryKind_digital: "Digitale",
|
||||
industryBuildStatus_PROPOSED: "PROPOSTO",
|
||||
industryBuildStatus_REJECTED: "RESPINTO",
|
||||
industryBuildStatus_APPROVED: "APPROVATO",
|
||||
industryBuildStatus_STOCKING: "APPROVVIGIONAMENTO",
|
||||
industryBuildStatus_IN_PRODUCTION: "IN PRODUZIONE",
|
||||
industryBuildStatus_COMPLETED: "COMPLETATO",
|
||||
industryBuildStatus_FAILED: "FALLITO",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "Sei stato ammesso in una fabbrica.",
|
||||
industryBotApplicationTitle: "Nuova richiesta di adesione nella tua fabbrica.",
|
||||
industryBotInvitedTitle: "Sei stato invitato in una fabbrica.",
|
||||
industryBotDissolvedTitle: "Una fabbrica a cui appartieni è stata sciolta.",
|
||||
industryBotBuildApprovedTitle: "Un build è stato approvato.",
|
||||
industryBotDistributedTitle: "L'output di un build è stato distribuito.",
|
||||
industryFilterRules: "REGOLE",
|
||||
industryRulesTitle: "Regole",
|
||||
industryRulesIntro: "Industry permette agli abitanti di possedere collettivamente i mezzi di produzione: una Fabbrica è un'officina della rete che nessuno possiede privatamente.",
|
||||
industryRulesSteward: "Il fondatore è l'amministratore — un custode, non un proprietario: non può vendere, privatizzare o sciogliere la Fabbrica da solo.",
|
||||
industryRulesMembership: "La politica di adesione stabilisce come si entra: Aperta (subito), Per voto (ammessi dal voto dei membri) o Solo su invito (un membro deve invitare prima).",
|
||||
industryRulesQuorum: "Il quorum è il numero minimo di membri che devono votare perché una decisione conti, così una piccola Fabbrica non è decisa da una sola persona.",
|
||||
industryRulesMajority: "La maggioranza è la frazione di voti necessaria (0,5 = metà, 1 = unanimità); una decisione passa quando i SÌ raggiungono almeno max(quorum, membri × maggioranza).",
|
||||
industryRulesDecisions: "I membri votano per ammettere nuovi arrivati, approvare i build e sciogliere la Fabbrica; l'amministratore non può scavalcare queste decisioni collettive.",
|
||||
industryRulesBlueprints: "I Blueprint sono ricette libere (COPYLEFT) — gli input (materiali, ore di lavoro, competenze) e l'output (un bene fisico o digitale) — e chiunque può forkarle.",
|
||||
industryRulesBuilds: "Un Build è un ordine di produzione: PROPOSTO → APPROVATO (per voto) → APPROVVIGIONAMENTO → IN PRODUZIONE → COMPLETATO, e accetta contributi solo una volta approvato.",
|
||||
industryRulesContributions: "I membri contribuiscono con lavoro (ore), materiali (valore ECO dichiarato) o ECO a un build; ogni contributo guadagna karma.",
|
||||
industryRulesLaborRate: "La tariffa di lavoro è il valore ECO di un'ora di lavoro in questa Fabbrica; converte le ore in karma per confrontare equamente lavoro e capitale: karma = ore × tariffa + valore materiali + ECO.",
|
||||
industryRulesShares: "La tua quota di un build è il tuo karma ÷ karma totale, e stabilisce quanto del valore di output ricevi.",
|
||||
industryRulesDistribution: "Quando una produzione è completata, lo steward distribuisce il monte (i fondi della produzione più il valore di vendita) tra i contributori, in proporzione alle loro quote.",
|
||||
industryRulesTreasury: "I contributi in ECO sono custoditi dall'amministratore come tesoreria del build fino alla distribuzione; tutti i movimenti sono registrati sulla rete e le dispute possono andare alle Courts.",
|
||||
industryJobs: "Lavori",
|
||||
industryNoJobs: "Ancora nessuna posizione.",
|
||||
industryCreatePosition: "Crea posizione",
|
||||
industryViewCV: "CV",
|
||||
industryReportButton: "Segnala",
|
||||
industryCreateTask: "Crea attività",
|
||||
industryOpenDispute: "Apri controversia",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "es. unità, kg, licenza",
|
||||
industryOutputItemPlaceholder: "es. robot",
|
||||
industryOutputQtyPlaceholder: "es. 5",
|
||||
industrySkillsPlaceholder: "es. saldatura, reti, installazione-solare",
|
||||
industryCreateInvite: "Genera invito",
|
||||
industryPauseVotes: "Voti di stato",
|
||||
industryTitle: "Industria",
|
||||
industryDescription: "Modulo per gestire collettivamente i mezzi di produzione.",
|
||||
industryLabel: "Industria",
|
||||
typeIndustryBuild: "BUILD",
|
||||
typeIndustryBlueprint: "BLUEPRINT",
|
||||
typeIndustryAllocation: "DISTRIBUZIONE",
|
||||
typeIndustry: "INDUSTRIA",
|
||||
modulesIndustryLabel: "Industria",
|
||||
modulesIndustryDescription: "Modulo per gestire collettivamente i mezzi di produzione.",
|
||||
industryFilterAll: "TUTTE",
|
||||
industryFilterMember: "MEMBRO",
|
||||
industryFilterBlueprints: "PROGETTI",
|
||||
industryFilterBuilds: "PRODUZIONI",
|
||||
industryFilterMine: "MIE",
|
||||
industryFilterActive: "IN FUNZIONE",
|
||||
industryFilterPaused: "IN PAUSA",
|
||||
industryFilterDissolved: "SCIOLTE",
|
||||
industryAllTitle: "Industria",
|
||||
industryMemberTitle: "Fabbriche di cui faccio parte",
|
||||
industryMineTitle: "Le mie fabbriche",
|
||||
industryActiveTitle: "In funzione",
|
||||
industryPausedTitle: "Fabbriche in pausa",
|
||||
industryDissolvedTitle: "Fabbriche sciolte",
|
||||
industryNoFacilitiesFound: "Nessuna fabbrica trovata.",
|
||||
industryCreateFacility: "Crea fabbrica",
|
||||
industryMembers: "Membri",
|
||||
industryMemberBadge: "MEMBRO",
|
||||
industryName: "Nome",
|
||||
industryNamePlaceholder: "Nome della fabbrica",
|
||||
industryDescriptionLabel: "Descrizione",
|
||||
industryDescriptionPlaceholder: "Cosa produce questa fabbrica?",
|
||||
industrySector: "Settore",
|
||||
industryMembershipPolicy: "Politica di adesione",
|
||||
industryQuorum: "Quorum",
|
||||
industryMajority: "Maggioranza",
|
||||
industryLaborRate: "Tariffa di lavoro",
|
||||
industryCreateButton: "Crea fabbrica",
|
||||
industryUpdateButton: "Aggiorna",
|
||||
industrySteward: "Amministratore",
|
||||
industryStatusActive: "IN FUNZIONE",
|
||||
industryStatusPaused: "IN PAUSA",
|
||||
industryStatusDissolved: "SCIOLTA",
|
||||
industryStatusLabel: "Stato",
|
||||
industryJoinButton: "Unisciti",
|
||||
industryApplyButton: "Richiedi di unirti",
|
||||
industryLeaveButton: "Esci",
|
||||
industryInviteButton: "Invita",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "Serve un invito per unirti.",
|
||||
industryPauseButton: "Vota la pausa",
|
||||
industryResumeButton: "Vota la ripresa",
|
||||
industryEditButton: "Modifica",
|
||||
industryDeleteButton: "Elimina",
|
||||
industryBackToList: "← Industria",
|
||||
industryPendingApplicants: "Richieste in sospeso",
|
||||
industryVotesYes: "sì",
|
||||
industryVotesNo: "no",
|
||||
industryAlreadyVoted: "votato",
|
||||
industryAdmit: "Ammetti",
|
||||
industryReject: "Rifiuta",
|
||||
industryDissolveTitle: "Sciogli fabbrica",
|
||||
industryDissolveHint: "Lo scioglimento richiede un voto collettivo; l'amministratore non può sciogliere da solo.",
|
||||
industryDissolveVote: "Vota lo scioglimento",
|
||||
industrySector_software: "Software",
|
||||
industrySector_hardware: "Hardware",
|
||||
industrySector_agriculture: "Agricoltura",
|
||||
industrySector_textile: "Tessile",
|
||||
industrySector_energy: "Energia",
|
||||
industrySector_food: "Alimentare",
|
||||
industrySector_construction: "Costruzioni",
|
||||
industrySector_media: "Media",
|
||||
industrySector_services: "Servizi",
|
||||
industrySector_other: "Altro",
|
||||
industryPolicy_open: "Aperta",
|
||||
industryPolicy_vote: "Per voto",
|
||||
industryPolicy_invite: "Solo su invito",
|
||||
projectsTitle: "Progetti",
|
||||
projectsDescription: "Crea, finanzia e segui progetti comunitari nella tua rete.",
|
||||
projectCreateProject: "Crea progetto",
|
||||
|
|
@ -3259,6 +3559,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "Descrizione",
|
||||
chatMessageReply: "Risposta",
|
||||
chatMessageLabel: "Messaggio",
|
||||
chatCategory: "Categoria",
|
||||
chatStatus: "STATO",
|
||||
chatFilterAll: "TUTTI",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
pt: {
|
||||
bbAdd: "Adicionar",
|
||||
bbQuickActions: "Ações rápidas",
|
||||
bbPickTitle: "Fixar um módulo",
|
||||
bbPickDesc: "Escolhe um módulo para o espaço + da barra inferior.",
|
||||
bbPickNone: "Nenhum",
|
||||
bbManage: "Editar",
|
||||
bbYourBar: "Sua barra",
|
||||
bbRemove: "Remover",
|
||||
bbFull: "Máximo atingido",
|
||||
bbDone: "Concluído",
|
||||
activityChangeFilter: "Mudar filtro",
|
||||
emptyConnectHint: "Liga-te a um pub para sincronizar com a rede.",
|
||||
emptyConnectCta: "Ligar a um pub",
|
||||
menuCommunity: "Comunidade",
|
||||
activityGroupCommunity: "Comunidade e governança",
|
||||
activityGroupOrg: "Organização",
|
||||
activityGroupComm: "Comunicação",
|
||||
activityGroupEconomy: "Economia",
|
||||
activityGroupMedia: "Conteúdo e média",
|
||||
activityGroupOther: "Outros",
|
||||
languageName: "Português",
|
||||
shopOrderStatusPaid: "Pagamento recebido",
|
||||
shopOrderStatusReceived: "Recebido",
|
||||
|
|
@ -426,7 +406,8 @@ module.exports = {
|
|||
publish: "Publicar",
|
||||
contentWarningPlaceholder: "Adiciona um assunto à publicação (opcional)",
|
||||
privateWarningPlaceholder: "Adiciona habitantes para enviar uma publicação privada (opcional)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Corpo limitado a 7000 caracteres.",
|
||||
publishTooLong: "A tua publicação é demasiado longa. Encurta-a, por favor.",
|
||||
publishCustomDescription: [
|
||||
"LEMBRA-TE: Devido à tecnologia blockchain, uma vez publicado, não pode ser editado nem eliminado.",
|
||||
],
|
||||
|
|
@ -491,7 +472,89 @@ module.exports = {
|
|||
passwordLengthInfo: "A senha deve ter pelo menos 32 caracteres.",
|
||||
passwordImport: "Escreve a tua senha para decifrar os dados que serão guardados no teu diretório pessoal (nome: secret)",
|
||||
exportPasswordPlaceholder: "Usa minúsculas, maiúsculas, números e símbolos",
|
||||
fileInfo: "A tua chave secreta encriptada será guardada no teu diretório pessoal (nome: oasis.enc)",
|
||||
fileInfo: "A tua chave secreta encriptada será descarregada para o teu dispositivo (nome: oasis.enc)",
|
||||
developer: "Desenvolvimento",
|
||||
devTitle: "Desenvolvimento",
|
||||
welcomeBannerText: "Bem-vinda ao OASIS. Segue estes passos rápidos para configurar o teu avatar.",
|
||||
welcomeBannerAction: "Começar!",
|
||||
welcomeTitle: "Bem-vinda",
|
||||
welcomeStepGreetingAction: "Enviar",
|
||||
welcomeJoinPubButton: "Juntar-se ao pub",
|
||||
welcomeStepLarpAction: "Juntar-se à \"Academia\"",
|
||||
welcomeStepLarpText: "Junta-te ao nosso jogo de representação ao vivo.",
|
||||
welcomeStepLarpTitle: "Junta-te ao L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "Envia um \"Olá mundo!\"",
|
||||
welcomeStepGreetingText: "Envia uma mensagem para que outros habitantes te possam descobrir.",
|
||||
welcomeJoinPub: "Juntar-se a",
|
||||
welcomeDescription: "Algumas coisas que vale a pena fazer antes de começar.",
|
||||
welcomeProgress: "Concluído",
|
||||
welcomeStepDone: "feito",
|
||||
welcomeStepPending: "pendente",
|
||||
welcomeSkip: "Agora não",
|
||||
welcomeStepLanguageTitle: "Escolhe o teu idioma",
|
||||
welcomeStepLanguageText: "O Oasis fala vários idiomas. Podes mudar quando quiseres.",
|
||||
welcomeStepProfileTitle: "Edita o teu perfil",
|
||||
welcomeStepProfileText: "Escolhe um nome, acrescenta uma descrição e põe uma imagem para que os outros habitantes te reconheçam.",
|
||||
welcomeStepProfileAction: "Guardar perfil",
|
||||
welcomeStepFederationTitle: "Junta-te à rede principal",
|
||||
welcomeStepFederationText: "Liga-te ao nosso pub para encontrar outros habitantes e começar a replicar.",
|
||||
welcomeStepFederationAction: "Ir aos convites",
|
||||
welcomeStepBackupTitle: "Faz cópia do teu ID",
|
||||
welcomeStepBackupText: "A tua identidade é um ficheiro de chaves neste dispositivo.",
|
||||
welcomeStepBackupWarning: "SE O PERDERES, NINGUÉM O PODE RECUPERAR POR TI.",
|
||||
welcomeStepBackupAction: "Cópia de segurança!",
|
||||
welcomeCompleteTitle: "Tudo pronto.",
|
||||
welcomeCompleteText: "O teu nó está pronto. A partir daqui a rede cresce com as pessoas que segues.",
|
||||
welcomeFindPeople: "Procurar habitantes",
|
||||
devFilterFiles: "FICHEIROS",
|
||||
devFilterSearch: "PROCURAR",
|
||||
devFilterModules: "MÓDULOS",
|
||||
devFilterTranslations: "TRADUÇÕES",
|
||||
devFilterStyles: "ESTILOS",
|
||||
devFilterTests: "TESTES",
|
||||
devVersion: "Versão",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Suites de testes",
|
||||
devParentFolder: "Pasta superior",
|
||||
devOpenFolder: "abrir",
|
||||
devDescription: "Explora o código-fonte em execução neste nó.",
|
||||
devTreeTitle: "Ficheiros",
|
||||
devSearchTitle: "Procurar no código",
|
||||
devMapTitle: "Módulos",
|
||||
devRoot: "raiz",
|
||||
devRootButton: "RAIZ",
|
||||
devSearchPlaceholder: "Texto a procurar no código",
|
||||
devAnyExtension: "Qualquer ficheiro",
|
||||
devSearchButton: "Procurar",
|
||||
devStatsFiles: "Ficheiros",
|
||||
devStatsLines: "Linhas",
|
||||
devStatsModules: "Módulos",
|
||||
devStatsLanguages: "Idiomas",
|
||||
devNotViewable: "não visualizável",
|
||||
devEmptyFolder: "Esta pasta está vazia.",
|
||||
devSize: "Tamanho",
|
||||
devShowing: "A mostrar",
|
||||
devLine: "linha",
|
||||
devReportBug: "Reportar Bug",
|
||||
devCreateTask: "Criar Tarefa",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Encontrado ao ler o código-fonte do Oasis",
|
||||
devTaskPrefix: "Rever",
|
||||
devPrevPage: "Linhas anteriores",
|
||||
devNextPage: "Linhas seguintes",
|
||||
devMatches: "correspondências",
|
||||
devFilesScanned: "ficheiros analisados",
|
||||
devNoResults: "Ainda sem correspondências.",
|
||||
devColModule: "Módulo",
|
||||
devColState: "Estado",
|
||||
devColModel: "Modelo",
|
||||
devColView: "Vista",
|
||||
devColRoutes: "Rotas",
|
||||
devColTests: "Testes",
|
||||
devOn: "ativo",
|
||||
devOff: "inativo",
|
||||
modulesDevLabel: "Desenvolvimento",
|
||||
modulesDevDescription: "Módulo para gerir o código-fonte do Oasis.",
|
||||
themeIntro:
|
||||
"Escolhe um tema.",
|
||||
setTheme: "Definir tema",
|
||||
|
|
@ -693,7 +756,7 @@ module.exports = {
|
|||
spreadLabel: "Difundir",
|
||||
spreadHint: "Difunde isto aos teus apoiantes (replica pelo teu feed).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Bem-vindo ao Oasis — uma rede social livre, peer-to-peer, federada e cifrada, com uma arquitetura distribuída apenas por convite.\n\nAlguns locais interessantes por onde começar:\n\n- /profile — Edita o teu avatar, nome, descrição e quais módulos aparecem no teu lado público.\n- /invites — Adiciona um pub para te federares com o resto da rede.\n- /peers — Vê quem está ligado, faz nova varredura da LAN, exporta ou importa listas de peers.\n- /inhabitants — Descobre e visita os avatares de outras pessoas.\n- /tribes — Cria ou junta-te a grupos privados com cifragem ponta-a-ponta.\n- /inbox — Lê e envia mensagens privadas.\n- /activity — Vê a atividade recente, tua e da tua rede.\n- /publish — Escreve um post ou partilha uma imagem, áudio, vídeo ou documento.\n\nAlguns lugares interessantes para conectar:\n\n- /fediverse — Faça a gestão das suas outras contas do fediverso, incluindo enviar e receber conteúdo.\n\nEsta mensagem foi enviada de forma privada de ti para ti mesmo, por isso não foi necessária qualquer ligação para a receber.",
|
||||
welcomePmBody: "Bem-vindo ao Oasis — uma rede social livre, peer-to-peer, federada e cifrada, com uma arquitetura distribuída apenas por convite.\n\nAlguns locais interessantes por onde começar:\n\n- /profile — Edita o teu avatar, nome, descrição e quais módulos aparecem no teu lado público.\n- /invites — Adiciona um pub para te federares com o resto da rede.\n- /peers — Vê quem está ligado, faz nova varredura da LAN, exporta ou importa listas de peers.\n- /inhabitants — Descobre e visita os avatares de outras pessoas.\n- /tribes — Cria ou junta-te a grupos privados com cifragem ponta-a-ponta.\n- /inbox — Lê e envia mensagens privadas.\n- /activity — Vê a atividade recente, tua e da tua rede.\n- /publish — Escreve um post ou partilha uma imagem, áudio, vídeo ou documento.\n- /search — Pesquise o conteúdo da rede por tipo.\n\nAlguns lugares interessantes para conectar:\n\n- /fediverse — Faça a gestão das suas outras contas do fediverso, incluindo enviar e receber conteúdo.\n\nEsta mensagem foi enviada de forma privada de ti para ti mesmo, por isso não foi necessária qualquer ligação para a receber.",
|
||||
profileVisibilityTitle: "Visibilidade do perfil público",
|
||||
profileVisibilityHint: "Escolhe que campos os outros habitantes veem no teu perfil. Por defeito apenas Karma é mostrado.",
|
||||
profileSensorsSectionTitle: "Sensores",
|
||||
|
|
@ -1224,6 +1287,9 @@ module.exports = {
|
|||
eventButton: "EVENTOS",
|
||||
taskButton: "TAREFAS",
|
||||
votesButton: "VOTAÇÕES",
|
||||
industryButton: "INDÚSTRIA",
|
||||
projectButton: "PROJETOS",
|
||||
shopProductButton: "PRODUTOS",
|
||||
reportButton: "RELATÓRIOS",
|
||||
feedButton: "FEED",
|
||||
marketButton: "MERCADO",
|
||||
|
|
@ -1252,7 +1318,7 @@ module.exports = {
|
|||
trendingItemStatus: "Estado do item",
|
||||
trendingTotalVotes: "Total de votos",
|
||||
trendingTotalOpinions: "Total de opiniões",
|
||||
trendingNoContentMessage: "Ainda sem conteúdo em tendência disponível.",
|
||||
trendingNoContentMessage: "Ainda não há tendências.",
|
||||
trendingAuthor: "Por",
|
||||
trendingCreatedAtLabel: "Criado em",
|
||||
trendingTotalCount: "Contagem total",
|
||||
|
|
@ -1441,7 +1507,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Criado em",
|
||||
transfersConfirmations: "CONFIRMAÇÕES",
|
||||
transfersContainingBlock: "Bloco contendor",
|
||||
transfersExportContract: "Criar contrato",
|
||||
transfersExportContract: "Contrato inteligente",
|
||||
transfersConfirmButton: "Confirmar transferência",
|
||||
transfersNoItems: "Sem transferências encontradas.",
|
||||
transfersMineSectionTitle: "As tuas transferências",
|
||||
|
|
@ -1567,7 +1633,7 @@ module.exports = {
|
|||
cvDeleteButton: "Eliminar",
|
||||
cvNoCV: "Sem CV encontrado.",
|
||||
blogSubject: "Assunto",
|
||||
blogMessage: "Corpo limitado a 8096 caracteres.",
|
||||
blogMessage: "Mensagem",
|
||||
blogImage: "Carregar mídia (máx: 50MB)",
|
||||
blogPublish: "Pré-visualizar",
|
||||
noPopularMessages: "Ainda sem mensagens populares publicadas",
|
||||
|
|
@ -2202,6 +2268,7 @@ module.exports = {
|
|||
agendaFilterReports: "RELATÓRIOS",
|
||||
agendaFilterTransfers: "TRANSFERÊNCIAS",
|
||||
agendaFilterJobs: "EMPREGOS",
|
||||
agendaFilterIndustry: "INDÚSTRIA",
|
||||
agendaFilterProjects: "PROJETOS",
|
||||
agendaFilterCalendars: "CALENDÁRIOS",
|
||||
agendaNoItems: "Sem atribuições encontradas.",
|
||||
|
|
@ -2323,16 +2390,31 @@ module.exports = {
|
|||
privateMessage: "MP",
|
||||
pmSendTitle: "Mensagens privadas",
|
||||
pmSend: "Enviar!",
|
||||
pmDescription: "Usa este formulário para enviar uma mensagem encriptada a outros habitantes.",
|
||||
pmCancel: "Cancelar",
|
||||
pmReset: "Repor",
|
||||
pmSharedKeyHint: "Partilha esta chave com o destinatário por outro canal. É necessária para decifrar.",
|
||||
pmDescription: "Use este formulário para enviar uma mensagem/ficheiro cifrado a outros habitantes.",
|
||||
pmComposeTitle: "Enviar uma mensagem",
|
||||
pmRecipients: "Destinatários",
|
||||
pmRecipientsHint: "Introduz Oasis IDs separados por vírgulas",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "Até 7 destinatários por mensagem.",
|
||||
pmTextPlaceholder: "Corpo limitado a 7000 caracteres.",
|
||||
pmSubject: "Assunto",
|
||||
pmSubjectHint: "Introduz o assunto da mensagem",
|
||||
pmText: "Mensagem",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Decifrar",
|
||||
fileShareTitle: "Compartilhar um ficheiro",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "Ficheiro",
|
||||
fileShareDownload: "Baixar",
|
||||
fileShareMutualError: "Só pode compartilhar ficheiros com habitantes com apoio mútuo.",
|
||||
fileShareNoFile: "Nenhum ficheiro selecionado.",
|
||||
fileShareTooLarge: "O ficheiro excede o tamanho permitido.",
|
||||
fileShareFailed: "Não foi possível preparar o ficheiro.",
|
||||
fileShareSendError: "Não foi possível enviar o ficheiro.",
|
||||
fileShareUnavailable: "Este ficheiro não está disponível agora. Tenta mais tarde.",
|
||||
pmCrypterBadKey: "A chave partilhada está incorreta!",
|
||||
pmCrypterTooLong: "A mensagem é demasiado longa para ser cifrada com o Crypter. Encurta-a e tenta de novo.",
|
||||
pmCrypterCipherLabel: "Mensagem recifrada",
|
||||
|
|
@ -2353,15 +2435,27 @@ module.exports = {
|
|||
pmNoSubject: "(sem assunto)",
|
||||
pmSubjectLabel: "Assunto:",
|
||||
pmBodyLabel: "Corpo",
|
||||
pmBotJobs: "42-EmpregoBOT",
|
||||
pmBotProjects: "42-ProjetosBOT",
|
||||
pmBotMarket: "42-MercadoBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "A casa governante do L.A.R.P mudou.",
|
||||
politicalBotParliamentTitle: "Começou um novo ciclo de governo no Parlamento.",
|
||||
politicalBotTribeTitle: "Começou um novo ciclo de governo numa das tuas Tribos.",
|
||||
politicalBotLarpIntro: "Agora {house} governa durante este ciclo: {cycle}",
|
||||
politicalBotParliamentIntro: "O governo atual é {gov}",
|
||||
politicalBotParliamentIntroLeader: "O governo atual é {gov}, exercido por {leader}",
|
||||
politicalBotTribeIntro: "O governo atual na Tribo {tribe} é {gov}",
|
||||
politicalBotTribeIntroLeader: "O governo atual na Tribo {tribe} é {gov}, exercido por {leader}",
|
||||
politicalBotLeaderLabel: "Líder",
|
||||
inboxJobSubscribedTitle: "Nova subscrição à tua oferta de emprego",
|
||||
pmInhabitantWithId: "Habitante com Oasis ID:",
|
||||
pmHasSubscribedToYourJobOffer: "subscreveu a tua oferta de emprego",
|
||||
inboxProjectCreatedTitle: "Novo projeto criado",
|
||||
pmHasCreatedAProject: "criou um projeto",
|
||||
inboxMarketItemSoldTitle: "Item vendido",
|
||||
inboxShopSoldTitle: "Produto vendido",
|
||||
pmYourItem: "O teu item",
|
||||
pmHasBeenSoldTo: "foi vendido a",
|
||||
pmFor: "por",
|
||||
|
|
@ -2396,7 +2490,7 @@ module.exports = {
|
|||
visitContent: "Visitar conteúdo",
|
||||
banking: 'Banking',
|
||||
bankingTitle: 'Banking',
|
||||
bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.',
|
||||
bankingDescription: "A economia ECOin: saldo, RBU, taxas e valor da indústria.",
|
||||
bankOverview: 'Overview',
|
||||
bankEpochs: 'Epochs',
|
||||
bankRules: 'Rules',
|
||||
|
|
@ -2430,6 +2524,10 @@ module.exports = {
|
|||
bankEpochId: 'Epoch ID',
|
||||
bankRuleHash: 'Rules Snapshot Hash',
|
||||
bankViewEpoch: 'View Epoch',
|
||||
bankYourIndustryBalance: "A tua parte da indústria",
|
||||
bankYourUbiMonth: "O teu RBU (este mês)",
|
||||
bankYourFundsMonth: "Os teus fundos (este mês)",
|
||||
bankIndustryBalance: "Produção industrial (estimada)",
|
||||
bankUserBalance: 'Your Balance',
|
||||
ecoWalletNotConfigured: 'ECOin Wallet not configured',
|
||||
editWallet: 'Edit wallet',
|
||||
|
|
@ -2469,7 +2567,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "SEM FUNDOS!",
|
||||
bankUbiAvailableOk: "DISPONÍVEL!",
|
||||
bankUbiAvailability: "Disponibilidade UBI",
|
||||
bankUbiAvailability: "RBU (rede)",
|
||||
bankAlreadyClaimedThisMonth: "Já reclamado este mês",
|
||||
bankUbiThisMonth: "RBU (este mês)",
|
||||
bankUbiLastClaimed: "RBU (última reclamada)",
|
||||
|
|
@ -2899,6 +2997,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Tags",
|
||||
jobsTagsPlaceholder: "tag1, tag2, tag3",
|
||||
noJobsMatch: "Nenhum emprego corresponde à tua pesquisa.",
|
||||
industrySearchPlaceholder: "Procurar fábricas…",
|
||||
industryAllSectors: "Todos os setores",
|
||||
industryVisitButton: "Visitar indústria",
|
||||
industryAdvanceTo: "Definir para",
|
||||
industryAmount: "Quantia",
|
||||
industryApproveBuild: "Aprovar",
|
||||
industryBackToFacility: "← Fábrica",
|
||||
industryBlueprint: "Blueprint",
|
||||
industryBlueprintLabel: "Blueprint de Indústria",
|
||||
industryBlueprints: "Blueprints",
|
||||
industryBuild: "Build",
|
||||
industryBuildNotes: "Notas",
|
||||
industryBuildStart: "Data de início",
|
||||
industryVoteUpdateButton: "Votar atualização",
|
||||
industryVoteDeleteButton: "Votar exclusão",
|
||||
industryRevokeVote: "Revogar",
|
||||
industryTimeLeft: "Tempo restante",
|
||||
industryBuildEnd: "Data de fim",
|
||||
industryBuilds: "Builds",
|
||||
industryBuildTitle: "Título",
|
||||
industryContribute: "Contribuir",
|
||||
industryContributeEco: "Contribuir ECO",
|
||||
industryContributeLabor: "Contribuir trabalho",
|
||||
industryContributeButton: "Contribuir",
|
||||
industryContributeMaterial: "Contribuir material",
|
||||
industryContributions: "Contribuições",
|
||||
industryContributors: "colaboradores",
|
||||
industryCreateBlueprintButton: "Criar blueprint",
|
||||
industryDistribute: "Distribuir",
|
||||
industryDistributeButton: "Distribuir por quotas",
|
||||
industryDistribution: "Distribuição",
|
||||
industryEcoAmount: "Quantia (ECO)",
|
||||
industryEcoContribHint: "As contribuições em ECO são transferidas para o administrador como custodiante da tesouraria do build.",
|
||||
industryEditBlueprint: "Editar blueprint",
|
||||
industryFacility: "Fábrica",
|
||||
industryKindLabel: "Tipo",
|
||||
industryKind_labor: "Mão de obra",
|
||||
industryKind_material: "Material",
|
||||
industryKind_eco: "Fundos",
|
||||
industryLaborHours: "Mão de obra (horas)",
|
||||
industryHours: "Horas",
|
||||
industryLicense: "Licença",
|
||||
industryMaterialItem: "Material",
|
||||
industryMaterials: "Materiais",
|
||||
industryMaterialsHint: "Um material por linha, no formato nome:quantidade:preço.",
|
||||
industryEstMaterials: "Total materiais",
|
||||
industryEstLabor: "Total mão de obra",
|
||||
industryEstTaxes: "Impostos",
|
||||
industryEstTotal: "Preço estimado",
|
||||
industryBuildingPrice: "Preço de construção",
|
||||
industryFinalPrice: "Preço final",
|
||||
industryBlueprintDescPlaceholder: "Especificações, dimensões, peso, documentação…",
|
||||
industryMaterialValue: "Valor (ECO)",
|
||||
industryMember: "Membro",
|
||||
industryNewBlueprint: "Novo blueprint",
|
||||
industryNewBuild: "Propor um build",
|
||||
industryEditBuild: "Editar produção",
|
||||
industryNoBlueprint: "— nenhum —",
|
||||
industryNeedBlueprint: "Cria primeiro um plano: cada produção fabrica um.",
|
||||
industryNoBlueprints: "Ainda não há blueprints.",
|
||||
industryNoBuilds: "Ainda não há builds.",
|
||||
industryNote: "Nota",
|
||||
industryOutput: "Saída",
|
||||
industryOutputItem: "Nome do produto",
|
||||
industryOutputKind: "Tipo de produto",
|
||||
industryOutputQty: "Unidades por produção",
|
||||
industryOutputUnit: "Unidade de medida",
|
||||
industryOutputValue: "Valor de saída (ECO, ex. da venda)",
|
||||
industryPayout: "Pagamento",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Criar Emprego",
|
||||
industryPot: "Bolo",
|
||||
industryProposeBuildButton: "Propor build",
|
||||
industryProposer: "Proponente",
|
||||
industryAuthor: "Autor",
|
||||
industrySellOnMarket: "Enviar ao Mercado",
|
||||
industrySendToProjects: "Criar Projeto",
|
||||
industryShare: "Quota",
|
||||
industryShares: "Quotas",
|
||||
industrySkills: "Competências",
|
||||
industryTreasury: "Tesouraria",
|
||||
industryKind_physical: "Físico",
|
||||
industryKind_digital: "Digital",
|
||||
industryBuildStatus_PROPOSED: "PROPOSTO",
|
||||
industryBuildStatus_REJECTED: "REJEITADO",
|
||||
industryBuildStatus_APPROVED: "APROVADO",
|
||||
industryBuildStatus_STOCKING: "ABASTECENDO",
|
||||
industryBuildStatus_IN_PRODUCTION: "EM PRODUÇÃO",
|
||||
industryBuildStatus_COMPLETED: "CONCLUÍDO",
|
||||
industryBuildStatus_FAILED: "FALHADO",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "Você foi admitido numa fábrica.",
|
||||
industryBotApplicationTitle: "Nova solicitação de adesão na sua fábrica.",
|
||||
industryBotInvitedTitle: "Você foi convidado para uma fábrica.",
|
||||
industryBotDissolvedTitle: "Uma fábrica a que pertence foi dissolvida.",
|
||||
industryBotBuildApprovedTitle: "Um build foi aprovado.",
|
||||
industryBotDistributedTitle: "A saída de um build foi distribuída.",
|
||||
industryFilterRules: "REGRAS",
|
||||
industryRulesTitle: "Regras",
|
||||
industryRulesIntro: "Industry permite aos habitantes possuir coletivamente os meios de produção: uma Fábrica é uma oficina da rede que ninguém possui de forma privada.",
|
||||
industryRulesSteward: "O fundador é o administrador — um guardião, não um dono: não pode vender, privatizar nem dissolver a Fábrica sozinho.",
|
||||
industryRulesMembership: "A política de adesão define como se entra: Aberta (na hora), Por voto (admitido pelo voto dos membros) ou Apenas convite (um membro deve convidar primeiro).",
|
||||
industryRulesQuorum: "O quórum é o número mínimo de membros que devem votar para uma decisão contar, para que uma Fábrica pequena não seja decidida por uma só pessoa.",
|
||||
industryRulesMajority: "A maioria é a fração de votos necessária (0,5 = metade, 1 = unanimidade); uma decisão passa quando os SIM atingem pelo menos max(quórum, membros × maioria).",
|
||||
industryRulesDecisions: "Os membros votam para admitir novos, aprovar builds e dissolver a Fábrica; o administrador não pode ignorar estas decisões coletivas.",
|
||||
industryRulesBlueprints: "Os Blueprints são receitas livres (COPYLEFT) — as entradas (materiais, horas de trabalho, competências) e a saída (um bem físico ou digital) — e qualquer um pode forká-las.",
|
||||
industryRulesBuilds: "Um Build é uma ordem de produção: PROPOSTO → APROVADO (por voto) → ABASTECENDO → EM PRODUÇÃO → CONCLUÍDO, e só aceita contribuições depois de aprovado.",
|
||||
industryRulesContributions: "Os membros contribuem com trabalho (horas), materiais (valor ECO declarado) ou ECO a um build; cada contribuição ganha karma.",
|
||||
industryRulesLaborRate: "A tarifa de trabalho é o valor ECO de uma hora de trabalho nesta Fábrica; converte horas em karma para comparar esforço e capital de forma justa: karma = horas × tarifa + valor material + ECO.",
|
||||
industryRulesShares: "A tua quota de um build é o teu karma ÷ karma total, e define quanto do valor de saída recebes.",
|
||||
industryRulesDistribution: "Quando uma produção é concluída, o steward distribui o fundo (os fundos da produção mais o valor de venda) entre os contribuidores, proporcionalmente às suas quotas.",
|
||||
industryRulesTreasury: "As contribuições em ECO são guardadas pelo administrador como tesouraria do build até à distribuição; todos os movimentos ficam registados na rede e as disputas podem ir aos Courts.",
|
||||
industryJobs: "Empregos",
|
||||
industryNoJobs: "Ainda não há vagas.",
|
||||
industryCreatePosition: "Criar vaga",
|
||||
industryViewCV: "CV",
|
||||
industryReportButton: "Denunciar",
|
||||
industryCreateTask: "Criar Tarefa",
|
||||
industryOpenDispute: "Abrir disputa",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "ex. unidade, kg, licença",
|
||||
industryOutputItemPlaceholder: "ex. robô",
|
||||
industryOutputQtyPlaceholder: "ex. 5",
|
||||
industrySkillsPlaceholder: "ex. soldadura, redes, instalação-solar",
|
||||
industryCreateInvite: "Gerar convite",
|
||||
industryPauseVotes: "Votos de estado",
|
||||
industryTitle: "Indústria",
|
||||
industryDescription: "Módulo para gerir os meios de produção de forma coletiva.",
|
||||
industryLabel: "Indústria",
|
||||
typeIndustryBuild: "BUILD",
|
||||
typeIndustryBlueprint: "BLUEPRINT",
|
||||
typeIndustryAllocation: "DISTRIBUIÇÃO",
|
||||
typeIndustry: "INDÚSTRIA",
|
||||
modulesIndustryLabel: "Indústria",
|
||||
modulesIndustryDescription: "Módulo para gerir os meios de produção de forma coletiva.",
|
||||
industryFilterAll: "TODAS",
|
||||
industryFilterMember: "MEMBRO",
|
||||
industryFilterBlueprints: "PLANOS",
|
||||
industryFilterBuilds: "PRODUÇÕES",
|
||||
industryFilterMine: "MINHAS",
|
||||
industryFilterActive: "EM FUNCIONAMENTO",
|
||||
industryFilterPaused: "PAUSADAS",
|
||||
industryFilterDissolved: "DISSOLVIDAS",
|
||||
industryAllTitle: "Indústria",
|
||||
industryMemberTitle: "Fábricas de que faço parte",
|
||||
industryMineTitle: "Minhas fábricas",
|
||||
industryActiveTitle: "Em funcionamento",
|
||||
industryPausedTitle: "Fábricas pausadas",
|
||||
industryDissolvedTitle: "Fábricas dissolvidas",
|
||||
industryNoFacilitiesFound: "Nenhuma fábrica encontrada.",
|
||||
industryCreateFacility: "Criar fábrica",
|
||||
industryMembers: "Membros",
|
||||
industryMemberBadge: "MEMBRO",
|
||||
industryName: "Nome",
|
||||
industryNamePlaceholder: "Nome da fábrica",
|
||||
industryDescriptionLabel: "Descrição",
|
||||
industryDescriptionPlaceholder: "O que esta fábrica produz?",
|
||||
industrySector: "Setor",
|
||||
industryMembershipPolicy: "Política de adesão",
|
||||
industryQuorum: "Quórum",
|
||||
industryMajority: "Maioria",
|
||||
industryLaborRate: "Tarifa de trabalho",
|
||||
industryCreateButton: "Criar fábrica",
|
||||
industryUpdateButton: "Atualizar",
|
||||
industrySteward: "Administrador",
|
||||
industryStatusActive: "EM FUNCIONAMENTO",
|
||||
industryStatusPaused: "PAUSADA",
|
||||
industryStatusDissolved: "DISSOLVIDA",
|
||||
industryStatusLabel: "Estado",
|
||||
industryJoinButton: "Juntar-se",
|
||||
industryApplyButton: "Pedir para entrar",
|
||||
industryLeaveButton: "Sair",
|
||||
industryInviteButton: "Convidar",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "Precisas de um convite para entrar.",
|
||||
industryPauseButton: "Votar pausar",
|
||||
industryResumeButton: "Votar retomar",
|
||||
industryEditButton: "Editar",
|
||||
industryDeleteButton: "Eliminar",
|
||||
industryBackToList: "← Indústria",
|
||||
industryPendingApplicants: "Candidaturas pendentes",
|
||||
industryVotesYes: "sim",
|
||||
industryVotesNo: "não",
|
||||
industryAlreadyVoted: "votado",
|
||||
industryAdmit: "Admitir",
|
||||
industryReject: "Rejeitar",
|
||||
industryDissolveTitle: "Dissolver fábrica",
|
||||
industryDissolveHint: "A dissolução requer um voto coletivo; o administrador não pode dissolver sozinho.",
|
||||
industryDissolveVote: "Votar dissolução",
|
||||
industrySector_software: "Software",
|
||||
industrySector_hardware: "Hardware",
|
||||
industrySector_agriculture: "Agricultura",
|
||||
industrySector_textile: "Têxtil",
|
||||
industrySector_energy: "Energia",
|
||||
industrySector_food: "Alimentação",
|
||||
industrySector_construction: "Construção",
|
||||
industrySector_media: "Mídia",
|
||||
industrySector_services: "Serviços",
|
||||
industrySector_other: "Outro",
|
||||
industryPolicy_open: "Aberta",
|
||||
industryPolicy_vote: "Por voto",
|
||||
industryPolicy_invite: "Apenas convite",
|
||||
projectsTitle: "Projetos",
|
||||
projectsDescription: "Cria, financia e acompanha projetos comunitários na tua rede.",
|
||||
projectCreateProject: "Criar projeto",
|
||||
|
|
@ -3259,6 +3559,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "Descrição",
|
||||
chatMessageReply: "Resposta",
|
||||
chatMessageLabel: "Mensagem",
|
||||
chatCategory: "Categoria",
|
||||
chatStatus: "ESTADO",
|
||||
chatFilterAll: "TODOS",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
ru: {
|
||||
bbAdd: "Добавить",
|
||||
bbQuickActions: "Быстрые действия",
|
||||
bbPickTitle: "Закрепить модуль",
|
||||
bbPickDesc: "Выберите модуль для слота + в нижней панели.",
|
||||
bbPickNone: "Нет",
|
||||
bbManage: "Изменить",
|
||||
bbYourBar: "Ваша панель",
|
||||
bbRemove: "Убрать",
|
||||
bbFull: "Достигнут максимум",
|
||||
bbDone: "Готово",
|
||||
activityChangeFilter: "Сменить фильтр",
|
||||
emptyConnectHint: "Подключитесь к пабу для синхронизации с сетью.",
|
||||
emptyConnectCta: "Подключиться к пабу",
|
||||
menuCommunity: "Сообщество",
|
||||
activityGroupCommunity: "Сообщество и управление",
|
||||
activityGroupOrg: "Организация",
|
||||
activityGroupComm: "Коммуникация",
|
||||
activityGroupEconomy: "Экономика",
|
||||
activityGroupMedia: "Контент и медиа",
|
||||
activityGroupOther: "Другое",
|
||||
languageName: "Русский",
|
||||
shopOrderStatusPaid: "Оплата получена",
|
||||
shopOrderStatusReceived: "Получено",
|
||||
|
|
@ -433,7 +413,8 @@ module.exports = {
|
|||
publish: "Написать",
|
||||
contentWarningPlaceholder: "Добавьте тему к записи (необязательно)",
|
||||
privateWarningPlaceholder: "Добавьте жителей для отправки приватной записи (необязательно)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "Текст ограничен 7000 символами.",
|
||||
publishTooLong: "Ваш пост слишком длинный. Пожалуйста, сократите его.",
|
||||
publishCustomDescription: [
|
||||
"ПОМНИТЕ: Благодаря технологии блокчейн, после публикации запись невозможно отредактировать или удалить.",
|
||||
],
|
||||
|
|
@ -498,7 +479,89 @@ module.exports = {
|
|||
passwordLengthInfo: "Пароль должен содержать минимум 32 символа.",
|
||||
passwordImport: "Введите пароль для расшифровки данных, которые будут сохранены в домашней директории системы (имя файла: secret)",
|
||||
exportPasswordPlaceholder: "Используйте строчные, заглавные буквы, цифры и символы",
|
||||
fileInfo: "Ваш зашифрованный секретный ключ будет сохранён в домашней директории системы (имя файла: oasis.enc)",
|
||||
fileInfo: "Ваш зашифрованный секретный ключ будет скачан на ваше устройство (имя файла: oasis.enc)",
|
||||
developer: "Разработка",
|
||||
devTitle: "Разработка",
|
||||
welcomeBannerText: "Добро пожаловать в OASIS. Выполните эти быстрые шаги, чтобы настроить свой аватар.",
|
||||
welcomeBannerAction: "Начать!",
|
||||
welcomeTitle: "Добро пожаловать",
|
||||
welcomeStepGreetingAction: "Отправить",
|
||||
welcomeJoinPubButton: "Войти в паб",
|
||||
welcomeStepLarpAction: "Вступить в «Академию»",
|
||||
welcomeStepLarpText: "Присоединяйтесь к нашей ролевой игре живого действия.",
|
||||
welcomeStepLarpTitle: "Присоединиться к L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "Отправьте «Привет, мир!»",
|
||||
welcomeStepGreetingText: "Отправьте сообщение, чтобы другие жители могли вас найти.",
|
||||
welcomeJoinPub: "Присоединиться:",
|
||||
welcomeDescription: "Несколько вещей, которые стоит сделать перед началом.",
|
||||
welcomeProgress: "Выполнено",
|
||||
welcomeStepDone: "готово",
|
||||
welcomeStepPending: "не сделано",
|
||||
welcomeSkip: "Не сейчас",
|
||||
welcomeStepLanguageTitle: "Выберите язык",
|
||||
welcomeStepLanguageText: "Oasis говорит на нескольких языках. Изменить можно в любой момент.",
|
||||
welcomeStepProfileTitle: "Заполните профиль",
|
||||
welcomeStepProfileText: "Выберите имя, добавьте описание и поставьте изображение, чтобы другие жители вас узнавали.",
|
||||
welcomeStepProfileAction: "Сохранить профиль",
|
||||
welcomeStepFederationTitle: "Присоединитесь к основной сети",
|
||||
welcomeStepFederationText: "Подключитесь к нашему пабу, чтобы встретить других жителей и начать репликацию.",
|
||||
welcomeStepFederationAction: "К приглашениям",
|
||||
welcomeStepBackupTitle: "Сохраните свой ID",
|
||||
welcomeStepBackupText: "Ваша личность — это файл ключа на этом устройстве.",
|
||||
welcomeStepBackupWarning: "ЕСЛИ ВЫ ЕГО ПОТЕРЯЕТЕ, НИКТО НЕ СМОЖЕТ ЕГО ВОССТАНОВИТЬ.",
|
||||
welcomeStepBackupAction: "Резервная копия!",
|
||||
welcomeCompleteTitle: "Всё готово.",
|
||||
welcomeCompleteText: "Ваш узел готов. Дальше сеть растёт вместе с теми, на кого вы подписаны.",
|
||||
welcomeFindPeople: "Найти жителей",
|
||||
devFilterFiles: "ФАЙЛЫ",
|
||||
devFilterSearch: "ПОИСК",
|
||||
devFilterModules: "МОДУЛИ",
|
||||
devFilterTranslations: "ПЕРЕВОДЫ",
|
||||
devFilterStyles: "СТИЛИ",
|
||||
devFilterTests: "ТЕСТЫ",
|
||||
devVersion: "Версия",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "Наборы тестов",
|
||||
devParentFolder: "Родительская папка",
|
||||
devOpenFolder: "открыть",
|
||||
devDescription: "Изучайте исходный код, работающий на этом узле.",
|
||||
devTreeTitle: "Файлы",
|
||||
devSearchTitle: "Поиск по коду",
|
||||
devMapTitle: "Модули",
|
||||
devRoot: "корень",
|
||||
devRootButton: "КОРЕНЬ",
|
||||
devSearchPlaceholder: "Текст для поиска в коде",
|
||||
devAnyExtension: "Любой файл",
|
||||
devSearchButton: "Искать",
|
||||
devStatsFiles: "Файлы",
|
||||
devStatsLines: "Строки",
|
||||
devStatsModules: "Модули",
|
||||
devStatsLanguages: "Языки",
|
||||
devNotViewable: "нельзя открыть",
|
||||
devEmptyFolder: "Эта папка пуста.",
|
||||
devSize: "Размер",
|
||||
devShowing: "Показано",
|
||||
devLine: "строка",
|
||||
devReportBug: "Сообщить об Ошибке",
|
||||
devCreateTask: "Создать Задачу",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "Найдено при чтении исходного кода Oasis",
|
||||
devTaskPrefix: "Проверить",
|
||||
devPrevPage: "Предыдущие строки",
|
||||
devNextPage: "Следующие строки",
|
||||
devMatches: "совпадений",
|
||||
devFilesScanned: "файлов проверено",
|
||||
devNoResults: "Совпадений пока нет.",
|
||||
devColModule: "Модуль",
|
||||
devColState: "Состояние",
|
||||
devColModel: "Модель",
|
||||
devColView: "Представление",
|
||||
devColRoutes: "Маршруты",
|
||||
devColTests: "Тесты",
|
||||
devOn: "вкл",
|
||||
devOff: "выкл",
|
||||
modulesDevLabel: "Разработка",
|
||||
modulesDevDescription: "Модуль для управления исходным кодом Oasis.",
|
||||
themeIntro:
|
||||
"Выберите тему.",
|
||||
setTheme: "Установить тему",
|
||||
|
|
@ -700,7 +763,7 @@ module.exports = {
|
|||
spreadLabel: "Распространить",
|
||||
spreadHint: "Распространить вашим сторонникам (через ваш feed).",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "Добро пожаловать в Oasis — свободная, одноранговая, федеративная и зашифрованная социальная сеть с распределённой архитектурой только по приглашениям.\n\nНесколько интересных мест, с которых можно начать:\n\n- /profile — Отредактируй аватар, имя, описание и какие модули видны на твоей публичной стороне.\n- /invites — Добавь pub, чтобы федерироваться с остальной сетью.\n- /peers — Посмотри, кто на связи, пересканируй LAN, экспортируй или импортируй списки пиров.\n- /inhabitants — Открывай и заходи к аватарам других людей.\n- /tribes — Создавай или вступай в приватные группы со сквозным шифрованием.\n- /inbox — Читай и отправляй приватные сообщения.\n- /activity — Смотри свежую активность — свою и твоей сети.\n- /publish — Напиши пост или поделись изображением, аудио, видео или документом.\n\nНесколько интересных мест для подключения:\n\n- /fediverse — Управляйте своими другими аккаунтами федиверса, включая отправку и получение контента.\n\nЭто сообщение было отправлено приватно от тебя самому себе, поэтому для его получения не требовалось соединение.",
|
||||
welcomePmBody: "Добро пожаловать в Oasis — свободная, одноранговая, федеративная и зашифрованная социальная сеть с распределённой архитектурой только по приглашениям.\n\nНесколько интересных мест, с которых можно начать:\n\n- /profile — Отредактируй аватар, имя, описание и какие модули видны на твоей публичной стороне.\n- /invites — Добавь pub, чтобы федерироваться с остальной сетью.\n- /peers — Посмотри, кто на связи, пересканируй LAN, экспортируй или импортируй списки пиров.\n- /inhabitants — Открывай и заходи к аватарам других людей.\n- /tribes — Создавай или вступай в приватные группы со сквозным шифрованием.\n- /inbox — Читай и отправляй приватные сообщения.\n- /activity — Смотри свежую активность — свою и твоей сети.\n- /publish — Напиши пост или поделись изображением, аудио, видео или документом.\n- /search — Ищите содержимое сети по типу.\n\nНесколько интересных мест для подключения:\n\n- /fediverse — Управляйте своими другими аккаунтами федиверса, включая отправку и получение контента.\n\nЭто сообщение было отправлено приватно от тебя самому себе, поэтому для его получения не требовалось соединение.",
|
||||
profileVisibilityTitle: "Видимость публичного профиля",
|
||||
profileVisibilityHint: "Выберите поля, видимые другим жителям. По умолчанию показана только Карма.",
|
||||
profileSensorsSectionTitle: "Сенсоры",
|
||||
|
|
@ -1231,6 +1294,9 @@ module.exports = {
|
|||
eventButton: "СОБЫТИЯ",
|
||||
taskButton: "ЗАДАЧИ",
|
||||
votesButton: "ГОЛОСОВАНИЯ",
|
||||
industryButton: "ПРОМЫШЛЕННОСТЬ",
|
||||
projectButton: "ПРОЕКТЫ",
|
||||
shopProductButton: "ТОВАРЫ",
|
||||
reportButton: "ОТЧЁТЫ",
|
||||
feedButton: "ЛЕНТА",
|
||||
marketButton: "РЫНОК",
|
||||
|
|
@ -1259,7 +1325,7 @@ module.exports = {
|
|||
trendingItemStatus: "Статус элемента",
|
||||
trendingTotalVotes: "Всего голосов",
|
||||
trendingTotalOpinions: "Всего мнений",
|
||||
trendingNoContentMessage: "Трендового контента пока нет.",
|
||||
trendingNoContentMessage: "Трендов пока нет.",
|
||||
trendingAuthor: "Автор",
|
||||
trendingCreatedAtLabel: "Создано",
|
||||
trendingTotalCount: "Всего",
|
||||
|
|
@ -1448,7 +1514,7 @@ module.exports = {
|
|||
transfersCreatedAt: "Создано",
|
||||
transfersConfirmations: "ПОДТВЕРЖДЕНИЯ",
|
||||
transfersContainingBlock: "Содержащий блок",
|
||||
transfersExportContract: "Создать контракт",
|
||||
transfersExportContract: "Смарт-контракт",
|
||||
transfersConfirmButton: "Подтвердить перевод",
|
||||
transfersNoItems: "Переводы не найдены.",
|
||||
transfersMineSectionTitle: "Ваши переводы",
|
||||
|
|
@ -1574,7 +1640,7 @@ module.exports = {
|
|||
cvDeleteButton: "Удалить",
|
||||
cvNoCV: "Резюме не найдено.",
|
||||
blogSubject: "Тема",
|
||||
blogMessage: "Текст ограничен 8096 символами.",
|
||||
blogMessage: "Сообщение",
|
||||
blogImage: "Загрузить медиа (макс: 50MB)",
|
||||
blogPublish: "Предварительный просмотр",
|
||||
noPopularMessages: "Популярных сообщений пока нет",
|
||||
|
|
@ -2214,6 +2280,7 @@ module.exports = {
|
|||
agendaFilterReports: "ОТЧЁТЫ",
|
||||
agendaFilterTransfers: "ПЕРЕВОДЫ",
|
||||
agendaFilterJobs: "ВАКАНСИИ",
|
||||
agendaFilterIndustry: "ПРОМЫШЛЕННОСТЬ",
|
||||
agendaFilterProjects: "ПРОЕКТЫ",
|
||||
agendaFilterCalendars: "КАЛЕНДАРИ",
|
||||
agendaNoItems: "Назначений не найдено.",
|
||||
|
|
@ -2331,16 +2398,31 @@ module.exports = {
|
|||
privateMessage: "ЛС",
|
||||
pmSendTitle: "Личные сообщения",
|
||||
pmSend: "Отправить!",
|
||||
pmDescription: "Используйте эту форму для отправки зашифрованного сообщения другим жителям.",
|
||||
pmCancel: "Отмена",
|
||||
pmReset: "Сбросить",
|
||||
pmSharedKeyHint: "Передайте этот ключ получателю по другому каналу. Он нужен для расшифровки.",
|
||||
pmDescription: "Используйте эту форму, чтобы отправить зашифрованное сообщение/файл другим жителям.",
|
||||
pmComposeTitle: "Отправить сообщение",
|
||||
pmRecipients: "Получатели",
|
||||
pmRecipientsHint: "Введите Oasis ID через запятую",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "До 7 получателей на сообщение.",
|
||||
pmTextPlaceholder: "Текст ограничен 7000 символами.",
|
||||
pmSubject: "Тема",
|
||||
pmSubjectHint: "Введите тему сообщения",
|
||||
pmText: "Сообщение",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "Расшифровать",
|
||||
fileShareTitle: "Поделиться файлом",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "Файл",
|
||||
fileShareDownload: "Скачать",
|
||||
fileShareMutualError: "Вы можете делиться файлами только с жителями при взаимной поддержке.",
|
||||
fileShareNoFile: "Файл не выбран.",
|
||||
fileShareTooLarge: "Файл превышает допустимый размер.",
|
||||
fileShareFailed: "Не удалось подготовить файл.",
|
||||
fileShareSendError: "Не удалось отправить файл.",
|
||||
fileShareUnavailable: "Этот файл сейчас недоступен. Попробуйте позже.",
|
||||
pmCrypterBadKey: "Общий ключ неверный!",
|
||||
pmCrypterTooLong: "Сообщение слишком длинное для шифрования с помощью Crypter. Сократите его и попробуйте снова.",
|
||||
pmCrypterCipherLabel: "Повторно зашифрованное сообщение",
|
||||
|
|
@ -2352,15 +2434,27 @@ module.exports = {
|
|||
pmNoSubject: "(без темы)",
|
||||
pmSubjectLabel: "Тема:",
|
||||
pmBodyLabel: "Тело",
|
||||
pmBotJobs: "42-JobsBOT",
|
||||
pmBotProjects: "42-ProjectsBOT",
|
||||
pmBotMarket: "42-MarketBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "Правящий дом L.A.R.P сменился.",
|
||||
politicalBotParliamentTitle: "В Парламенте начался новый цикл правления.",
|
||||
politicalBotTribeTitle: "В одном из ваших племён начался новый цикл правления.",
|
||||
politicalBotLarpIntro: "Теперь в этом цикле правит {house}: {cycle}",
|
||||
politicalBotParliamentIntro: "Текущее правление — {gov}",
|
||||
politicalBotParliamentIntroLeader: "Текущее правление — {gov}, осуществляет {leader}",
|
||||
politicalBotTribeIntro: "Текущее правление в племени {tribe} — {gov}",
|
||||
politicalBotTribeIntroLeader: "Текущее правление в племени {tribe} — {gov}, осуществляет {leader}",
|
||||
politicalBotLeaderLabel: "Лидер",
|
||||
inboxJobSubscribedTitle: "Новая подписка на вашу вакансию",
|
||||
pmInhabitantWithId: "Житель с OASIS ID:",
|
||||
pmHasSubscribedToYourJobOffer: "подписался на вашу вакансию",
|
||||
inboxProjectCreatedTitle: "Создан новый проект",
|
||||
pmHasCreatedAProject: "создал проект",
|
||||
inboxMarketItemSoldTitle: "Товар продан",
|
||||
inboxShopSoldTitle: "Товар продан",
|
||||
pmYourItem: "Ваш товар",
|
||||
pmHasBeenSoldTo: "был продан",
|
||||
pmFor: "за",
|
||||
|
|
@ -2395,7 +2489,7 @@ module.exports = {
|
|||
visitContent: "Посетить контент",
|
||||
banking: "Банкинг",
|
||||
bankingTitle: "Банкинг",
|
||||
bankingDescription: "Исследуйте текущую стоимость ECOin и соответствующее распределение UBI, распределяемое за эпоху на основе участия и доверия.",
|
||||
bankingDescription: "Экономика ECOin: баланс, базовый доход, налоги и ценность промышленности.",
|
||||
bankOverview: "Обзор",
|
||||
bankEpochs: "Эпохи",
|
||||
bankRules: "Правила",
|
||||
|
|
@ -2428,6 +2522,10 @@ module.exports = {
|
|||
bankEpochId: "ID эпохи",
|
||||
bankRuleHash: "Хэш снимка правил",
|
||||
bankViewEpoch: "Просмотр эпохи",
|
||||
bankYourIndustryBalance: "Ваша доля в промышленности",
|
||||
bankYourUbiMonth: "Ваш БОД (в этом месяце)",
|
||||
bankYourFundsMonth: "Ваши средства (в этом месяце)",
|
||||
bankIndustryBalance: "Промышленное производство (оценка)",
|
||||
bankUserBalance: "Ваш баланс",
|
||||
ecoWalletNotConfigured: "Кошелёк ECOin не настроен",
|
||||
editWallet: "Редактировать кошелёк",
|
||||
|
|
@ -2466,7 +2564,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "НЕТ СРЕДСТВ!",
|
||||
bankUbiAvailableOk: "ДОСТУПНО!",
|
||||
bankUbiAvailability: "Доступность UBI",
|
||||
bankUbiAvailability: "БОД (сеть)",
|
||||
bankAlreadyClaimedThisMonth: "Уже получено в этом месяце",
|
||||
bankUbiThisMonth: "БОД (этот месяц)",
|
||||
bankUbiLastClaimed: "БОД (последнее получение)",
|
||||
|
|
@ -2892,6 +2990,208 @@ module.exports = {
|
|||
jobsTagsLabel: "Теги",
|
||||
jobsTagsPlaceholder: "тег1, тег2, тег3",
|
||||
noJobsMatch: "Вакансий не найдено.",
|
||||
industrySearchPlaceholder: "Поиск фабрик…",
|
||||
industryAllSectors: "Все секторы",
|
||||
industryVisitButton: "Открыть промышленность",
|
||||
industryAdvanceTo: "Перевести в",
|
||||
industryAmount: "Сумма",
|
||||
industryApproveBuild: "Одобрить",
|
||||
industryBackToFacility: "← Фабрика",
|
||||
industryBlueprint: "Чертёж",
|
||||
industryBlueprintLabel: "Промышленный чертёж",
|
||||
industryBlueprints: "Чертежи",
|
||||
industryBuild: "Сборка",
|
||||
industryBuildNotes: "Заметки",
|
||||
industryBuildStart: "Дата начала",
|
||||
industryVoteUpdateButton: "Голос за обновление",
|
||||
industryVoteDeleteButton: "Голос за удаление",
|
||||
industryRevokeVote: "Отозвать",
|
||||
industryTimeLeft: "Осталось времени",
|
||||
industryBuildEnd: "Дата окончания",
|
||||
industryBuilds: "Сборки",
|
||||
industryBuildTitle: "Название",
|
||||
industryContribute: "Внести вклад",
|
||||
industryContributeEco: "Внести ECO",
|
||||
industryContributeLabor: "Внести труд",
|
||||
industryContributeButton: "Внести вклад",
|
||||
industryContributeMaterial: "Внести материал",
|
||||
industryContributions: "Вклады",
|
||||
industryContributors: "участники",
|
||||
industryCreateBlueprintButton: "Создать чертёж",
|
||||
industryDistribute: "Распределить",
|
||||
industryDistributeButton: "Распределить по долям",
|
||||
industryDistribution: "Распределение",
|
||||
industryEcoAmount: "Сумма (ECO)",
|
||||
industryEcoContribHint: "Вклады в ECO передаются управляющему как хранителю казны сборки.",
|
||||
industryEditBlueprint: "Редактировать чертёж",
|
||||
industryFacility: "Фабрика",
|
||||
industryKindLabel: "Тип",
|
||||
industryKind_labor: "Труд",
|
||||
industryKind_material: "Материал",
|
||||
industryKind_eco: "Средства",
|
||||
industryLaborHours: "Труд (часы)",
|
||||
industryHours: "Часы",
|
||||
industryLicense: "Лицензия",
|
||||
industryMaterialItem: "Материал",
|
||||
industryMaterials: "Материалы",
|
||||
industryMaterialsHint: "Один материал в строке в формате название:количество:цена.",
|
||||
industryEstMaterials: "Итого материалы",
|
||||
industryEstLabor: "Итого труд",
|
||||
industryEstTaxes: "Налоги",
|
||||
industryEstTotal: "Оценочная цена",
|
||||
industryBuildingPrice: "Цена изготовления",
|
||||
industryFinalPrice: "Итоговая цена",
|
||||
industryBlueprintDescPlaceholder: "Характеристики, размеры, вес, документация…",
|
||||
industryMaterialValue: "Стоимость (ECO)",
|
||||
industryMember: "Участник",
|
||||
industryNewBlueprint: "Новый чертёж",
|
||||
industryNewBuild: "Предложить сборку",
|
||||
industryEditBuild: "Редактировать производство",
|
||||
industryNoBlueprint: "— нет —",
|
||||
industryNeedBlueprint: "Сначала создайте чертёж: каждое производство изготавливает его.",
|
||||
industryNoBlueprints: "Пока нет чертежей.",
|
||||
industryNoBuilds: "Пока нет сборок.",
|
||||
industryNote: "Заметка",
|
||||
industryOutput: "Выход",
|
||||
industryOutputItem: "Название продукта",
|
||||
industryOutputKind: "Тип продукта",
|
||||
industryOutputQty: "Единиц за производство",
|
||||
industryOutputUnit: "Единица измерения",
|
||||
industryOutputValue: "Стоимость выхода (ECO, напр. от продажи)",
|
||||
industryPayout: "Выплата",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "Создать вакансию",
|
||||
industryPot: "Банк",
|
||||
industryProposeBuildButton: "Предложить сборку",
|
||||
industryProposer: "Инициатор",
|
||||
industryAuthor: "Автор",
|
||||
industrySellOnMarket: "Отправить на рынок",
|
||||
industrySendToProjects: "Создать проект",
|
||||
industryShare: "Доля",
|
||||
industryShares: "Доли",
|
||||
industrySkills: "Навыки",
|
||||
industryTreasury: "Казна",
|
||||
industryKind_physical: "Физический",
|
||||
industryKind_digital: "Цифровой",
|
||||
industryBuildStatus_PROPOSED: "ПРЕДЛОЖЕНО",
|
||||
industryBuildStatus_REJECTED: "ОТКЛОНЁН",
|
||||
industryBuildStatus_APPROVED: "ОДОБРЕНО",
|
||||
industryBuildStatus_STOCKING: "СНАБЖЕНИЕ",
|
||||
industryBuildStatus_IN_PRODUCTION: "В ПРОИЗВОДСТВЕ",
|
||||
industryBuildStatus_COMPLETED: "ЗАВЕРШЕНО",
|
||||
industryBuildStatus_FAILED: "ПРОВАЛЕНО",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "Вас приняли на фабрику.",
|
||||
industryBotApplicationTitle: "Новая заявка на вступление в вашу фабрику.",
|
||||
industryBotInvitedTitle: "Вас пригласили на фабрику.",
|
||||
industryBotDissolvedTitle: "Фабрика, к которой вы принадлежите, была распущена.",
|
||||
industryBotBuildApprovedTitle: "Сборка одобрена.",
|
||||
industryBotDistributedTitle: "Выход сборки распределён.",
|
||||
industryFilterRules: "ПРАВИЛА",
|
||||
industryRulesTitle: "Правила",
|
||||
industryRulesIntro: "Industry позволяет жителям коллективно владеть средствами производства: Фабрика — это принадлежащая сети мастерская, которой никто не владеет частно.",
|
||||
industryRulesSteward: "Основатель — управляющий, хранитель, а не владелец: он не может в одиночку продать, приватизировать или распустить Фабрику.",
|
||||
industryRulesMembership: "Политика членства задаёт способ вступления: Открытая (сразу), Голосованием (принимают голосом участников) или Только по приглашению (сначала должен пригласить участник).",
|
||||
industryRulesQuorum: "Кворум — минимальное число участников, которые должны проголосовать, чтобы решение засчиталось, чтобы маленькую Фабрику не решал один человек.",
|
||||
industryRulesMajority: "Большинство — доля голосов для принятия (0,5 = половина, 1 = единогласие); решение проходит, когда голоса ЗА достигают хотя бы max(кворум, участники × большинство).",
|
||||
industryRulesDecisions: "Участники голосуют за приём новых, одобрение сборок и роспуск Фабрики; управляющий не может обойти эти коллективные решения.",
|
||||
industryRulesBlueprints: "Чертежи — свободные (COPYLEFT) рецепты: входы (материалы, часы труда, навыки) и выход (физический или цифровой продукт), и любой может их форкнуть.",
|
||||
industryRulesBuilds: "Сборка — производственный заказ: ПРЕДЛОЖЕНО → ОДОБРЕНО (голосованием) → СНАБЖЕНИЕ → В ПРОИЗВОДСТВЕ → ЗАВЕРШЕНО, и принимает вклады только после одобрения.",
|
||||
industryRulesContributions: "Участники вносят труд (часы), материалы (заявленная стоимость в ECO) или ECO в сборку; каждый вклад даёт карму.",
|
||||
industryRulesLaborRate: "Ставка труда — стоимость в ECO одного рабочего часа на этой Фабрике; она переводит часы в карму, чтобы справедливо сравнивать труд и капитал: карма = часы × ставка + стоимость материалов + ECO.",
|
||||
industryRulesShares: "Ваша доля в сборке — это ваша карма ÷ общая карма, и она определяет, сколько стоимости выхода вы получите.",
|
||||
industryRulesDistribution: "После завершения производства стюард распределяет банк (средства производства плюс стоимость продажи) между участниками пропорционально их долям.",
|
||||
industryRulesTreasury: "Вклады в ECO хранит управляющий как хранитель казны сборки до распределения; все движения записываются в сети, а споры могут идти в Courts.",
|
||||
industryJobs: "Вакансии",
|
||||
industryNoJobs: "Пока нет вакансий.",
|
||||
industryCreatePosition: "Создать вакансию",
|
||||
industryViewCV: "Резюме",
|
||||
industryReportButton: "Пожаловаться",
|
||||
industryCreateTask: "Создать задачу",
|
||||
industryOpenDispute: "Открыть спор",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "напр. шт., кг, лицензия",
|
||||
industryOutputItemPlaceholder: "напр. робот",
|
||||
industryOutputQtyPlaceholder: "напр. 5",
|
||||
industrySkillsPlaceholder: "напр. пайка, сети, солнечная-установка",
|
||||
industryCreateInvite: "Создать приглашение",
|
||||
industryPauseVotes: "Голоса за статус",
|
||||
industryTitle: "Промышленность",
|
||||
industryDescription: "Модуль для коллективного управления средствами производства.",
|
||||
industryLabel: "Промышленность",
|
||||
typeIndustryBuild: "СБОРКА",
|
||||
typeIndustryBlueprint: "ЧЕРТЁЖ",
|
||||
typeIndustryAllocation: "РАСПРЕДЕЛЕНИЕ",
|
||||
typeIndustry: "ПРОМЫШЛЕННОСТЬ",
|
||||
modulesIndustryLabel: "Промышленность",
|
||||
modulesIndustryDescription: "Модуль для коллективного управления средствами производства.",
|
||||
industryFilterAll: "ВСЕ",
|
||||
industryFilterMember: "УЧАСТНИК",
|
||||
industryFilterBlueprints: "ЧЕРТЕЖИ",
|
||||
industryFilterBuilds: "ПРОИЗВОДСТВА",
|
||||
industryFilterMine: "МОИ",
|
||||
industryFilterActive: "РАБОТАЕТ",
|
||||
industryFilterPaused: "НА ПАУЗЕ",
|
||||
industryFilterDissolved: "РАСПУЩЕННЫЕ",
|
||||
industryAllTitle: "Промышленность",
|
||||
industryMemberTitle: "Фабрики, где я состою",
|
||||
industryMineTitle: "Мои фабрики",
|
||||
industryActiveTitle: "Работает",
|
||||
industryPausedTitle: "Фабрики на паузе",
|
||||
industryDissolvedTitle: "Распущенные фабрики",
|
||||
industryNoFacilitiesFound: "Фабрики не найдены.",
|
||||
industryCreateFacility: "Создать фабрику",
|
||||
industryMembers: "Участники",
|
||||
industryMemberBadge: "УЧАСТНИК",
|
||||
industryName: "Название",
|
||||
industryNamePlaceholder: "Название фабрики",
|
||||
industryDescriptionLabel: "Описание",
|
||||
industryDescriptionPlaceholder: "Что производит эта фабрика?",
|
||||
industrySector: "Сектор",
|
||||
industryMembershipPolicy: "Политика членства",
|
||||
industryQuorum: "Кворум",
|
||||
industryMajority: "Большинство",
|
||||
industryLaborRate: "Ставка труда",
|
||||
industryCreateButton: "Создать фабрику",
|
||||
industryUpdateButton: "Обновить",
|
||||
industrySteward: "Управляющий",
|
||||
industryStatusActive: "РАБОТАЕТ",
|
||||
industryStatusPaused: "НА ПАУЗЕ",
|
||||
industryStatusDissolved: "РАСПУЩЕНА",
|
||||
industryStatusLabel: "Статус",
|
||||
industryJoinButton: "Присоединиться",
|
||||
industryApplyButton: "Подать заявку",
|
||||
industryLeaveButton: "Покинуть",
|
||||
industryInviteButton: "Пригласить",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "Для вступления нужно приглашение.",
|
||||
industryPauseButton: "Голосовать за паузу",
|
||||
industryResumeButton: "Голосовать за возобновление",
|
||||
industryEditButton: "Редактировать",
|
||||
industryDeleteButton: "Удалить",
|
||||
industryBackToList: "← Промышленность",
|
||||
industryPendingApplicants: "Ожидающие заявки",
|
||||
industryVotesYes: "да",
|
||||
industryVotesNo: "нет",
|
||||
industryAlreadyVoted: "проголосовал",
|
||||
industryAdmit: "Принять",
|
||||
industryReject: "Отклонить",
|
||||
industryDissolveTitle: "Распустить фабрику",
|
||||
industryDissolveHint: "Роспуск требует коллективного голосования; управляющий не может распустить её в одиночку.",
|
||||
industryDissolveVote: "Голосовать за роспуск",
|
||||
industrySector_software: "ПО",
|
||||
industrySector_hardware: "Оборудование",
|
||||
industrySector_agriculture: "Сельское хозяйство",
|
||||
industrySector_textile: "Текстиль",
|
||||
industrySector_energy: "Энергетика",
|
||||
industrySector_food: "Продукты",
|
||||
industrySector_construction: "Строительство",
|
||||
industrySector_media: "Медиа",
|
||||
industrySector_services: "Услуги",
|
||||
industrySector_other: "Другое",
|
||||
industryPolicy_open: "Открытая",
|
||||
industryPolicy_vote: "Голосованием",
|
||||
industryPolicy_invite: "Только по приглашению",
|
||||
projectsTitle: "Проекты",
|
||||
projectsDescription: "Создавайте, финансируйте и следите за проектами сообщества в вашей сети.",
|
||||
projectCreateProject: "Создать проект",
|
||||
|
|
@ -3260,6 +3560,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "Описание",
|
||||
chatMessageReply: "Ответ",
|
||||
chatMessageLabel: "Сообщение",
|
||||
chatCategory: "Категория",
|
||||
chatStatus: "СТАТУС",
|
||||
chatFilterAll: "ВСЕ",
|
||||
|
|
|
|||
|
|
@ -1,26 +1,6 @@
|
|||
const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
|
||||
module.exports = {
|
||||
zh: {
|
||||
bbAdd: "添加",
|
||||
bbQuickActions: "快捷操作",
|
||||
bbPickTitle: "固定一个模块",
|
||||
bbPickDesc: "为底部栏的 + 位置选择一个模块。",
|
||||
bbPickNone: "无",
|
||||
bbManage: "编辑",
|
||||
bbYourBar: "你的工具栏",
|
||||
bbRemove: "移除",
|
||||
bbFull: "已达上限",
|
||||
bbDone: "完成",
|
||||
activityChangeFilter: "更改筛选",
|
||||
emptyConnectHint: "连接到一个 pub 以与网络同步。",
|
||||
emptyConnectCta: "连接到 pub",
|
||||
menuCommunity: "社区",
|
||||
activityGroupCommunity: "社区与治理",
|
||||
activityGroupOrg: "组织",
|
||||
activityGroupComm: "沟通",
|
||||
activityGroupEconomy: "经济",
|
||||
activityGroupMedia: "内容与媒体",
|
||||
activityGroupOther: "其他",
|
||||
languageName: "中文",
|
||||
shopOrderStatusPaid: "已收款",
|
||||
shopOrderStatusReceived: "已收到",
|
||||
|
|
@ -428,7 +408,8 @@ module.exports = {
|
|||
publish: "写作",
|
||||
contentWarningPlaceholder: "为帖子添加主题(可选)",
|
||||
privateWarningPlaceholder: "添加居民以发送私密帖子(可选)",
|
||||
publishWarningPlaceholder: "...",
|
||||
publishWarningPlaceholder: "正文上限 7000 个字符。",
|
||||
publishTooLong: "你的帖子太长了,请缩短。",
|
||||
publishCustomDescription: [
|
||||
"提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
|
||||
],
|
||||
|
|
@ -493,7 +474,89 @@ module.exports = {
|
|||
passwordLengthInfo: "密码至少需要32个字符。",
|
||||
passwordImport: "输入密码以解密将保存在系统主目录的数据(文件名:secret)",
|
||||
exportPasswordPlaceholder: "使用小写字母、大写字母、数字和符号",
|
||||
fileInfo: "你的加密私钥将保存在系统主目录(文件名:oasis.enc)",
|
||||
fileInfo: "你的加密私钥将下载到你的设备(文件名:oasis.enc)",
|
||||
developer: "开发",
|
||||
devTitle: "开发",
|
||||
welcomeBannerText: "欢迎来到 OASIS。按这几个步骤设置你的化身。",
|
||||
welcomeBannerAction: "开始设置!",
|
||||
welcomeTitle: "欢迎",
|
||||
welcomeStepGreetingAction: "发送",
|
||||
welcomeJoinPubButton: "加入 pub",
|
||||
welcomeStepLarpAction: "加入「学院」",
|
||||
welcomeStepLarpText: "加入我们的实境角色扮演游戏。",
|
||||
welcomeStepLarpTitle: "加入 L.A.R.P.",
|
||||
welcomeStepGreetingTitle: "发送一句「Hello world!」",
|
||||
welcomeStepGreetingText: "发一条消息,让其他居民能发现你。",
|
||||
welcomeJoinPub: "加入",
|
||||
welcomeDescription: "开始之前值得做的几件事。",
|
||||
welcomeProgress: "已完成",
|
||||
welcomeStepDone: "完成",
|
||||
welcomeStepPending: "待办",
|
||||
welcomeSkip: "暂不设置",
|
||||
welcomeStepLanguageTitle: "选择你的语言",
|
||||
welcomeStepLanguageText: "Oasis 支持多种语言,随时都可以更改。",
|
||||
welcomeStepProfileTitle: "编辑你的资料",
|
||||
welcomeStepProfileText: "取个名字、写段介绍并设置头像,让其他居民认得你。",
|
||||
welcomeStepProfileAction: "保存资料",
|
||||
welcomeStepFederationTitle: "加入主网络",
|
||||
welcomeStepFederationText: "连接到我们的 pub,认识其他居民并开始同步。",
|
||||
welcomeStepFederationAction: "前往邀请",
|
||||
welcomeStepBackupTitle: "备份你的 ID",
|
||||
welcomeStepBackupText: "你的身份就是本机上的一个密钥文件。",
|
||||
welcomeStepBackupWarning: "一旦丢失,没有任何人能帮你找回。",
|
||||
welcomeStepBackupAction: "立即备份!",
|
||||
welcomeCompleteTitle: "全部就绪。",
|
||||
welcomeCompleteText: "你的节点已经就绪。从这里开始,网络随着你关注的人一起成长。",
|
||||
welcomeFindPeople: "寻找居民",
|
||||
devFilterFiles: "文件",
|
||||
devFilterSearch: "搜索",
|
||||
devFilterModules: "模块",
|
||||
devFilterTranslations: "翻译",
|
||||
devFilterStyles: "样式",
|
||||
devFilterTests: "测试",
|
||||
devVersion: "版本",
|
||||
devNodeVersion: "Node",
|
||||
devStatsTests: "测试套件",
|
||||
devParentFolder: "上级文件夹",
|
||||
devOpenFolder: "打开",
|
||||
devDescription: "浏览本节点上运行的源代码。",
|
||||
devTreeTitle: "文件",
|
||||
devSearchTitle: "搜索代码",
|
||||
devMapTitle: "模块",
|
||||
devRoot: "根目录",
|
||||
devRootButton: "根目录",
|
||||
devSearchPlaceholder: "要在代码中查找的文本",
|
||||
devAnyExtension: "任意文件",
|
||||
devSearchButton: "搜索",
|
||||
devStatsFiles: "文件",
|
||||
devStatsLines: "行数",
|
||||
devStatsModules: "模块",
|
||||
devStatsLanguages: "语言",
|
||||
devNotViewable: "无法查看",
|
||||
devEmptyFolder: "此文件夹为空。",
|
||||
devSize: "大小",
|
||||
devShowing: "显示",
|
||||
devLine: "行",
|
||||
devReportBug: "报告缺陷",
|
||||
devCreateTask: "创建任务",
|
||||
devRaw: "RAW",
|
||||
devReportContext: "在阅读 Oasis 源代码时发现",
|
||||
devTaskPrefix: "复查",
|
||||
devPrevPage: "上一段",
|
||||
devNextPage: "下一段",
|
||||
devMatches: "个匹配",
|
||||
devFilesScanned: "个文件已扫描",
|
||||
devNoResults: "暂无匹配。",
|
||||
devColModule: "模块",
|
||||
devColState: "状态",
|
||||
devColModel: "模型",
|
||||
devColView: "视图",
|
||||
devColRoutes: "路由",
|
||||
devColTests: "测试",
|
||||
devOn: "开",
|
||||
devOff: "关",
|
||||
modulesDevLabel: "开发",
|
||||
modulesDevDescription: "用于管理 Oasis 源代码的模块。",
|
||||
themeIntro:
|
||||
"选择一个主题。",
|
||||
setTheme: "设置主题",
|
||||
|
|
@ -696,7 +759,7 @@ module.exports = {
|
|||
spreadLabel: "转发",
|
||||
spreadHint: "转发给你的支持者(通过你的 feed 复制)。",
|
||||
welcomePmSubject: "Hello World!",
|
||||
welcomePmBody: "欢迎来到 Oasis — 一个自由、点对点、联邦化且加密的社交网络,采用仅限邀请的分布式架构。\n\n一些值得开始探索的地方:\n\n- /profile —— 编辑你的头像、名字、简介以及在公开侧显示哪些模块。\n- /invites —— 添加一个 pub,与更广泛的网络联邦。\n- /peers —— 查看谁已连接,重新扫描局域网,导出或导入对等节点列表。\n- /inhabitants —— 发现并访问其他人的头像。\n- /tribes —— 创建或加入端到端加密的私人小组。\n- /inbox —— 阅读和发送私信。\n- /activity —— 查看最近的活动,你的和你网络中的。\n- /publish —— 写一篇帖子,或分享图片、音频、视频、文档。\n\n一些值得连接的地方:\n\n- /fediverse — 管理你的其他联邦宇宙账户,包括发送和接收内容。\n\n这条消息是私下从你发给你自己的,因此无需任何连接即可接收。",
|
||||
welcomePmBody: "欢迎来到 Oasis — 一个自由、点对点、联邦化且加密的社交网络,采用仅限邀请的分布式架构。\n\n一些值得开始探索的地方:\n\n- /profile —— 编辑你的头像、名字、简介以及在公开侧显示哪些模块。\n- /invites —— 添加一个 pub,与更广泛的网络联邦。\n- /peers —— 查看谁已连接,重新扫描局域网,导出或导入对等节点列表。\n- /inhabitants —— 发现并访问其他人的头像。\n- /tribes —— 创建或加入端到端加密的私人小组。\n- /inbox —— 阅读和发送私信。\n- /activity —— 查看最近的活动,你的和你网络中的。\n- /publish —— 写一篇帖子,或分享图片、音频、视频、文档。\n- /search — 按类型搜索网络内容。\n\n一些值得连接的地方:\n\n- /fediverse — 管理你的其他联邦宇宙账户,包括发送和接收内容。\n\n这条消息是私下从你发给你自己的,因此无需任何连接即可接收。",
|
||||
profileVisibilityTitle: "公开资料可见性",
|
||||
profileVisibilityHint: "选择其他居民在你的资料中可见的字段。默认仅显示 Karma。",
|
||||
profileSensorsSectionTitle: "传感器",
|
||||
|
|
@ -1227,6 +1290,9 @@ module.exports = {
|
|||
eventButton: "活动",
|
||||
taskButton: "任务",
|
||||
votesButton: "投票",
|
||||
industryButton: "工业",
|
||||
projectButton: "项目",
|
||||
shopProductButton: "产品",
|
||||
reportButton: "报告",
|
||||
feedButton: "动态",
|
||||
marketButton: "市场",
|
||||
|
|
@ -1255,7 +1321,7 @@ module.exports = {
|
|||
trendingItemStatus: "项目状态",
|
||||
trendingTotalVotes: "总票数",
|
||||
trendingTotalOpinions: "总观点数",
|
||||
trendingNoContentMessage: "暂无热门内容。",
|
||||
trendingNoContentMessage: "暂时还没有热门内容。",
|
||||
trendingAuthor: "作者",
|
||||
trendingCreatedAtLabel: "创建于",
|
||||
trendingTotalCount: "总计",
|
||||
|
|
@ -1444,7 +1510,7 @@ module.exports = {
|
|||
transfersCreatedAt: "创建于",
|
||||
transfersConfirmations: "确认",
|
||||
transfersContainingBlock: "所在区块",
|
||||
transfersExportContract: "创建合约",
|
||||
transfersExportContract: "智能合约",
|
||||
transfersConfirmButton: "确认转账",
|
||||
transfersNoItems: "未找到转账。",
|
||||
transfersMineSectionTitle: "你的转账",
|
||||
|
|
@ -1570,7 +1636,7 @@ module.exports = {
|
|||
cvDeleteButton: "删除",
|
||||
cvNoCV: "未找到简历。",
|
||||
blogSubject: "主题",
|
||||
blogMessage: "正文限制为 8096 个字符。",
|
||||
blogMessage: "消息",
|
||||
blogImage: "上传媒体(最大:50MB)",
|
||||
blogPublish: "预览",
|
||||
noPopularMessages: "还没有发布热门消息",
|
||||
|
|
@ -2205,6 +2271,7 @@ module.exports = {
|
|||
agendaFilterReports: "报告",
|
||||
agendaFilterTransfers: "转账",
|
||||
agendaFilterJobs: "工作",
|
||||
agendaFilterIndustry: "工业",
|
||||
agendaFilterProjects: "项目",
|
||||
agendaFilterCalendars: "日历",
|
||||
agendaNoItems: "未找到分配项目。",
|
||||
|
|
@ -2326,16 +2393,31 @@ module.exports = {
|
|||
privateMessage: "私信",
|
||||
pmSendTitle: "私信",
|
||||
pmSend: "发送!",
|
||||
pmDescription: "使用此表单向其他居民发送加密消息。",
|
||||
pmCancel: "取消",
|
||||
pmReset: "重置",
|
||||
pmSharedKeyHint: "请通过其他渠道将此密钥分享给收件人。解密时需要用到。",
|
||||
pmDescription: "使用此表单向其他居民发送加密的消息/文件。",
|
||||
pmComposeTitle: "发送消息",
|
||||
pmRecipients: "收件人",
|
||||
pmRecipientsHint: "输入 Oasis ID,用逗号分隔",
|
||||
pmLevelOfExposition: "Level of exposition",
|
||||
pmLimitsHint: "Up to 7 recipients per message. Body capped at 8096 characters.",
|
||||
pmLimitsHint: "每条消息最多 7 个收件人。",
|
||||
pmTextPlaceholder: "正文上限 7000 个字符。",
|
||||
pmSubject: "主题",
|
||||
pmSubjectHint: "输入消息主题",
|
||||
pmText: "消息",
|
||||
pmCrypterChip: "2xE2E",
|
||||
pmCrypterDecryptButton: "解密",
|
||||
fileShareTitle: "分享文件",
|
||||
fileShareRecipientPlaceholder: "@...=.ed25519",
|
||||
fileShareFileLabel: "文件",
|
||||
fileShareDownload: "下载",
|
||||
fileShareMutualError: "你只能与相互支持的居民分享文件。",
|
||||
fileShareNoFile: "未选择文件。",
|
||||
fileShareTooLarge: "文件超过允许的大小。",
|
||||
fileShareFailed: "无法准备文件。",
|
||||
fileShareSendError: "无法发送文件。",
|
||||
fileShareUnavailable: "该文件当前不可用。请稍后再试。",
|
||||
pmCrypterBadKey: "共享密钥不正确!",
|
||||
pmCrypterTooLong: "消息过长,无法用 Crypter 加密。请缩短后重试。",
|
||||
pmCrypterCipherLabel: "重新加密的消息",
|
||||
|
|
@ -2356,15 +2438,27 @@ module.exports = {
|
|||
pmNoSubject: "(无主题)",
|
||||
pmSubjectLabel: "主题:",
|
||||
pmBodyLabel: "正文",
|
||||
pmBotJobs: "42-JobsBOT",
|
||||
pmBotProjects: "42-ProjectsBOT",
|
||||
pmBotMarket: "42-MarketBOT",
|
||||
pmBotJobs: "JobsBot",
|
||||
pmBotProjects: "ProjectsBot",
|
||||
pmBotMarket: "MarketBot",
|
||||
pmBotShops: "ShopsBot",
|
||||
pmBotPolitical: "PoliticalBot",
|
||||
politicalBotLarpTitle: "L.A.R.P 的执政家族已更替。",
|
||||
politicalBotParliamentTitle: "议会已开始新的执政周期。",
|
||||
politicalBotTribeTitle: "你所在的某个部落已开始新的执政周期。",
|
||||
politicalBotLarpIntro: "现在由 {house} 在本周期执政:{cycle}",
|
||||
politicalBotParliamentIntro: "当前政府为 {gov}",
|
||||
politicalBotParliamentIntroLeader: "当前政府为 {gov},由 {leader} 行使",
|
||||
politicalBotTribeIntro: "部落 {tribe} 当前政府为 {gov}",
|
||||
politicalBotTribeIntroLeader: "部落 {tribe} 当前政府为 {gov},由 {leader} 行使",
|
||||
politicalBotLeaderLabel: "领袖",
|
||||
inboxJobSubscribedTitle: "你的工作机会有新订阅",
|
||||
pmInhabitantWithId: "Oasis ID 为以下的居民:",
|
||||
pmHasSubscribedToYourJobOffer: "已订阅你的工作机会",
|
||||
inboxProjectCreatedTitle: "新项目已创建",
|
||||
pmHasCreatedAProject: "已创建一个项目",
|
||||
inboxMarketItemSoldTitle: "商品已售出",
|
||||
inboxShopSoldTitle: "商品已售出",
|
||||
pmYourItem: "你的商品",
|
||||
pmHasBeenSoldTo: "已售出给",
|
||||
pmFor: "售价",
|
||||
|
|
@ -2399,7 +2493,7 @@ module.exports = {
|
|||
visitContent: "访问内容",
|
||||
banking: '银行',
|
||||
bankingTitle: '银行',
|
||||
bankingDescription: '探索 ECOin 的当前价值和相应的 UBI 分配,根据参与度和信任度按纪元分配。',
|
||||
bankingDescription: "ECOin 经济:余额、全民基本收入、税收与工业价值。",
|
||||
bankOverview: '概览',
|
||||
bankEpochs: '纪元',
|
||||
bankRules: '规则',
|
||||
|
|
@ -2433,6 +2527,10 @@ module.exports = {
|
|||
bankEpochId: '纪元 ID',
|
||||
bankRuleHash: '规则快照哈希',
|
||||
bankViewEpoch: '查看纪元',
|
||||
bankYourIndustryBalance: "你的工业份额",
|
||||
bankYourUbiMonth: "你本月的全民基本收入",
|
||||
bankYourFundsMonth: "你本月的资金",
|
||||
bankIndustryBalance: "工业产值(估算)",
|
||||
bankUserBalance: '你的余额',
|
||||
ecoWalletNotConfigured: '未配置 ECOin 钱包',
|
||||
editWallet: '编辑钱包',
|
||||
|
|
@ -2472,7 +2570,7 @@ module.exports = {
|
|||
pubIdPlaceholder: "@PUB_ID.ed25519",
|
||||
bankUbiAvailableNo: "资金不足!",
|
||||
bankUbiAvailableOk: "可用!",
|
||||
bankUbiAvailability: "UBI 可用性",
|
||||
bankUbiAvailability: "全民基本收入(网络)",
|
||||
bankAlreadyClaimedThisMonth: "本月已领取",
|
||||
bankUbiThisMonth: "UBI(本月)",
|
||||
bankUbiLastClaimed: "UBI(上次领取)",
|
||||
|
|
@ -2902,6 +3000,208 @@ module.exports = {
|
|||
jobsTagsLabel: "标签",
|
||||
jobsTagsPlaceholder: "标签1, 标签2, 标签3",
|
||||
noJobsMatch: "没有匹配的工作。",
|
||||
industrySearchPlaceholder: "搜索工厂…",
|
||||
industryAllSectors: "所有部门",
|
||||
industryVisitButton: "访问工业",
|
||||
industryAdvanceTo: "设为",
|
||||
industryAmount: "金额",
|
||||
industryApproveBuild: "批准",
|
||||
industryBackToFacility: "← 工厂",
|
||||
industryBlueprint: "蓝图",
|
||||
industryBlueprintLabel: "工业蓝图",
|
||||
industryBlueprints: "蓝图",
|
||||
industryBuild: "构建",
|
||||
industryBuildNotes: "备注",
|
||||
industryBuildStart: "开始日期",
|
||||
industryVoteUpdateButton: "投票更新",
|
||||
industryVoteDeleteButton: "投票删除",
|
||||
industryRevokeVote: "撤销",
|
||||
industryTimeLeft: "剩余时间",
|
||||
industryBuildEnd: "结束日期",
|
||||
industryBuilds: "构建",
|
||||
industryBuildTitle: "标题",
|
||||
industryContribute: "贡献",
|
||||
industryContributeEco: "贡献 ECO",
|
||||
industryContributeLabor: "贡献劳动",
|
||||
industryContributeButton: "贡献",
|
||||
industryContributeMaterial: "贡献材料",
|
||||
industryContributions: "贡献",
|
||||
industryContributors: "贡献者",
|
||||
industryCreateBlueprintButton: "创建蓝图",
|
||||
industryDistribute: "分配",
|
||||
industryDistributeButton: "按份额分配",
|
||||
industryDistribution: "分配",
|
||||
industryEcoAmount: "金额 (ECO)",
|
||||
industryEcoContribHint: "ECO 贡献将转给管理人,作为构建资金的托管人。",
|
||||
industryEditBlueprint: "编辑蓝图",
|
||||
industryFacility: "工厂",
|
||||
industryKindLabel: "类型",
|
||||
industryKind_labor: "人工",
|
||||
industryKind_material: "材料",
|
||||
industryKind_eco: "资金",
|
||||
industryLaborHours: "人工(小时)",
|
||||
industryHours: "小时",
|
||||
industryLicense: "许可",
|
||||
industryMaterialItem: "材料",
|
||||
industryMaterials: "材料",
|
||||
industryMaterialsHint: "每行一种材料,格式为 名称:数量:价格。",
|
||||
industryEstMaterials: "材料总计",
|
||||
industryEstLabor: "人工总计",
|
||||
industryEstTaxes: "税",
|
||||
industryEstTotal: "预计价格",
|
||||
industryBuildingPrice: "制造价格",
|
||||
industryFinalPrice: "最终价格",
|
||||
industryBlueprintDescPlaceholder: "规格、尺寸、重量、文档……",
|
||||
industryMaterialValue: "价值(ECO)",
|
||||
industryMember: "成员",
|
||||
industryNewBlueprint: "新建蓝图",
|
||||
industryNewBuild: "提议构建",
|
||||
industryEditBuild: "编辑生产",
|
||||
industryNoBlueprint: "— 无 —",
|
||||
industryNeedBlueprint: "请先创建蓝图:每次生产都基于蓝图。",
|
||||
industryNoBlueprints: "还没有蓝图。",
|
||||
industryNoBuilds: "还没有构建。",
|
||||
industryNote: "备注",
|
||||
industryOutput: "产出",
|
||||
industryOutputItem: "产品名称",
|
||||
industryOutputKind: "产品类型",
|
||||
industryOutputQty: "每次生产的单位数",
|
||||
industryOutputUnit: "计量单位",
|
||||
industryOutputValue: "产出价值(ECO,例如来自销售)",
|
||||
industryPayout: "支付",
|
||||
industryPoints: "Karma",
|
||||
industryPostJob: "创建工作",
|
||||
industryPot: "资金池",
|
||||
industryProposeBuildButton: "提议构建",
|
||||
industryProposer: "提议者",
|
||||
industryAuthor: "作者",
|
||||
industrySellOnMarket: "发送到市场",
|
||||
industrySendToProjects: "创建项目",
|
||||
industryShare: "份额",
|
||||
industryShares: "份额",
|
||||
industrySkills: "技能",
|
||||
industryTreasury: "资金",
|
||||
industryKind_physical: "实体",
|
||||
industryKind_digital: "数字",
|
||||
industryBuildStatus_PROPOSED: "已提议",
|
||||
industryBuildStatus_REJECTED: "已拒绝",
|
||||
industryBuildStatus_APPROVED: "已批准",
|
||||
industryBuildStatus_STOCKING: "备料中",
|
||||
industryBuildStatus_IN_PRODUCTION: "生产中",
|
||||
industryBuildStatus_COMPLETED: "已完成",
|
||||
industryBuildStatus_FAILED: "已失败",
|
||||
pmBotIndustry: "IndustryBot",
|
||||
industryBotAdmittedTitle: "你已被接纳进入一家工厂。",
|
||||
industryBotApplicationTitle: "你的工厂有新的加入申请。",
|
||||
industryBotInvitedTitle: "你被邀请加入一家工厂。",
|
||||
industryBotDissolvedTitle: "你所属的一家工厂已被解散。",
|
||||
industryBotBuildApprovedTitle: "一个构建已获批准。",
|
||||
industryBotDistributedTitle: "一个构建的产出已被分配。",
|
||||
industryFilterRules: "规则",
|
||||
industryRulesTitle: "规则",
|
||||
industryRulesIntro: "Industry 让居民集体拥有生产资料:一家工厂是网络所有的作坊,无人私有。",
|
||||
industryRulesSteward: "创始人是管理人——托管者,而非所有者:不能独自出售、私有化或解散工厂。",
|
||||
industryRulesMembership: "成员政策决定如何加入:开放(立即加入)、投票(由成员投票接纳)或仅邀请(需成员先邀请)。",
|
||||
industryRulesQuorum: "法定人数是一项决定生效所需投票的最少成员数,以免小工厂由一人决定。",
|
||||
industryRulesMajority: "多数是通过所需的投票比例(0.5=一半,1=全体一致);当赞成票达到至少 max(法定人数, 成员×多数) 时决定通过。",
|
||||
industryRulesDecisions: "成员投票接纳新人、批准构建和解散工厂;管理人不能凌驾于这些集体决定之上。",
|
||||
industryRulesBlueprints: "蓝图是自由(COPYLEFT)配方——投入(材料、工时、技能)与产出(实体或数字商品)——任何人都可以复刻。",
|
||||
industryRulesBuilds: "构建是一份生产订单:已提议→已批准(投票)→备料→生产中→已完成,且仅在批准后接受贡献。",
|
||||
industryRulesContributions: "成员向构建贡献劳动(工时)、材料(申报的 ECO 价值)或 ECO;每次贡献获得 Karma。",
|
||||
industryRulesLaborRate: "劳动费率是本工厂一工时的 ECO 价值;它把工时转为 Karma,以公平比较劳动与资本:Karma = 工时×费率 + 材料价值 + ECO。",
|
||||
industryRulesShares: "你在构建中的份额是你的 Karma÷总 Karma,决定你能获得多少产出价值。",
|
||||
industryRulesDistribution: "生产完成后,管理者将资金池(生产资金加销售价值)按贡献份额分配给贡献者。",
|
||||
industryRulesTreasury: "ECO 贡献由管理人作为构建资金托管人保管,直到分配;所有流动都记录在网络上,纠纷可提交 Courts。",
|
||||
industryJobs: "职位",
|
||||
industryNoJobs: "还没有职位。",
|
||||
industryCreatePosition: "创建职位",
|
||||
industryViewCV: "简历",
|
||||
industryReportButton: "举报",
|
||||
industryCreateTask: "创建任务",
|
||||
industryOpenDispute: "发起争议",
|
||||
industryMaterialsPlaceholder: "solar-panel:2:120\nbattery:1:80\nkit:1:15",
|
||||
industryOutputUnitPlaceholder: "例如 个、kg、许可证",
|
||||
industryOutputItemPlaceholder: "例如 机器人",
|
||||
industryOutputQtyPlaceholder: "例如 5",
|
||||
industrySkillsPlaceholder: "例如 焊接、网络、太阳能安装",
|
||||
industryCreateInvite: "生成邀请",
|
||||
industryPauseVotes: "状态票数",
|
||||
industryTitle: "工业",
|
||||
industryDescription: "用于集体管理生产资料的模块。",
|
||||
industryLabel: "工业",
|
||||
typeIndustryBuild: "构建",
|
||||
typeIndustryBlueprint: "蓝图",
|
||||
typeIndustryAllocation: "分配",
|
||||
typeIndustry: "工业",
|
||||
modulesIndustryLabel: "工业",
|
||||
modulesIndustryDescription: "用于集体管理生产资料的模块。",
|
||||
industryFilterAll: "全部",
|
||||
industryFilterMember: "成员",
|
||||
industryFilterBlueprints: "蓝图",
|
||||
industryFilterBuilds: "生产",
|
||||
industryFilterMine: "我的",
|
||||
industryFilterActive: "运行中",
|
||||
industryFilterPaused: "已暂停",
|
||||
industryFilterDissolved: "已解散",
|
||||
industryAllTitle: "工业",
|
||||
industryMemberTitle: "我参与的工厂",
|
||||
industryMineTitle: "我的工厂",
|
||||
industryActiveTitle: "运行中",
|
||||
industryPausedTitle: "已暂停的工厂",
|
||||
industryDissolvedTitle: "已解散的工厂",
|
||||
industryNoFacilitiesFound: "未找到工厂。",
|
||||
industryCreateFacility: "创建工厂",
|
||||
industryMembers: "成员",
|
||||
industryMemberBadge: "成员",
|
||||
industryName: "名称",
|
||||
industryNamePlaceholder: "工厂名称",
|
||||
industryDescriptionLabel: "描述",
|
||||
industryDescriptionPlaceholder: "这家工厂生产什么?",
|
||||
industrySector: "部门",
|
||||
industryMembershipPolicy: "成员政策",
|
||||
industryQuorum: "法定人数",
|
||||
industryMajority: "多数",
|
||||
industryLaborRate: "劳动费率",
|
||||
industryCreateButton: "创建工厂",
|
||||
industryUpdateButton: "更新",
|
||||
industrySteward: "管理人",
|
||||
industryStatusActive: "运行中",
|
||||
industryStatusPaused: "已暂停",
|
||||
industryStatusDissolved: "已解散",
|
||||
industryStatusLabel: "状态",
|
||||
industryJoinButton: "加入",
|
||||
industryApplyButton: "申请加入",
|
||||
industryLeaveButton: "退出",
|
||||
industryInviteButton: "邀请",
|
||||
industryInvitePlaceholder: "@...=.ed25519",
|
||||
industryInviteNeeded: "你需要邀请才能加入。",
|
||||
industryPauseButton: "投票暂停",
|
||||
industryResumeButton: "投票恢复",
|
||||
industryEditButton: "编辑",
|
||||
industryDeleteButton: "删除",
|
||||
industryBackToList: "← 工业",
|
||||
industryPendingApplicants: "待处理申请",
|
||||
industryVotesYes: "赞成",
|
||||
industryVotesNo: "反对",
|
||||
industryAlreadyVoted: "已投票",
|
||||
industryAdmit: "接纳",
|
||||
industryReject: "拒绝",
|
||||
industryDissolveTitle: "解散工厂",
|
||||
industryDissolveHint: "解散需要集体投票;管理人不能单独解散。",
|
||||
industryDissolveVote: "投票解散",
|
||||
industrySector_software: "软件",
|
||||
industrySector_hardware: "硬件",
|
||||
industrySector_agriculture: "农业",
|
||||
industrySector_textile: "纺织",
|
||||
industrySector_energy: "能源",
|
||||
industrySector_food: "食品",
|
||||
industrySector_construction: "建筑",
|
||||
industrySector_media: "媒体",
|
||||
industrySector_services: "服务",
|
||||
industrySector_other: "其他",
|
||||
industryPolicy_open: "开放",
|
||||
industryPolicy_vote: "投票",
|
||||
industryPolicy_invite: "仅邀请",
|
||||
projectsTitle: "项目",
|
||||
projectsDescription: "创建、资助和关注你网络中的社区驱动项目。",
|
||||
projectCreateProject: "创建项目",
|
||||
|
|
@ -3261,6 +3561,8 @@ module.exports = {
|
|||
chatOpenTitle: "Open Chats",
|
||||
chatClosedTitle: "Closed Chats",
|
||||
chatDescription: "描述",
|
||||
chatMessageReply: "回复",
|
||||
chatMessageLabel: "消息",
|
||||
chatCategory: "类别",
|
||||
chatStatus: "状态",
|
||||
chatFilterAll: "全部",
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ if (!fs.existsSync(configFilePath)) {
|
|||
"invitesMod": "on",
|
||||
"walletMod": "on",
|
||||
"legacyMod": "on",
|
||||
"devMod": "on",
|
||||
"cipherMod": "on",
|
||||
"bookmarksMod": "on",
|
||||
"videosMod": "on",
|
||||
|
|
@ -51,6 +52,7 @@ if (!fs.existsSync(configFilePath)) {
|
|||
"jobsMod": "on",
|
||||
"shopsMod": "on",
|
||||
"projectsMod": "on",
|
||||
"industryMod": "on",
|
||||
"bankingMod": "on",
|
||||
"parliamentMod": "on",
|
||||
"courtsMod": "on",
|
||||
|
|
@ -78,7 +80,6 @@ if (!fs.existsSync(configFilePath)) {
|
|||
"limit": 2000
|
||||
},
|
||||
"homePage": "activity",
|
||||
"bottomBarPins": ["search", "inbox", "publish"],
|
||||
"language": "en",
|
||||
"wish": "whole",
|
||||
"pmVisibility": "whole",
|
||||
|
|
|
|||
|
|
@ -15,7 +15,9 @@
|
|||
"fediverseMod": "on",
|
||||
"invitesMod": "on",
|
||||
"walletMod": "off",
|
||||
"legacyMod": "off",
|
||||
"legacyMod": "on",
|
||||
"devMod": "off",
|
||||
"industryMod": "on",
|
||||
"cipherMod": "on",
|
||||
"bookmarksMod": "on",
|
||||
"videosMod": "on",
|
||||
|
|
@ -75,5 +77,11 @@
|
|||
"language": "en",
|
||||
"wish": "whole",
|
||||
"pmVisibility": "whole",
|
||||
"lanBroadcasting": true
|
||||
"lanBroadcasting": true,
|
||||
"bottomBarPins": [
|
||||
"search",
|
||||
"inbox",
|
||||
"publish",
|
||||
"activity"
|
||||
]
|
||||
}
|
||||
|
|
@ -82,7 +82,7 @@ const HIDDEN_ENVELOPE_TYPES = new Set([
|
|||
'courts-key'
|
||||
]);
|
||||
|
||||
module.exports = ({ cooler, tribeCrypto, tribesModel, padsModel }) => {
|
||||
module.exports = ({ cooler, tribeCrypto, tribesModel, padsModel, industryModel }) => {
|
||||
let ssb;
|
||||
const openSsb = async () => { if (!ssb) ssb = await cooler.open(); return ssb };
|
||||
|
||||
|
|
@ -143,6 +143,72 @@ module.exports = ({ cooler, tribeCrypto, tribesModel, padsModel }) => {
|
|||
return t.length > max ? t.slice(0, max - 1) + '…' : t;
|
||||
};
|
||||
|
||||
// Builds self-contained chatThread items (title + recent messages embedded) for
|
||||
// general (non-tribe) OPEN chats that have activity. Emitted as one item per chat
|
||||
// with ts = latest message, so it survives the recent/all/mine filters intact.
|
||||
const CHAT_THREAD_LIMIT = 6;
|
||||
const buildChatThreads = async (ssbClient, idToAction, rootOf) => {
|
||||
const replacedChatIds = new Set();
|
||||
for (const a of idToAction.values()) {
|
||||
if (a.type !== 'chat') continue;
|
||||
const rep = a.content && a.content.replaces;
|
||||
if (rep) replacedChatIds.add(rep);
|
||||
}
|
||||
const stateByRoot = new Map();
|
||||
for (const a of idToAction.values()) {
|
||||
if (a.type !== 'chat') continue;
|
||||
const root = rootOf(a.id);
|
||||
const isTip = !replacedChatIds.has(a.id);
|
||||
const prev = stateByRoot.get(root);
|
||||
// Resolve the chain tip by replaces (a non-replaced action wins), breaking ts
|
||||
// ties correctly — the mock and real SSB can stamp equal timestamps.
|
||||
if (prev && !((isTip && !prev.isTip) || (isTip === prev.isTip && (a.ts || 0) >= prev.ts))) continue;
|
||||
const cc = a.content || {};
|
||||
stateByRoot.set(root, { ts: a.ts || 0, isTip, status: String(cc.status || '').toUpperCase(), tribeId: cc.tribeId || null, title: String(cc.title || ''), description: String(cc.description || '') });
|
||||
}
|
||||
const msgsByRoot = new Map();
|
||||
for (const a of idToAction.values()) {
|
||||
if (a.type !== 'chatMessage') continue;
|
||||
const c = a.content || {};
|
||||
if (c.tribeId || c.encryptedText) continue;
|
||||
const root = c.chatId;
|
||||
if (!root || typeof c.text !== 'string' || !c.text) continue;
|
||||
if (!msgsByRoot.has(root)) msgsByRoot.set(root, []);
|
||||
msgsByRoot.get(root).push(a);
|
||||
}
|
||||
for (const root of msgsByRoot.keys()) {
|
||||
if (stateByRoot.has(root)) continue;
|
||||
const val = await getMsg(ssbClient, root);
|
||||
const cc = val && val.content;
|
||||
if (cc && typeof cc === 'object' && cc.type === 'chat') {
|
||||
stateByRoot.set(root, { ts: 0, status: String(cc.status || '').toUpperCase(), tribeId: cc.tribeId || null, title: String(cc.title || ''), description: String(cc.description || '') });
|
||||
} else {
|
||||
stateByRoot.set(root, null);
|
||||
}
|
||||
}
|
||||
const items = [];
|
||||
for (const [root, msgs] of msgsByRoot.entries()) {
|
||||
const info = stateByRoot.get(root);
|
||||
if (!info || info.tribeId || info.status !== 'OPEN') continue;
|
||||
const asc = msgs.slice().sort((x, y) => (x.ts || 0) - (y.ts || 0));
|
||||
const last = asc[asc.length - 1];
|
||||
items.push({
|
||||
id: `chatthread:${root}`,
|
||||
type: 'chatThread',
|
||||
author: last.author,
|
||||
ts: last.ts || 0,
|
||||
content: {
|
||||
type: 'chatThread',
|
||||
chatRoot: root,
|
||||
title: info.title || '',
|
||||
description: info.description || '',
|
||||
replies: asc.slice(-CHAT_THREAD_LIMIT).map(m => ({ id: m.id, author: m.author, ts: m.ts || 0, text: (m.content && m.content.text) || '' }))
|
||||
}
|
||||
});
|
||||
}
|
||||
return items;
|
||||
};
|
||||
|
||||
return {
|
||||
invalidateCache() {
|
||||
_feedCache = null;
|
||||
|
|
@ -256,7 +322,7 @@ module.exports = ({ cooler, tribeCrypto, tribesModel, padsModel }) => {
|
|||
const target = String(c.target || '');
|
||||
const author = v.author;
|
||||
if (!target || !author) continue;
|
||||
const key = `${target} | ||||