Flatten create structure
Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
BIN
advotracker_client/static/fonts/MaterialIcons.ttf
Normal file
BIN
advotracker_client/static/fonts/MaterialIcons.ttf
Normal file
Binary file not shown.
BIN
advotracker_client/static/images/hiedemann_logo.png
Normal file
BIN
advotracker_client/static/images/hiedemann_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
BIN
advotracker_client/static/images/networkx_logo.png
Normal file
BIN
advotracker_client/static/images/networkx_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
28
advotracker_client/static/index.html
Normal file
28
advotracker_client/static/index.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" name="viewport" />
|
||||
<style>@font-face { font-family: 'MaterialIcons-Regular'; src: url('fonts/MaterialIcons.ttf'); } </style>
|
||||
<link rel='preload' as='font' href='fonts/MaterialIcons.ttf'>
|
||||
<script>
|
||||
var Module = {};
|
||||
var __cargo_web = {};
|
||||
Object.defineProperty( Module, 'canvas', {
|
||||
get: function() {
|
||||
if( __cargo_web.canvas ) {
|
||||
return __cargo_web.canvas;
|
||||
}
|
||||
var canvas = document.createElement( 'canvas' );
|
||||
// document.querySelector( 'body' ).appendChild( canvas );
|
||||
__cargo_web.canvas = canvas;
|
||||
return canvas;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<script src="advotracker.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,32 @@
|
||||
// *
|
||||
// * advotracker - Hotline tackingtool for Advocats
|
||||
// *
|
||||
// * Copyright 2020 Ralf Zerres <ralf.zerres@networkx.de>
|
||||
// * SPDX-License-Identifier: (0BSD or MIT)
|
||||
// */
|
||||
|
||||
// the language class
|
||||
Dictionary (
|
||||
// the map of active identifiers
|
||||
// like a struct, but keys are also values instead of just beenig identifiers
|
||||
words: {
|
||||
// policycheck_view
|
||||
"Policy number validation": "Versicherungsnummern Prüfung",
|
||||
"Policy number": "Versicherungsnummer",
|
||||
"Checklist elements: ": "Prüflistenelemente: ",
|
||||
"Check result": "Prüfungsergebnis",
|
||||
"Importing data": "Importiere Datensätze",
|
||||
"Processing time": "Bearbeitungszeit",
|
||||
"Policy number is to long": "Die Nummer ist zu lang",
|
||||
"Policy number is to short": "Die Nummer ist zu kurz",
|
||||
"The given policy number is invalid": "Die Versicherungsnumber ist ungültig",
|
||||
"The given policy number is valid": "Die Versicherungsnumber ist gültig",
|
||||
"Only numbers are valid": "Nur Nummern sind zulässig",
|
||||
// localization
|
||||
"Hello": "Hallo",
|
||||
"User": "Anwender",
|
||||
"Localization dialog": "Lokalisierungs-Dialog",
|
||||
"German": "Deutsch",
|
||||
"English": "Englisch"
|
||||
}
|
||||
)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
Reference in New Issue
Block a user