Add IPv4SubnettingTool

This commit is contained in:
Kevin Kandlbinder 2022-05-03 21:17:52 +02:00
parent 9ae40093e1
commit a078555835
9 changed files with 323 additions and 47 deletions

View file

@ -18,7 +18,8 @@
"categories": {
"everything": "Alles",
"cryptography": "Kryptografie",
"encodings": "Kodierungen"
"encodings": "Kodierungen",
"networking": "Netzwerke"
},
"cryptography": {
"common": {
@ -33,27 +34,40 @@
}
},
"encodings": {
"common": {
"encoded": "Kodiert",
"decoded": "Dekodiert"
},
"base64": {
"title": "Base64",
"description": "<wikipedia>Base64-Codierung</wikipedia> wird oft genutzt um beliebige Binärdaten in pure Zeichenfolgen zu schreiben, indem die Daten auf 64 ASCII-Zeichen projeziert werden."
},
"numberbase": {
"title": "Basis-Konverter",
"description": "Basis-Konverter konvertiert Zahlen in eine andere Basis (z.B. Binär, Hexadezimal, etc.)",
"decimal": "Dezimal",
"binary": "Binär",
"octal": "Oktal",
"hexadecimal": "Hexadezimal",
"nanWarning": "Die Eingabe ist keine gültige Zahl!"
},
"urlencode": {
"title": "URL-Kodierung",
"description": "Kodiere und dekodiere <wikipedia>URL-kodierte (or Prozent-kodierte)</wikipedia> Zeichenfolgen."
}
"common": {
"encoded": "Kodiert",
"decoded": "Dekodiert"
},
"base64": {
"title": "Base64",
"description": "<wikipedia>Base64-Codierung</wikipedia> wird oft genutzt um beliebige Binärdaten in pure Zeichenfolgen zu schreiben, indem die Daten auf 64 ASCII-Zeichen projeziert werden."
},
"numberbase": {
"title": "Basis-Konverter",
"description": "Basis-Konverter konvertiert Zahlen in eine andere Basis (z.B. Binär, Hexadezimal, etc.)",
"decimal": "Dezimal",
"binary": "Binär",
"octal": "Oktal",
"hexadecimal": "Hexadezimal",
"nanWarning": "Die Eingabe ist keine gültige Zahl!"
},
"urlencode": {
"title": "URL-Kodierung",
"description": "Kodiere und dekodiere <wikipedia>URL-kodierte (or Prozent-kodierte)</wikipedia> Zeichenfolgen."
}
},
"networking": {
"ipv4subnetting": {
"title": "IPv4-Subnetzrechner",
"description": "Der IPv4-Subnetzrechner visualisiert IPv4-Subnetze und berechnet die erste und letzte Adresse aus einem Subnetz nach CIDR-Notation."
},
"common": {
"ipv4addr": "IPv4-Adresse",
"firstAddr": "Erste Adresse",
"lastAddr": "Letzte Adresse",
"subnetMask": "Subnetzmaske",
"binary": "Binär"
}
}
},
"about": {

View file

@ -18,7 +18,8 @@
"categories": {
"everything": "Everything",
"cryptography": "Cryptography",
"encodings": "Encodings"
"encodings": "Encodings",
"networking": "Networking"
},
"cryptography": {
"common": {
@ -33,27 +34,40 @@
}
},
"encodings": {
"common": {
"encoded": "Encoded",
"decoded": "Decoded"
},
"base64": {
"title": "Base64",
"description": "<wikipedia>Base64-encoding</wikipedia> is commonly used for storing arbitrary binary data in pure strings, by mapping it to 64 ASCII characters."
},
"numberbase": {
"title": "Base Converter",
"description": "Convert between decimal, binary, octal and hexadecimal numbers.",
"decimal": "Decimal",
"binary": "Binary",
"octal": "Octal",
"hexadecimal": "Hexadecimal",
"nanWarning": "The input is not a valid number!"
},
"urlencode": {
"title": "URL-Encoding",
"description": "Encode and decode strings to and from <wikipedia>URL-encoding (or Percent-encoding)</wikipedia>."
}
"common": {
"encoded": "Encoded",
"decoded": "Decoded"
},
"base64": {
"title": "Base64",
"description": "<wikipedia>Base64-encoding</wikipedia> is commonly used for storing arbitrary binary data in pure strings, by mapping it to 64 ASCII characters."
},
"numberbase": {
"title": "Base Converter",
"description": "Convert between decimal, binary, octal and hexadecimal numbers.",
"decimal": "Decimal",
"binary": "Binary",
"octal": "Octal",
"hexadecimal": "Hexadecimal",
"nanWarning": "The input is not a valid number!"
},
"urlencode": {
"title": "URL-Encoding",
"description": "Encode and decode strings to and from <wikipedia>URL-encoding (or Percent-encoding)</wikipedia>."
}
},
"networking": {
"ipv4subnetting": {
"title": "IPv4 Subnetter",
"description": "The IPv4 subnetter visualizes IPv4 subnets and calculates the first and last address from a CIDR-notated subnet."
},
"common": {
"ipv4addr": "IPv4 address",
"firstAddr": "First address",
"lastAddr": "Last address",
"subnetMask": "Subnet mask",
"binary": "Binary"
}
}
},
"about": {