Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • clients/wotwizard-ui
  • manutopik/wotwizard-ui
  • wellno1/wotwizard-ui
3 results
Show changes
Showing
with 1674 additions and 638 deletions
{
"AxiomTeam": "https://gql.wotwizard.axiom-team.fr/",
"trentesaux": "https://gql.wotwizard.trentesaux.fr/",
"Pini": "https://wotwizard.pini.fr/"
}
import { InMemoryCache, IntrospectionFragmentMatcher, defaultDataIdFromObject } from 'apollo-cache-inmemory' import {
import introspectionQueryResultData from './fragmentTypes.json'; InMemoryCache,
IntrospectionFragmentMatcher,
defaultDataIdFromObject
} from "apollo-cache-inmemory"
import introspectionQueryResultData from "./fragmentTypes.json"
const fragmentMatcher = new IntrospectionFragmentMatcher({ const fragmentMatcher = new IntrospectionFragmentMatcher({
introspectionQueryResultData introspectionQueryResultData
}) })
// Apparemment il faut utiliser la syntaxe Apollo v2 // Apparemment il faut utiliser la syntaxe Apollo v2
export const cache = new InMemoryCache({ export const cache = new InMemoryCache({
addTypename: false, addTypename: false,
fragmentMatcher, fragmentMatcher,
dataIdFromObject: object => { dataIdFromObject: (object) => {
switch (object.__typename) { switch (object.__typename) {
case 'Identity': return object.hash case "Identity":
case 'Event': return object.block.number return object.hash
case 'EventId': return `${object.member.hash}:${object.inOut}` case "Event":
case 'Forecast': return `${object.member.hash}:${object.date}:${object.after}:${object.proba}` return object.block.number
default: return defaultDataIdFromObject(object); // fall back to default handling case "EventId":
} return `${object.member.hash}:${object.inOut}`
} case "Forecast":
}) return `${object.member.hash}:${object.date}:${object.after}:${object.proba}`
\ No newline at end of file case "GroupId":
return `${object.id.hash}`
case "CertHist":
return `${object.id.uid}:${object.hist[0].block.number}`
case "CertEvent":
return `${object.in}:${object.block.number}`
case "Block":
return `${object.number}`
default:
return defaultDataIdFromObject(object) // fall back to default handling
}
}
})
import { HttpLink } from 'apollo-link-http'
import { setContext } from 'apollo-link-context'
import { from } from 'apollo-link'
import { ENDPOINT1 } from './endpoints'
import { cache } from '../cache'
export default ctx => {
const ssrMiddleware = setContext((_, { headers }) => {
if (process.client) return headers
return {
headers
}
})
const httpLink = new HttpLink({
uri: ENDPOINT1
})
const link = from([ssrMiddleware, httpLink])
return {
link,
cache,
// https://github.com/nuxt-community/apollo-module/issues/306#issuecomment-607225431
defaultHttpLink: false
}
}
\ No newline at end of file
module.exports = {
ENDPOINT1: 'https://wwgql.coinduf.eu',
ENDPOINT2: 'https://myserver.com'
}
\ No newline at end of file
import { HttpLink } from 'apollo-link-http'
import { setContext } from 'apollo-link-context'
import { from } from 'apollo-link'
import { ENDPOINT2 } from './endpoints'
import { cache } from '../cache'
export default ctx => {
const ssrMiddleware = setContext((_, { headers }) => {
if (process.client) return headers
return {
headers
}
})
const httpLink = new HttpLink({
uri: ENDPOINT2
})
const link = from([ssrMiddleware, httpLink])
return {
link,
cache,
// https://github.com/nuxt-community/apollo-module/issues/306#issuecomment-607225431
defaultHttpLink: false
}
}
\ No newline at end of file
# WotWizard GraphQL TypeSystem # WotWizard GraphQL TypeSystem
# https://git.duniter.org/gerard94/WotWizard/-/blob/master/Help/TypeSystem.txt
type Query { type Query {
...@@ -29,14 +30,14 @@ type Query { ...@@ -29,14 +30,14 @@ type Query {
"'wwResult' displays the content of the WotWizard window" "'wwResult' displays the content of the WotWizard window"
wwResult: WWResult! wwResult: WWResult!
"'memEnds' displays the list of members, among the reference list 'group', who are about to loose their memberships, in the increasing order of event dates (bct); 'startFromNow' gives the period (in seconds) before the beginning of the list (0 if absent or null) , and 'period' gives the period covered by the list (infinite if absent or null). If 'group' is null or empty, the reference list is the whole Web Of Trust; if any string in 'group' is empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not empty and unknown, an error is raised" "'memEnds' displays the list of members, among the reference list 'group', who are about to loose their memberships, in the increasing order of event dates (bct); 'startFromNow' gives the period (in seconds) before the beginning of the list (0 if absent or null) , and 'period' gives the period covered by the list (infinite if absent or null). If 'group' is null or empty, the reference list is the whole Web Of Trust; if any string in 'group' is empty or doesn't refer to an identity known by the blockchain, it's not taken into account for the calculation, and, furthermore, if it is not empty and unknown to the blockchain, an error is raised"
memEnds (group: [String!], startFromNow: Int64, period: Int64): [Identity!]! memEnds (group: [String!], startFromNow: Int64, period: Int64): [Identity!]!
"'missEnds' displays the list of identities, among the reference list 'group', who are MISSING and about to be revoked, in the increasing order of event dates (bct); 'startFromNow' gives the period (in seconds) before the beginning of the list (0 if absent or null) , and 'period' gives the period covered by the list (infinite if absent or null). If 'group' is null or empty, the reference list is the whole Web Of Trust; if any string in 'group' is empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not empty and unknown, an error is raised" "'missEnds' displays the list of identities, among the reference list 'group', who are MISSING and about to be revoked, in the increasing order of event dates (bct); 'startFromNow' gives the period (in seconds) before the beginning of the list (0 if absent or null) , and 'period' gives the period covered by the list (infinite if absent or null). If 'group' is null or empty, the reference list is the whole Web Of Trust; if any string in 'group' is empty or doesn't refer to an identity known by the blockchain, it's not taken into account for the calculation, and, furthermore, if it is not empty and unknown to the blockchain, an error is raised"
missEnds (group: [String!], startFromNow: Int64, period: Int64): [Identity!]! missEnds (group: [String!], startFromNow: Int64, period: Int64): [Identity!]!
"'certEnds' displays the list of identities , among the reference list 'group', who are MEMBER or (possibly) MISSING and about to loose their 'ParameterName.sigQty'th oldest certification, in the increasing order of event dates (bct); 'startFromNow' gives the period (in seconds) before the beginning of the list (0 if absent or null) , and 'period' gives the period covered by the list (infinite if absent or null). If 'group' is null or empty, the reference list is the whole Web Of Trust; if any string in 'group' is empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not empty and unknown, an error is raised" "'certEnds' displays the list of identities , among the reference list 'group', who are MEMBER or (possibly) MISSING and about to loose their 'ParameterName.sigQty'th oldest certification, in the increasing order of event dates (bct); 'startFromNow' gives the period (in seconds) before the beginning of the list (0 if absent or null) , and 'period' gives the period covered by the list (infinite if absent or null). If 'group' is null or empty, the reference list is the whole Web Of Trust; if any string in 'group' is empty or doesn't refer to an identity known by the blockchain, it's not taken into account for the calculation, and, furthermore, if it is not empty and unknown to the blockchain, an error is raised"
certEnds (group: [String!], startFromNow: Int64, period: Int64, missingIncluded: Boolean! = true): [DatedIdentity!]! certEnds (group: [String!], startFromNow: Int64, period: Int64, missingIncluded: Boolean! = true): [Identity!]!
"'countMin' gives the first block of the blockchain" "'countMin' gives the first block of the blockchain"
countMin: Block! countMin: Block!
...@@ -80,16 +81,16 @@ type Query { ...@@ -80,16 +81,16 @@ type Query {
"'version' returns a string describing the version of the graphQL server" "'version' returns a string describing the version of the graphQL server"
version: String! version: String!
"'calcDist' returns the distance of the identity whose pseudo is 'uid' when the members 'certifiers' are added to her own certifiers. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown, an error is raised; the same for any string in 'certifiers'" "'calcDist' returns the distance of the identity whose pseudo is 'uid' when the members 'certifiers' are added to her own certifiers. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown, an error is raised; the same for any string in 'certifiers', which must also correspond to a member"
calcDist (uid: String, certifiers: [String!]): Distance! calcDist (uid: String, certifiers: [String!]): Distance!
"'calcQual' returns the quality of the identity whose pseudo is 'uid' when the members 'certifiers' are added to her own certifiers. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown, an error is raised; the same for any string in 'certifiers'" "'calcQual' returns the quality of the identity whose pseudo is 'uid' when the members 'certifiers' are added to her own certifiers. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown, an error is raised; the same for any string in 'certifiers', which must also correspond to a member"
calcQual (uid: String, certifiers: [String!]): Fraction! calcQual (uid: String, certifiers: [String!]): Fraction!
"'bestDist' returns a list of members, among the reference list 'group', who could certify the identity whose pseudo is 'uid', together with the distance such a certification would give to the identity. 'certifiers' is a list of members supposed having already certified the identity in addition to her own certifiers. If 'group' is null or empty, the reference list is the whole Web Of Trust. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown, an error is raised; the same for any string in 'group' or 'certifiers', and, furthermore, if the latter is not empty, it should refer to a member. 'answerNb' is the greatest number of answers in the result. If 'answerNb' is null, zero or negative, all answers are returned. Answers are sorted in the decreasing order of 'IdDist.dist.value.ratio'" "'bestDist' returns a list of members, among the reference list 'group', who could certify the identity whose pseudo is 'uid', together with the distance such a certification would give to the identity. 'certifiers' is a list of members supposed having already certified the identity in addition to her own certifiers. If 'group' is null or empty, the reference list is the whole Web Of Trust. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to an identity known by the blockchain, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown to the blockchain, an error is raised; the same for any string in 'group' or 'certifiers', and, furthermore, if the latter is not empty, it should refer to a member. 'answerNb' is the greatest number of answers in the result. If 'answerNb' is null, zero or negative, all answers are returned. Answers are sorted in the decreasing order of 'IdDist.dist.value.ratio'"
bestDist (group: [String!], uid: String, certifiers: [String!], answerNb: Int): [IdDist!]! bestDist (group: [String!], uid: String, certifiers: [String!], answerNb: Int): [IdDist!]!
"'bestQual' returns a list of members, among the reference list 'group', who could certify the identity whose pseudo is 'uid', together with the quality such a certification would give to the identity. 'certifiers' is a list of members supposed having already certified the identity in addition to her own certifiers. If 'group' is null or empty, the reference list is the whole Web Of Trust. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to a known identity, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown, an error is raised; the same for any string in 'group' or 'certifiers', and, furthermore, if the latter is not empty, it should refer to a member. 'answerNb' is the greatest number of answers in the result. If 'answerNb' is null, zero or negative, all answers are returned. Answers are sorted in the decreasing order of 'IdQual.qual.ratio'" "'bestQual' returns a list of members, among the reference list 'group', who could certify the identity whose pseudo is 'uid', together with the quality such a certification would give to the identity. 'certifiers' is a list of members supposed having already certified the identity in addition to her own certifiers. If 'group' is null or empty, the reference list is the whole Web Of Trust. 'uid' may be any string, even null or empty; if 'uid' is null or empty or doesn't refer to an identity known by the blockchain, it's not taken into account for the calculation, and, furthermore, if it is not null, not empty and unknown to the blockchain, an error is raised; the same for any string in 'group' or 'certifiers', and, furthermore, if the latter is not empty, it should refer to a member. 'answerNb' is the greatest number of answers in the result. If 'answerNb' is null, zero or negative, all answers are returned. Answers are sorted in the decreasing order of 'IdQual.qual.ratio'"
bestQual (group: [String!], uid: String, certifiers: [String!], answerNb: Int): [IdQual!]! bestQual (group: [String!], uid: String, certifiers: [String!], answerNb: Int): [IdQual!]!
} #Query } #Query
...@@ -123,28 +124,42 @@ type Subscription { ...@@ -123,28 +124,42 @@ type Subscription {
} #Subscription } #Subscription
"Output of Query.filterGroup, used with a list of statuses; 'selected' owns the uid(s) of identities whose statuses are in the list, 'others' owns those who are not in the list, and 'unknown' corresponds to unknown identities." "Output of Query.filterGroup, used with a list of statuses; 'selected' owns the uid(s) of identities whose statuses are in the list, 'others' owns those who are not in the list, and 'unknown' corresponds to unknown identities; 'duplicate' displays all uid(s) with multiple occurrences in the original list."
type GroupFilter { type GroupFilter {
selected: [String!]!
others: [Error!]! "List of identities in the group whose statuses have been selected"
unknown: [Error!]! selected: [GroupId!]!
duplicate: [Error!]!
"List of identities in the group whose statuses have not been selected"
others: [GroupId!]!
"List of uid(s) in the group who were not found"
unknown: [GroupString!]!
"List of uid(s) with multiple occurrences in the original group"
duplicate: [GroupString!]!
} #Group_Filter } #Group_Filter
type Error { type GroupId {
mes: String!
path: [FieldOrRank!]! "Found Identity"
} #Error id: Identity!
"Index in the original list, starting from 0"
index: Int!
union FieldOrRank = Field | Rank } #GroupId
type Field { type GroupString {
name: String!
} #Field
type Rank { "Uid whose identity has or has not been found"
uid: String!
"Index in the original list, starting from 0"
index: Int! index: Int!
} #Rank
} #GroupString
"WoT identity" "WoT identity"
type Identity { type Identity {
...@@ -179,6 +194,9 @@ type Identity { ...@@ -179,6 +194,9 @@ type Identity {
"Limit date of the membership application; null for REVOKED; limit date before revocation for MISSING" "Limit date of the membership application; null for REVOKED; limit date before revocation for MISSING"
limitDate: Int64 limitDate: Int64
"Limit date of the 'ParameterName.sigQty'th oldest received certification; or null if less than 'ParameterName.sigQty' certifications received; null for REVOKED and NEWCOMER"
certsLimit: Int64
"Member is leaving? null for REVOKED or NEWCOMER" "Member is leaving? null for REVOKED or NEWCOMER"
isLeaving: Boolean isLeaving: Boolean
...@@ -186,7 +204,7 @@ type Identity { ...@@ -186,7 +204,7 @@ type Identity {
sentry: Boolean sentry: Boolean
"Active received certifications, sorted by increasing pubkeys" "Active received certifications, sorted by increasing pubkeys"
received_certifications: Received_Certifications! received_certifications: [Certification!]!
"Active sent certifications, sorted by increasing pubkeys" "Active sent certifications, sorted by increasing pubkeys"
sent_certifications: [Certification!]! sent_certifications: [Certification!]!
...@@ -229,17 +247,6 @@ type Identity { ...@@ -229,17 +247,6 @@ type Identity {
} #Identity } #Identity
"The association of 'Identity' and date"
type DatedIdentity {
"Identity"
id: Identity!
"Associated date"
date: Int64!
}
"Status of an identity in WoT" "Status of an identity in WoT"
enum Identity_Status { enum Identity_Status {
...@@ -299,17 +306,6 @@ type IdSearchOutput { ...@@ -299,17 +306,6 @@ type IdSearchOutput {
} #IdSearchOutput } #IdSearchOutput
"Certifications received by an identity"
type Received_Certifications {
"List of all valid received certifications"
certifications: [Certification!]!
"Limit date of the 'ParameterName.sigQty'th oldest received certification; or null if less than 'ParameterName.sigQty' certifications received"
limit: Int64
} #received_Certifications
"Certification sent by 'from' and received by 'to'" "Certification sent by 'from' and received by 'to'"
type Certification { type Certification {
...@@ -734,16 +730,16 @@ type Fraction { ...@@ -734,16 +730,16 @@ type Fraction {
} #fraction } #fraction
"64 bits signed integer" "64 bits signed integer"
scalar Int64 scalar Int64 @specifiedBy(url: "https://go.dev/ref/spec#Numeric_types")
"Avatar of String" "Avatar of String"
scalar Hash scalar Hash @specifiedBy(url: "https://git.duniter.org/nodes/common/doc/blob/master/rfc/0009_Duniter_Blockchain_Protocol_V11.md")
"Avatar of String" "Avatar of String"
scalar Pubkey scalar Pubkey @specifiedBy(url: "https://git.duniter.org/nodes/common/doc/blob/master/rfc/0009_Duniter_Blockchain_Protocol_V11.md#public-key")
"Empty result" "Empty result"
scalar Void scalar Void
"Int, Int64 or Float" "Int, Int64 or Float"
scalar Number scalar Number @specifiedBy(url: "https://ieeexplore.ieee.org/document/4610935")
\ No newline at end of file
const { HttpLink } = require("apollo-link-http");
const { setContext } = require("apollo-link-context");
const { from } = require("apollo-link");
const { cache } = require("../cache");
const ssrMiddleware = setContext((_, { headers }) => {
if (process.client) return headers;
return { headers };
});
const httpLink = new HttpLink({ uri: "https://gql.wotwizard.axiom-team.fr/" });
const link = from([ssrMiddleware, httpLink]);
module.exports = () => ({
link,
cache,
defaultHttpLink: false
});
const { HttpLink } = require("apollo-link-http");
const { setContext } = require("apollo-link-context");
const { from } = require("apollo-link");
const { cache } = require("../cache");
const ssrMiddleware = setContext((_, { headers }) => {
if (process.client) return headers;
return { headers };
});
const httpLink = new HttpLink({ uri: "https://wotwizard.pini.fr/" });
const link = from([ssrMiddleware, httpLink]);
module.exports = () => ({
link,
cache,
defaultHttpLink: false
});
const { HttpLink } = require("apollo-link-http");
const { setContext } = require("apollo-link-context");
const { from } = require("apollo-link");
const { cache } = require("../cache");
const ssrMiddleware = setContext((_, { headers }) => {
if (process.client) return headers;
return { headers };
});
const httpLink = new HttpLink({ uri: "https://gql.wotwizard.trentesaux.fr/" });
const link = from([ssrMiddleware, httpLink]);
module.exports = () => ({
link,
cache,
defaultHttpLink: false
});
{ {"__schema":{"types":[{"kind":"UNION","name":"CertifOrDossier","possibleTypes":[{"name":"MarkedDatedCertification"},{"name":"MarkedDossier"}]},{"kind":"INTERFACE","name":"File","possibleTypes":[{"name":"FileS"}]},{"kind":"INTERFACE","name":"WWResult","possibleTypes":[{"name":"WWResultS"}]}]}}
"__schema": { \ No newline at end of file
"types": [
{
"kind": "UNION",
"name": "CertifOrDossier",
"possibleTypes": [
{ "name": "MarkedDatedCertification" },
{ "name": "MarkedDossier" }
]
},
{
"kind": "INTERFACE",
"name": "File",
"possibleTypes": [{ "name": "FileS" }]
},
{
"kind": "INTERFACE",
"name": "WWResult",
"possibleTypes": [{ "name": "WWResultS" }]
}
]
}
}
const fs = require('fs');
const path = require('path');
const endpoints = require('../endpoints.json');
const endpointDir = path.join(__dirname, 'endpoints');
const recreateDirectory = (directory) => {
if (fs.existsSync(directory)) {
fs.rmSync(directory, { recursive: true, force: true });
}
fs.mkdirSync(directory, { recursive: true });
};
recreateDirectory(endpointDir);
const configTemplate = (uri) => `
const { HttpLink } = require("apollo-link-http");
const { setContext } = require("apollo-link-context");
const { from } = require("apollo-link");
const { cache } = require("../cache");
const ssrMiddleware = setContext((_, { headers }) => {
if (process.client) return headers;
return { headers };
});
const httpLink = new HttpLink({ uri: "${uri}" });
const link = from([ssrMiddleware, httpLink]);
module.exports = () => ({
link,
cache,
defaultHttpLink: false
});
`;
Object.keys(endpoints).forEach(key => {
const filePath = path.join(endpointDir, `${key}.js`);
const fileContent = configTemplate(endpoints[key]);
fs.writeFileSync(filePath, fileContent);
});
This diff is collapsed.
const { ENDPOINT1 } = require('./clients/endpoints'); const fetch = (...args) => import('node-fetch').then(({ default: fetch }) => fetch(...args));
const fetch = require('node-fetch'); const fs = require("fs")
const fs = require('fs');
fetch(ENDPOINT1, { fetch("https://gql.wotwizard.trentesaux.fr/", {
method: 'POST', method: "POST",
headers: { 'Content-Type': 'application/json' }, headers: { "Content-Type": "application/json" },
body: JSON.stringify({ body: JSON.stringify({
variables: {}, variables: {},
query: ` query: `
{ {
__schema { __schema {
types { types {
...@@ -19,21 +18,28 @@ fetch(ENDPOINT1, { ...@@ -19,21 +18,28 @@ fetch(ENDPOINT1, {
} }
} }
} }
`, `
}), })
}) })
.then(result => result.json()) .then((result) => result.json())
.then(result => { .then((result) => {
const filteredData = result.data.__schema.types.filter( const filteredData = result.data.__schema.types.filter(
type => type.possibleTypes !== null (type) => type.possibleTypes !== null
) )
result.data.__schema.types = filteredData; result.data.__schema.types = filteredData
fs.writeFile('./graphql/fragmentTypes.json', JSON.stringify(result.data), err => { fs.writeFile(
if (err) { "./graphql/fragmentTypes.json",
console.error('Error writing fragmentTypes file', err); JSON.stringify(result.data),
} else { (err) => {
console.log('Fragment types successfully extracted!'); if (err) {
} console.error("Error writing fragmentTypes file", err)
}); } else {
}); console.log("Fragment types successfully extracted!")
\ No newline at end of file }
}
)
})
.catch(function (error) {
console.log(error.message)
})
import en from './locales/en.json' import { dateTimeFormats } from "./locales/dateTimeFormats"
import fr from './locales/fr.json'
import es from './locales/es.json'
import { dateTimeFormats } from './locales/dateTimeFormats'
export default { export default {
fallbackLocale: 'en', dateTimeFormats
dateTimeFormats, }
messages: { en, fr, es }
}
\ No newline at end of file
const objTime = {
short: {
day: "2-digit",
month: "2-digit",
year: "2-digit"
},
long: {
day: "numeric",
month: "long",
year: "numeric"
},
hour: {
hour: "numeric"
},
min: {
minute: "2-digit"
},
time: {
hour: "numeric",
minute: "2-digit",
hour12: false
}
}
export const dateTimeFormats = { export const dateTimeFormats = {
'fr': { de: objTime,
short: { en: objTime,
day: 'numeric', es: objTime,
month: 'short', fr: objTime,
year: '2-digit' it: objTime
}, }
long: {
day: 'numeric',
month: 'long',
year: 'numeric',
},
hour: {
hour: 'numeric'
},
min: {
minute: '2-digit'
},
time: {
hour: 'numeric',
minute: '2-digit',
hour12: false,
}
},
'en': {
short: {
day: 'numeric',
month: 'short',
year: '2-digit'
},
long: {
month: 'long',
day: 'numeric',
year: 'numeric',
},
hour: {
hour: 'numeric'
},
min: {
minute: '2-digit'
},
time: {
hour: 'numeric',
minute: '2-digit',
hour12: true,
}
},
'es': {
short: {
day: 'numeric',
month: 'short',
year: '2-digit'
},
long: {
day: 'numeric',
month: 'long',
year: 'numeric',
},
hour: {
hour: 'numeric'
},
min: {
minute: '2-digit'
},
time: {
hour: 'numeric',
minute: '2-digit',
hour12: false,
}
}
}
\ No newline at end of file
{
"accueil": "Home",
"actuellement": {
"debut": "Derzeit gibt es",
"fin": "Mitglieder im Vertrauensnetz"
},
"adhesion": {
"desc": "Aufnahme im Vertrauensnetz. Die Mitgliedschaft ist ein Jahr lang gültig und muss erneuert werden, wenn man weiterhin seine Universaldividende mitproduzieren möchte.",
"title": "Mitgliedschaft"
},
"alert": {
"attenteCertifiers": "Warten auf Zertifizierer",
"attention": "Warnung",
"certStockLim": "Dieses Konto hat nur <b>{n} Zertifizierung</b> auf Lager. | Dieses Konto hat nur <b>{n} Zertifizierungen</b> auf Lager.",
"certifManquantes": "Diesem Konto fehlen <b>{n} Zertifizierung</b>, um Mitglied zu werden. | Diesem Konto fehlen <b>{n} Zertifizierungen</b>, um Mitglied zu werden.",
"certifManquantesBientot": "Dieses Konto hat bald <b>keine Zertifizierungen mehr</b>.",
"distKO": "Dieses Konto verstößt gegen die <b>Abstandsregel</b>.",
"dossierKOtitle": "Unvollständige Datei",
"dossierOK": "Die Datei für dieses Konto ist <b>vollständig</b> und wird <b>bald Mitglied</b>.",
"dossierOKtitle": "Komplette Datei",
"information": "Information",
"missing": "Dieses Konto hat seine Mitgliedschaft verloren. Er hat <b>{n} Tag</b> Zeit, um die Mitgliedschaft erneut zu beantragen, bevor er automatisch widerrufen wird. | Dieses Konto hat seine Mitgliedschaft verloren. Er hat <b>{n} Tage</b> Zeit, um die Mitgliedschaft erneut zu beantragen, bevor er automatisch widerrufen wird.",
"noMoreCert": "Dieses Konto hat <b>keine weiteren Zertifizierungen</b> auf Lager.",
"notAllCertifiersDispo": "Mindestens ein Zertifizierer ist <b>nicht verfügbar</b>.",
"notAvailable": "Dieses Mitglied ist zur Zertifizierung <b>nicht verfügbar</b>.",
"renew": "Dieses Konto muss seine Mitgliedschaft <b>erneuern</b>.",
"revoked": "Dieses Konto wurde <b>aufgehoben</b> und kann nicht länger Mitglied werden."
},
"apropos": {
"alert": "Die von der Anwendung angezeigten Daten stammen von einem <a href='https://git.duniter.org/gerard94/WotWizard' target='_blank' class='alert-link'>Wotwizard-Server mit graphQL-Technologie</a> und hängen vom abgefragten Duniter-Knoten ab. Aus diesem Grund können Daten, die noch nicht in die Blockchain geschrieben wurden, von Anwendung zu Anwendung unterschiedlich sein.",
"bienvenue": "Willkommen im Wotwizard!",
"contribuer": "Der Quellcode von Wotwizard befindet sich auf <a href=\"https://git.duniter.org/clients/wotwizard-ui\" target=\"_blank\">unserem Gitlab-Server</a>. Zögern Sie nicht, dort Fehler oder Verbesserungsvorschläge auf der <a href=\"https://git.duniter.org/clients/wotwizard-ui/-/issues\" target=\"_blank\"><b>Issues</b>-Seite</a> zu melden.",
"deploiement": "Deployment:",
"desc": "Dieses Tool ermöglicht es Ihnen, die Bei- und Austritte des Vertrauensnetzes der freien Währung Ğ1 zu verfolgen und ist das Ergebnis einer Zusammenarbeit zwischen verschiedenen Entwicklende und Nutzende der Währung. Zögern Sie nicht, sich bei ihnen mit einer Spende auf den folgenden öffentlichen Schlüssel zu bedanken:",
"developpeurs": "Entwicklung:",
"graphql": "API grahQL",
"participants": "Mitwirkende des Projekts:",
"testeurs": "Testung:",
"title": "Apropos",
"traducteurs": "Übersetzung:"
},
"aria": {
"ariane": "Brotkrümel",
"clipboard": "In die Zwischenablage kopieren",
"close": "Nah dran",
"closemenu": "Menü schließen",
"openmenu": "Menü öffnen",
"scrolltotop": "Zurück nach oben",
"themedark": "Wechseln Sie zum dunklen Thema",
"themelight": "Wechseln Sie zum Lichtdesign"
},
"aurevoir": "Auf Wiedersehen",
"bienvenue": "Willkommen",
"bloc": {
"desc": "Datei, die unveränderbare Transaktionen (Geldschöpfung, Überweisungen und Zertifizierungen im Fall von Duniter) enthält und Teil der Blockchain ist",
"title": "Block"
},
"blockchain": {
"desc": "Gesamtheit der Blöcke, die von den Knoten des Duniter-Netzwerks berechnet werden",
"title": "Blockchain (dt. Blockkette)"
},
"centralite": {
"desc": "Die Zentralität ermöglicht es, die Bedeutung und den Einfluss eines Mitglieds im Vertrauensnetz zu erkennen. Sie wird berechnet, indem man zählt wie häufig ein Mitglied auf dem kürzesten Weg zwischen zwei beliebigen anderen Mitgliedern des Vertrauensnetzes ist. Als Pfad nimmt man die Verkettung von Zertifizierungen zwischen den Mitgliedern.",
"title": "Zentralität"
},
"certification": {
"afficher": "Zertifizierungen Anzeigen",
"desc": "In der Blockchain gespeicherte Bestätigung einer Person, dass sie einer anderen vertraut. Eine Zertifizierung ist zwei Jahre lang gültig.",
"enattente": "Warten auf Behandlung",
"encours": "Aktuell gültig",
"envoyees": "Ausgestellte Zertifizierungen",
"masquer": "Zertifizierungen Verstecken",
"perimees": "Erneuern",
"recues": "Erhaltene Zertifizierungen",
"title": "Zertifizierung"
},
"chargement": "Laden",
"cle": {
"privee": {
"desc": "Geheimer Schlüssel, mit dem Dokumente signiert werden können (eine Transaktion durchführen, eine Zertifizierung ausstellen usw.). Er ist mathematisch mit dem öffentlichen Schlüssel verknüpft.",
"title": "Privater Schlüssel"
},
"publique": {
"desc": "Ähnlich wie eine Kontonummer. Er ist derjenige, den Sie angeben, um zertifiziert zu werden oder eine Zahlung zu erhalten. Er ist mathematisch mit dem privaten Schlüssel verknüpft.",
"title": "Öffentlicher Schlüssel"
}
},
"compte": {
"membre": {
"desc": "Zertifiziertes Konto, das an einem Mitglied gebunden ist. Nur ein Mitgliedskonto kann die Währung über die Universaldividende mitproduzieren und über die Duniter-Software in die Blockchain schreiben.",
"title": "Mitgliedskonto"
},
"portefeuille": {
"desc": "Konto, das mit einem öffentlichen Schlüssel verbunden ist, der nicht Mitglied ist. Das heißt, es ist nicht Teil des Vertrauensnetzes und produziert die Universaldividende nicht mit. Dies kann einen Neuankömmling betreffen, der sein Konto später in ein Mitgliedskonto umwandeln möchte, oder um den Bedürfnissen der persönlichen Verwaltung, von Vereinen, für Unternehmen usw. gerecht zu werden.",
"title": "Wallet Konto"
}
},
"copie": "Kopiert",
"date": "Datum",
"description": "Beschreibung",
"dev": "In Entwicklung",
"dividende": {
"desc": "Anteil der von allen Mitgliedern des Vertrauensnetzes produzierten Währung, die zur Bewahrung der räumlichen und zeitlichen Symmetrie berechnet wurde. Seine vereinfachte theoretische jährliche Formel lautet: DU = c × M/N, wobei c die Wachstumsrate pro Jahr (10%), M die Geldmenge und N die Anzahl der Mitglieder ist.",
"title": "Universaldividende (UD)"
},
"dossier": {
"attente": "Kein Antrag in der Warteschleife | 1 Antrag in der Warteschleife | {n} Anträge in der Warteschleife",
"desc": "Ein Mitgliedschaftsantrag, der in Bearbeitung ist. Der Antrag ist eine Sammlung von Dokumenten, anhand derer Duniter feststellen kann, ob ein neues Mitglied alle Regeln des Vertrauensnetzes einhält.",
"title": "Antrag"
},
"duniter": {
"desc": "Eine Blockchain-verwendende Kryptowährungssoftware, die der Relativtheorie der Währung (RTW) entspricht und das Vertrauensnetz zur Identifizierung der mitproduzierenden Mitglieder nutzt.",
"title": "Duniter"
},
"expire": "Ablaufdatum",
"filter": {
"certif": "Nach Zertifizierungsstatus filtern",
"statut": "Nach Mitgliedsstatus filtern"
},
"infos": "Informationen",
"inout": "Bei- und Austritte des Vertrauensnetz in den 2 letzten Tagen",
"inpreparation": "In Vorbereitung",
"jours": "1 Tag | {n} Tagen",
"jours_avant": "< 24h | vor {n} Tagen",
"lang": "Wähle deine Sprache",
"lexique": "Lexikon",
"membre": {
"calculant": {
"desc": "Mitglied, das seinen privaten Schlüssel zum Schürfen von Blöcken mithilfe von Duniter verwendet.",
"title": "Berechnendes Mitglied"
},
"datelimadhesion": {
"desc": "Datum, vor dem das Konto seinen Mitgliedsstatus verliert, wenn keine Verlängerungsanfrage gestellt wurde",
"title": "Beitrittsfrist"
},
"datelimpertestatut": "Verlust der Mitgliedschaft",
"datelimrevoc": {
"desc": "Datum, vor dem das Konto automatisch gesperrt wird, wenn keine Verlängerungsanfrage gestellt wurde",
"title": "Frist vor dem Widerruf"
},
"datemanquecertifs": {
"desc": "Datum, an dem das Konto keine Zertifizierungen mehr hat",
"title": "Fehlende Zertifizierungen"
},
"desc": "Einzelperson, die in das Vertrauensnetz beigetreten ist, die die fünf erforderlichen Zertifizierungen erhalten hat und die Distanzregel einhält. Ein Mitglied schöpft die Währung über seine Universaldividende mit",
"dispo": "Kann zertifizieren",
"dispocertif": {
"desc": "Ein Mitglied kann eine Bescheinigung erst 5 Tage nach Bearbeitung der letzten ausstellen. Senden Sie jeweils nur eine Bescheinigung, um den Beitritt neuer Mitglieder zu erleichtern",
"title": "Verfügbarkeit"
},
"disponibilite": "Verfügbarkeit",
"distance": {
"desc": "Anteil der referierenden Mitglieder, die in höchstens 5 Sprüngen im Vertrauensnetz erreichbar sind. Um Mitglied zu werden, diese Rate muss größer oder gleich 80 % sein",
"title": "Distanz"
},
"nb_certifs": {
"desc": "Jedes Mitglied hat einen Bestand von 100 gültigen Zertifizierungen",
"title": "Anzahl verfügbare Zertifizierungen"
},
"nodispo": "Kann nicht zertifizieren",
"qualite": {
"desc": "Anteil der referierenden Mitglieder, die in 4 oder weniger Sprüngen im Vertrauensnetz erreichbar sind. Ein Mitglied, dessen Qualität über 80% liegt, kann sicherstellen, dass seine Zertifizierten die Distanzregel einhalten",
"title": "Qualität"
},
"referent": {
"desc": "Mitglied, das <code>CEIL(N<sup>(1/stepMax)</sup>)</code> Zertifizierungen ausgestellt UND erhalten hat, die von der Gesamtzahl der Mitglieder abhängt. Dieser Status bietet keine Vorteile, ermöglicht aber die Sicherung des Vertrauensnetzes, insbesondere durch die Distanzregel",
"title": "Referierendes Mitglied"
},
"title": "Mitglied",
"voirinfos": "Mitgliedsinformationen anzeigen"
},
"membres": "Mitglieder",
"meta": {
"description": "Überprüfen Sie die Ein- und Ausgänge des Vertrauensnetzes der freien Währung Ğ1"
},
"mot": "Wort oder Ausdruck",
"noeud": {
"desc": "Computer, der die Duniter-Software verwendet, um an der Blockchain teilzunehmen. Ein Mitgliedsknoten kann neue Blöcke erstellen und wird von einem rechnenden Mitglied zur Verfügung gestellt, während ein Nicht-Mitgliedsknoten keine neuen Blöcke erstellen kann und an der Ausfallsicherheit des Netzwerks teilnimmt",
"title": "Knoten"
},
"nom": "Name",
"non": "Nein",
"oui": "Ja",
"params": {
"breadcrumb": "Parameter",
"name": {
"avgGenTime": "Erhofft durchschnittliche Zeit zum Schreiben eines Blocks",
"c": "Relatives Wachstum der UD für jeden Zeitraum <code>dtReeval</code>",
"dt": "Zeitraum zwischen 2 UD",
"dtDiffEval": "Anzahl Blöcke, die vor einer erneuten Bewertung der Mindestschwierigkeit des Proof of Work erforderlich sind",
"dtReeval": "Zeitraum zwischen zwei Neubewertungen der UD",
"idtyWindow": "Maximale Zeitraum, der eine Identität im Pool warten kann, bevor sie wegen Nichtschreibens in einem Block zurückgewiesen wird",
"medianTimeBlocks": "Anzahl Blöcke, die für die Berechnung der Durchschnittszeit verwendet werden",
"msPeriod": "Mindestzeitraum zwischen 2 Beitrittsanträgen für dieselbe Person",
"msValidity": "Maximale Dauer einer Mitgliedschaft",
"msWindow": "Maximale Zeitraum, der eine Identität im Pool warten kann, bevor sie wegen Nichtschreibens in einem Block zurückgewiesen wird",
"percentRot": "Anteil der berechnenden Mitglieder, die nicht vom Proof of Work ausgeschlossen sind",
"sigPeriod": "Mindestzeitraum zwischen zwei Zertifizierungen desselben Ausstellers",
"sigQty": "Mindestanzahl an erhaltenen Zertifizierungen, um Teil des Vertrauensnetzes zu sein",
"sigReplay": "Mindestzeitraum vor einer möglichen Erneuerung einer Zertifizierung",
"sigStock": "Maximale Anzahl aktiver Zertifizierungen, die pro Mitglied ausgestellt werden können",
"sigValidity": "Lebensdauer einer aktiven Zertifizierung",
"sigWindow": "Maximale Zeitraum, der eine Identität im Pool warten kann, bevor sie wegen Nichtschreibens in einem Block zurückgewiesen wird",
"stepMax": "Maximale Distanz zwischen einem Mitglied und <code>xpercent</code> der referierenden Mitglieder",
"txWindow": "Maximale Zeitraum, der eine Transaktion im Pool warten kann, bevor sie wegen Nichtschreibens in einem Block zurückgewiesen wird",
"ud0": "Betrag der ursprünglichen Universaldividende",
"udReevalTime0": "Datum der ersten Neubewertung der UD",
"udTime0": "Datum der ersten DU",
"xpercent": "Mindestprozentsatz an referierenden Mitgliedern, der erreicht werden muss, um die Abstandsregel einzuhalten"
},
"title": "Blockchain-Parameter"
},
"piscine": {
"desc": "Datensatz, der von den Knoten gespeichert wird und auf seiner Validierung wartet, bevor er in einen Block geschrieben wird. Wenn die Daten unvollständig bleiben oder ungültig sind, werden sie schließlich vergessen.",
"title": "Pool"
},
"pow": {
"desc": "Lösung eines komplexen mathematischen Problems durch einen Computer, die es ihm ermöglicht, die Authentizität der Daten zu gewährleisten, die er einer Blockkette anbietet.",
"title": "Proof of Work (dt. Arbeitsnachweis)"
},
"previsions": {
"futureentries": " Zukünftige Beitritte",
"futureexits": "Zukünfitge Austritte",
"pardate": "Prognosen nach Datum",
"parmembre": "Prognosen nach Mitglieder",
"period": {
"desc": "Wählen Sie die gewünschte Anzahl an Tagen",
"title": "Suchzeitraum"
},
"title": "Prognosen"
},
"pubkey": "Öffentlicher Schlüssel",
"recherche": {
"desc": {
"lexicon": "Suche im Lexikon",
"member": "Geben Sie den Anfang eines Pseudonyms oder eines öffentlichen Schlüssels ein"
},
"effacer": "Löschen Sie Ihre Suche",
"title": "Ihre Suche"
},
"revocation": {
"desc": "Freiwillige oder unfreiwillige Aufgabe eines Mitgliedskontos. Der Widerruf kann freiwillig durch die Widerrufsdatei erfolgen oder unfreiwillig aufgrund fehlender Zertifizierungen oder der Nichtverlängerung der Mitgliedschaft. Der Widerruf zerstört nicht die Gelder, die sich auf dem Mitgliedskonto befinden, deaktiviert aber die Ko-Produktion der Universaldividende.",
"title": "Widerruf"
},
"revoila": "Hier sind sie wieder",
"slogan": "Der Zauberer des Vertrauensnetzes",
"statut": {
"allcertif": "5 Zertifizierungen erhalten",
"bientotmanquecertif": "Bald wenig Zertifizierungen",
"manquecertif": "Zu wenig Zertifizierungen",
"member": "Mitglied",
"missing": "Verlorene Mitgliedschaft",
"newcomer": "Zukünftiges Mitglied",
"renew": "Zu verlängernde Mitgliedschaft",
"revoked": "Widerrufenes Mitglied",
"title": "Status"
},
"suivis": {
"ajouter": "Zu den Favoriten hinzufügen",
"alert": {
"btn": "Finden Sie Ihre Identität",
"desc": "Bitte geben Sie ein Mitglied als Ihre Identität an, indem Sie auf die Schaltfläche « Ich bin dieses Mitglied » klicken.",
"title": "Sie sind noch nicht registriert"
},
"confirm": "Sind Sie sicher ?",
"display": {
"all": "Alles sehen",
"out": "Nur zu überwachende Profile anzeigen"
},
"enregistre": "In den Favoriten gespeichert!",
"enregistre_uid": "Schützen",
"iam": "Ich bin dieses Mitglied",
"iamnot": "Ich bin nicht dieses Mitglied",
"none": "Die Liste ist leer",
"supprime": "Aus den Favoriten entfernt!",
"supprimer": "Aus den Favoriten entfernen",
"supprimer_tous": "Alle Favoriten löschen",
"tabs": {
"certificateurs": "Meine Zertifizierer",
"certifies": "Meine Zertifizierten",
"favoris": "Meine Favoriten"
},
"title": "Meine Betreuung",
"use": "Nur meine Favoriten",
"voir_profil": "Siehe mein Profil"
},
"time": {
"a": "um"
},
"traitement": "In Bearbeitung",
"tri": {
"action": "Sortieren",
"pardate": "Nach Datum sortieren",
"parmembres": "Alphabetisch sortieren"
},
"trm": {
"desc": "Theorie, die zeigt, dass eine freie Währung mit einer Invarianzeigenschaft möglich ist und dass es nur eine Lösung für dieses Problem gibt: Eine Währung ist dann und nur dann frei, wenn sie räumlich und zeitlich gleichberechtigt von allen ihren Mitgliedern mitproduziert wird.",
"title": "Relativtheorie der Währung (RTW)"
},
"type": "Typ",
"uid": "Eindeutiger Bezeichner",
"valeur": "Wert",
"wot": {
"desc": "Gesamtheit der Mitglieder und der Zertifizierungen, die sie miteinander verbinden",
"title": "Vertrauensnetz"
},
"wotwizard": {
"nodeselect": "Wählen Sie einen Server"
}
}
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.