-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
1500 lines (1493 loc) · 81.2 KB
/
Copy pathtest.js
File metadata and controls
1500 lines (1493 loc) · 81.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
prism.run(['$q', '$http', function ($q, $http) {
/* Translations definition - start */
var translationsGlobal =
{
"de": {
"dashboards": {
"Production Analytics" : "Produktionsanalysen",
"Production Analytics(1)" : "Produktionsanalysen(1)",
"Production Analytics(2)" : "Produktionsanalysen(2)",
"Production Analytics(3)" : "Produktionsanalysen(3)",
"Production Analytics(4)" : "Produktionsanalysen(4)",
"Production Analytics(1) (1)" : "Produktionsanalysen(1) (1)",
"Production Analytics(1) (2)" : "Produktionsanalysen(1) (2)",
"Production Analytics(1) (3)" : "Produktionsanalysen(1) (3)",
"Production Analytics(1) (4)" : "Produktionsanalysen(1) (4)",
"Production Analytics(2) (1)" : "Produktionsanalysen(2) (1)",
"Production Analytics(2) (2)" : "Produktionsanalysen(2) (2)",
"Production Analytics(2) (3)" : "Produktionsanalysen(2) (3)",
"Production Analytics(2) (4)" : "Produktionsanalysen(2) (4)",
"Production Analytics(3) (1)" : "Produktionsanalysen(3) (1)",
"Production Analytics(3) (2)" : "Produktionsanalysen(3) (2)",
"Production Analytics(3) (3)" : "Produktionsanalysen(3) (3)",
"Production Analytics(3) (4)" : "Produktionsanalysen(3) (4)",
"Production Analytics(4) (1)" : "Produktionsanalysen(4) (1)",
"Production Analytics(4) (2)" : "Produktionsanalysen(4) (2)",
"Production Analytics(4) (3)" : "Produktionsanalysen(4) (3)",
"Production Analytics(4) (4)" : "Produktionsanalysen(4) (4)"
}
},
"en": {
"dashboards": {
"Production Analytics" : "Production Analytics",
"Production Analytics(1)" : "Production Analytics(1)",
"Production Analytics(2)" : "Production Analytics(2)",
"Production Analytics(3)" : "Production Analytics(3)",
"Production Analytics(4)" : "Production Analytics(4)",
"Production Analytics(1) (1)" : "Production Analytics(1) (1)",
"Production Analytics(1) (2)" : "Production Analytics(1) (2)",
"Production Analytics(1) (3)" : "Production Analytics(1) (3)",
"Production Analytics(1) (4)" : "Production Analytics(1) (4)",
"Production Analytics(2) (1)" : "Production Analytics(2) (1)",
"Production Analytics(2) (2)" : "Production Analytics(2) (2)",
"Production Analytics(2) (3)" : "Production Analytics(2) (3)",
"Production Analytics(2) (4)" : "Production Analytics(2) (4)",
"Production Analytics(3) (1)" : "Production Analytics(3) (1)",
"Production Analytics(3) (2)" : "Production Analytics(3) (2)",
"Production Analytics(3) (3)" : "Production Analytics(3) (3)",
"Production Analytics(3) (4)" : "Production Analytics(3) (4)",
"Production Analytics(4) (1)" : "Production Analytics(4) (1)",
"Production Analytics(4) (2)" : "Production Analytics(4) (2)",
"Production Analytics(4) (3)" : "Production Analytics(4) (3)",
"Production Analytics(4) (4)" : "Production Analytics(4) (4)"
}
},
"es": {
"dashboards": {
"Production Analytics" : "Production Analytics",
"Production Analytics(1)" : "Production Analytics(1)",
"Production Analytics(2)" : "Production Analytics(2)",
"Production Analytics(3)" : "Production Analytics(3)",
"Production Analytics(4)" : "Production Analytics(4)",
"Production Analytics(1) (1)" : "Production Analytics(1) (1)",
"Production Analytics(1) (2)" : "Production Analytics(1) (2)",
"Production Analytics(1) (3)" : "Production Analytics(1) (3)",
"Production Analytics(1) (4)" : "Production Analytics(1) (4)",
"Production Analytics(2) (1)" : "Production Analytics(2) (1)",
"Production Analytics(2) (2)" : "Production Analytics(2) (2)",
"Production Analytics(2) (3)" : "Production Analytics(2) (3)",
"Production Analytics(2) (4)" : "Production Analytics(2) (4)",
"Production Analytics(3) (1)" : "Production Analytics(3) (1)",
"Production Analytics(3) (2)" : "Production Analytics(3) (2)",
"Production Analytics(3) (3)" : "Production Analytics(3) (3)",
"Production Analytics(3) (4)" : "Production Analytics(3) (4)",
"Production Analytics(4) (1)" : "Production Analytics(4) (1)",
"Production Analytics(4) (2)" : "Production Analytics(4) (2)",
"Production Analytics(4) (3)" : "Production Analytics(4) (3)",
"Production Analytics(4) (4)" : "Production Analytics(4) (4)"
}
},
"fr": {
"dashboards": {
"Production Analytics" : "Analyses de production",
"Production Analytics(1)" : "Analyses de production(1)",
"Production Analytics(2)" : "Analyses de production(2)",
"Production Analytics(3)" : "Analyses de production(3)",
"Production Analytics(4)" : "Analyses de production(4)",
"Production Analytics(1) (1)" : "Analyses de production(1) (1)",
"Production Analytics(1) (2)" : "Analyses de production(1) (2)",
"Production Analytics(1) (3)" : "Analyses de production(1) (3)",
"Production Analytics(1) (4)" : "Analyses de production(1) (4)",
"Production Analytics(2) (1)" : "Analyses de production(2) (1)",
"Production Analytics(2) (2)" : "Analyses de production(2) (2)",
"Production Analytics(2) (3)" : "Analyses de production(2) (3)",
"Production Analytics(2) (4)" : "Analyses de production(2) (4)",
"Production Analytics(3) (1)" : "Analyses de production(3) (1)",
"Production Analytics(3) (2)" : "Analyses de production(3) (2)",
"Production Analytics(3) (3)" : "Analyses de production(3) (3)",
"Production Analytics(3) (4)" : "Analyses de production(3) (4)",
"Production Analytics(4) (1)" : "Analyses de production(4) (1)",
"Production Analytics(4) (2)" : "Analyses de production(4) (2)",
"Production Analytics(4) (3)" : "Analyses de production(4) (3)",
"Production Analytics(4) (4)" : "Analyses de production(4) (4)"
}
},
"it": {
"dashboards": {
"Production Analytics" : "Analisi produzione",
"Production Analytics(1)" : "Analisi produzione(1)",
"Production Analytics(2)" : "Analisi produzione(2)",
"Production Analytics(3)" : "Analisi produzione(3)",
"Production Analytics(4)" : "Analisi produzione(4)",
"Production Analytics(1) (1)" : "Analisi produzione(1) (1)",
"Production Analytics(1) (2)" : "Analisi produzione(1) (2)",
"Production Analytics(1) (3)" : "Analisi produzione(1) (3)",
"Production Analytics(1) (4)" : "Analisi produzione(1) (4)",
"Production Analytics(2) (1)" : "Analisi produzione(2) (1)",
"Production Analytics(2) (2)" : "Analisi produzione(2) (2)",
"Production Analytics(2) (3)" : "Analisi produzione(2) (3)",
"Production Analytics(2) (4)" : "Analisi produzione(2) (4)",
"Production Analytics(3) (1)" : "Analisi produzione(3) (1)",
"Production Analytics(3) (2)" : "Analisi produzione(3) (2)",
"Production Analytics(3) (3)" : "Analisi produzione(3) (3)",
"Production Analytics(3) (4)" : "Analisi produzione(3) (4)",
"Production Analytics(4) (1)" : "Analisi produzione(4) (1)",
"Production Analytics(4) (2)" : "Analisi produzione(4) (2)",
"Production Analytics(4) (3)" : "Analisi produzione(4) (3)",
"Production Analytics(4) (4)" : "Analisi produzione(4) (4)"
}
},
"ja": {
"dashboards": {
"Production Analytics" : "プロダクション分析",
"Production Analytics(1)" : "プロダクション分析(1)",
"Production Analytics(2)" : "プロダクション分析(2)",
"Production Analytics(3)" : "プロダクション分析(3)",
"Production Analytics(4)" : "プロダクション分析(4)",
"Production Analytics(1) (1)" : "プロダクション分析(1) (1)",
"Production Analytics(1) (2)" : "プロダクション分析(1) (2)",
"Production Analytics(1) (3)" : "プロダクション分析(1) (3)",
"Production Analytics(1) (4)" : "プロダクション分析(1) (4)",
"Production Analytics(2) (1)" : "プロダクション分析(2) (1)",
"Production Analytics(2) (2)" : "プロダクション分析(2) (2)",
"Production Analytics(2) (3)" : "プロダクション分析(2) (3)",
"Production Analytics(2) (4)" : "プロダクション分析(2) (4)",
"Production Analytics(3) (1)" : "プロダクション分析(3) (1)",
"Production Analytics(3) (2)" : "プロダクション分析(3) (2)",
"Production Analytics(3) (3)" : "プロダクション分析(3) (3)",
"Production Analytics(3) (4)" : "プロダクション分析(3) (4)",
"Production Analytics(4) (1)" : "プロダクション分析(4) (1)",
"Production Analytics(4) (2)" : "プロダクション分析(4) (2)",
"Production Analytics(4) (3)" : "プロダクション分析(4) (3)",
"Production Analytics(4) (4)" : "プロダクション分析(4) (4)"
}
},
"nl": {
"dashboards": {
"Production Analytics" : "Productieanalyse",
"Production Analytics(1)" : "Productieanalyse(1)",
"Production Analytics(2)" : "Productieanalyse(2)",
"Production Analytics(3)" : "Productieanalyse(3)",
"Production Analytics(4)" : "Productieanalyse(4)",
"Production Analytics(1) (1)" : "Productieanalyse(1) (1)",
"Production Analytics(1) (2)" : "Productieanalyse(1) (2)",
"Production Analytics(1) (3)" : "Productieanalyse(1) (3)",
"Production Analytics(1) (4)" : "Productieanalyse(1) (4)",
"Production Analytics(2) (1)" : "Productieanalyse(2) (1)",
"Production Analytics(2) (2)" : "Productieanalyse(2) (2)",
"Production Analytics(2) (3)" : "Productieanalyse(2) (3)",
"Production Analytics(2) (4)" : "Productieanalyse(2) (4)",
"Production Analytics(3) (1)" : "Productieanalyse(3) (1)",
"Production Analytics(3) (2)" : "Productieanalyse(3) (2)",
"Production Analytics(3) (3)" : "Productieanalyse(3) (3)",
"Production Analytics(3) (4)" : "Productieanalyse(3) (4)",
"Production Analytics(4) (1)" : "Productieanalyse(4) (1)",
"Production Analytics(4) (2)" : "Productieanalyse(4) (2)",
"Production Analytics(4) (3)" : "Productieanalyse(4) (3)",
"Production Analytics(4) (4)" : "Productieanalyse(4) (4)"
}
}
}
var translations = "";
{
"de": {
"tables": {
"Date" : "Datum",
"Error" : "Fehler",
"Job" : "Auftrag",
"Printer" : "Drucker",
"Shift" : "Schicht",
"State" : "Status",
"Clicks" : "Klicks"
},
"columns": {
"Date" : {
"Datum" : "Date",
}
"Error" : {
"Dauer" : "Duration",
"Fehler" : "Error",
"Fehlercode" : "Error Code",
"Start-Zeitstempel" : "Start Timestamp",
}
"Job" : {
"Kopien" : "Copies",
"Dauer" : "Duration",
"Engine-Nummer" : "Engine Number",
"Impressionen" : "Impressions",
"Auftrag-ID" : "Job ID",
"Auftragsname" : "Job Name",
"Auftragsgröße" : "Job Size",
"Auftragsstatus" : "Job State",
"Seiten" : "Pages",
"Druckseite" : "Printing Side",
"Start-Zeitstempel" : "Start Timestamp",
"Durchsatz" : "Throughput",
}
"Printer" : {
"Konto-ID" : "Account ID",
"Kontoname" : "Account Name",
"Data Collector" : "Data Collector",
"Druckername" : "Printer Name",
"Druckertyp" : "Printer Type",
}
"Shift" : {
"Schichtname" : "Shift Name",
}
"State" : {
"Dauer" : "Duration",
"Engine-Nummer" : "Engine Number",
"Druckerstatus" : "Printer State",
"Start-Zeitstempel" : "Start Timestamp",
}
"Clicks" : {
"Gesamt" : "Total",
"Schwarzweiß" : "Black & White",
"Vollfarbe" : "Full Color",
"Einzel-/2-farbig" : "Single/2 Color",
}
},
"titles": {
"Shifts" : "Schichten",
"Printers" : "Drucker",
"Data Collectors" : "Data Collectors",
"Days" : "Tage",
"Date" : "Datum"
},
"formulas": {
"Up time" : "Aktive Zeit",
"Down time" : "Ausfallzeit",
"Idle time" : "Leerlauf",
"Daily Average" : "Tagesdurchschnitt",
"Best Daily" : "Tagesbestwert",
"Best Weekly" : "Wochenbestwert",
"Best Monthly" : "Monatsbestwert",
"Jobs Printed" : "Gedruckte Aufträge",
"Jobs Aborted" : "Abgebrochene Aufträge",
"Printer Impressions" : "Druckerimpressionen",
"Printer Throughput" : "Druckerdurchsatz",
"Shift Impressions" : "Impressionen pro Schicht",
"Shift Throughput" : "Durchsatz pro Schicht",
"Throughput (Feet)" : "Durchsatz (Fuß)",
"Throughput (Meters)" : "Durchsatz (Meter)",
"Throughput (Sheets)" : "Durchsatz (Blätter)",
"Throughput (Impressions)" : "Durchsatz (Impressionen)",
"Total Throughput" : "Gesamtdurchsatz",
"Total Impressions" : "Gesamtimpressionen",
"Total Clicks" : "Gesamtklicks",
"Black & White Clicks" : "Klicks Schwarzweiß",
"Full-Color Clicks" : "Klicks Vollfarbe",
"Single/2-Color Clicks" : "Klicks Einzel/2-farbig",
"Daily Impressions" : "Tägliche Impressionen",
"Impressions" : "Impressionen",
"Feet" : "Fuß",
"Meters" : "Meter",
"Sheets" : "Blätter",
"Years" : "Jahre",
"Quarters" : "Quartale",
"Months" : "Monate",
"Weeks" : "Wochen",
"Days" : "Tage",
"Hours" : "Stunden",
"Minutes" : "Minuten",
"Seconds" : "Sekunden",
"Jobs" : "Aufträge",
"Clicks" : "Klicks",
"Aborted" : "Abgebrochen",
"Printed" : "Gedruckt"
},
"widgets": {
"Printer Status" : "Druckerstatus"
"Device Status" : "Gerätestatus"
"Finisher Status" : "Finisherstatus"
"Daily Utilization" : "Tägliche Verwendung"
"Weekly Utilization" : "Wöchentliche Verwendung"
"Monthly Utilization" : "Monatliche Verwendung"
"Printer Utilization" : "Druckerverwendung"
"Finisher Utilization" : "Finisherverwendung"
"Device Utilization" : "Geräteverwendung"
"Jobs Printed Today" : "Heute gedruckte Jobs"
"Clicks Today" : "Heutige Klicks"
"Daily Impressions" : "Tägliche Impressionen"
"Daily Throughput" : "Täglicher Durchsatz"
"Daily Clicks" : "Tägliche Klicks"
"Daily Throughput (Feet)" : "Täglicher Durchsatz (Fuß)"
"Daily Throughput (Meters)" : "Täglicher Durchsatz (Meter)"
"Daily Throughput (Sheets)" : "Täglicher Durchsatz (Blätter)"
"Weekly Impressions" : "Wöchentliche Impressionen"
"Weekly Throughput" : "Wöchentlicher Durchsatz"
"Weekly Clicks" : "Wöchentliche Klicks"
"Weekly Throughput (Feet)" : "Wöchentlicher Durchsatz (Fuß)"
"Weekly Throughput (Meters)" : "Wöchentlicher Durchsatz (Meter)"
"Weekly Throughput (Sheets)" : "Wöchentlicher Durchsatz (Blätter)"
"Monthly Impressions" : "Monatliche Impressionen"
"Monthly Throughput" : "Monatlicher Durchsatz"
"Monthly Clicks" : "Monatliche Klicks"
"Monthly Throughput (Feet)" : "Monatlicher Durchsatz (Fuß)"
"Monthly Throughput (Meters)" : "Monatlicher Durchsatz (Meter)"
"Monthly Throughput (Sheets)" : "Monatlicher Durchsatz (Blätter)"
"Clicks per Printer" : "Klicks pro Drucker"
"Daily Clicks per Printer" : "Tägliche Klicks pro Drucker"
"Monthly Clicks per Printer" : "Monatliche Klicks pro Drucker"
"Printer Throughput (Impressions)" : "Druckerdurchsatz (Impressionen)"
"Printer Throughput" : "Druckerdurchsatz"
"Printer Throughput (Feet)" : "Druckerdurchsatz (Fuß)"
"Printer Throughput (Meters)" : "Druckerdurchsatz (Meter)"
"Printer Throughput (Sheets)" : "Druckerdurchsatz (Blätter)"
"Shift Throughput (Impressions)" : "Durchsatz pro Schicht (Impressionen)"
"Shift Throughput" : "Durchsatz pro Schicht"
"Shift Throughput (Feet)" : "Durchsatz pro Schicht (Fuß)"
"Shift Throughput (Meters)" : "Durchsatz pro Schicht (Meter)"
"Shift Throughput (Sheets)" : "Durchsatz pro Schicht (Blätter)"
"Jobs Printed per Printer" : "Gedruckte Aufträge pro Drucker"
"Jobs Printed per Shift" : "Gedruckte Aufträge pro Schicht"
"Total Throughput - Peak Hours" : "Gesamtdurchsatz - Spitzenstunden"
"Total Throughput (Feet) - Peak Hours" : "Gesamtdurchsatz (Fuß) - Spitzenstunden"
"Total Throughput (Meters) - Peak Hours" : "Gesamtdurchsatz (Meter) - Spitzenstunden"
"Total Throughput (Sheets) - Peak Hours" : "Gesamtdurchsatz (Blätter) - Spitzenstunden"
"Total Impressions - Peak Hours" : "Gesamtimpressionen - Spitzenstunden"
"Throughput - Best & Worst Calendar Days" : "Durchsatz - beste und schlechteste Kalendertage"
"Throughput (Feet) - Best & Worst Calendar Days" : "Durchsatz (Fuß) - beste und schlechteste Kalendertage"
"Throughput (Meters) - Best & Worst Calendar Days" : "Durchsatz (Meter) - beste und schlechteste Kalendertage"
"Throughput (Sheets) - Best & Worst Calendar Days" : "Durchsatz (Blätter) - beste und schlechteste Kalendertage"
"Throughput (Impressions) - Best & Worst Calendar Days" : "Durchsatz (Impressionen) - Beste und schlechteste Kalendertage"
"Text" : "Text"
"Untitled" : "Ohne Titel"
"Jobs Printed / Aborted" : "Gedruckte/abgebrochene Aufträge"
"Jobs 1-sided / 2-sided" : "Einseitige/zweiseitige Aufträge"
"Speed" : "Geschwindigkeit"
"Speed (Pages/Min)" : "Geschwindigkeit (Seiten/Min)"
"Speed (Sheets/Min)" : "Geschwindigkeit (Blätter/Min)"
"Speed (Feet/Min)" : "Geschwindigkeit (Fuß/Min)"
"Speed (Meters/Min)" : "Geschwindigkeit (Meter/Min)"
"Highest Speed" : "Höchste Geschwindigkeit"
"Highest Speed (Pages/Min)" : "Höchste Geschwindigkeit (Seiten/Min)"
"Highest Speed (Sheets/Min)" : "Höchste Geschwindigkeit (Blätter/Min)"
"Highest Speed (Feet/Min)" : "Höchste Geschwindigkeit (Fuß/Min)"
"Highest Speed (Meters/Min)" : "Höchste Geschwindigkeit (Meter/Min)"
"Humidity" : "Feuchtigkeit"
"Temperature" : "Temperatur"
"Temperature (Celsius)" : "Temperatur (Celsius)"
"Temperature (Fahrenheit)" : "Temperatur (Fahrenheit)"
"Highest Temperature" : "Höchste Temperatur"
"Highest Temperature (Celsius)" : "Höchste Temperatur (Celsius)"
"Highest Temperature (Fahrenheit)" : "Höchste Temperatur (Fahrenheit)"
"Humidity Peaks" : "Feuchtigkeitsspitzen"
"Speed Peaks" : "Geschwindigkeitsspitzen"
"Temperature Peaks" : "Temperaturspitzen"
}
},
"en": {
"tables": {
"Date" : "Date",
"Error" : "Error",
"Job" : "Job",
"Printer" : "Printer",
"Shift" : "Shift",
"State" : "State",
"Clicks" : "Clicks"
},
"columns": {
"Date" : {
"Date" : "Date",
}
"Error" : {
"Duration" : "Duration",
"Error" : "Error",
"Error Code" : "Error Code",
"Start Timestamp" : "Start Timestamp",
}
"Job" : {
"Copies" : "Copies",
"Duration" : "Duration",
"Engine Number" : "Engine Number",
"Impressions" : "Impressions",
"Job ID" : "Job ID",
"Job Name" : "Job Name",
"Job Size" : "Job Size",
"Job State" : "Job State",
"Pages" : "Pages",
"Printing Side" : "Printing Side",
"Start Timestamp" : "Start Timestamp",
"Throughput" : "Throughput",
}
"Printer" : {
"Account ID" : "Account ID",
"Account Name" : "Account Name",
"Data Collector" : "Data Collector",
"Printer Name" : "Printer Name",
"Printer Type" : "Printer Type",
}
"Shift" : {
"Shift Name" : "Shift Name",
}
"State" : {
"Duration" : "Duration",
"Engine Number" : "Engine Number",
"Printer State" : "Printer State",
"Start Timestamp" : "Start Timestamp",
}
"Clicks" : {
"Total" : "Total",
"Black & White" : "Black & White",
"Full Color" : "Full Color",
"Single/2 Color" : "Single/2 Color",
}
},
"titles": {
"Shifts" : "Shifts",
"Printers" : "Printers",
"Data Collectors" : "Data Collectors",
"Days" : "Days",
"Date" : "Date"
},
"formulas": {
"Up time" : "Up time",
"Down time" : "Down time",
"Idle time" : "Idle time",
"Daily Average" : "Daily Average",
"Best Daily" : "Best Daily",
"Best Weekly" : "Best Weekly",
"Best Monthly" : "Best Monthly",
"Jobs Printed" : "Jobs Printed",
"Jobs Aborted" : "Jobs Aborted",
"Printer Impressions" : "Printer Impressions",
"Printer Throughput" : "Printer Throughput",
"Shift Impressions" : "Shift Impressions",
"Shift Throughput" : "Shift Throughput",
"Throughput (Feet)" : "Throughput (Feet)",
"Throughput (Meters)" : "Throughput (Meters)",
"Throughput (Sheets)" : "Throughput (Sheets)",
"Throughput (Impressions)" : "Throughput (Impressions)",
"Total Throughput" : "Total Throughput",
"Total Impressions" : "Total Impressions",
"Total Clicks" : "Total Clicks",
"Black & White Clicks" : "Black & White Clicks",
"Full-Color Clicks" : "Full-Color Clicks",
"Single/2-Color Clicks" : "Single/2-Color Clicks",
"Daily Impressions" : "Daily Impressions",
"Impressions" : "Impressions",
"Feet" : "Feet",
"Meters" : "Meters",
"Sheets" : "Sheets",
"Years" : "Years",
"Quarters" : "Quarters",
"Months" : "Months",
"Weeks" : "Weeks",
"Days" : "Days",
"Hours" : "Hours",
"Minutes" : "Minutes",
"Seconds" : "Seconds",
"Jobs" : "Jobs",
"Clicks" : "Clicks",
"Aborted" : "Aborted",
"Printed" : "Printed"
},
"widgets": {
"Printer Status" : "Printer Status"
"Device Status" : "Device Status"
"Finisher Status" : "Finisher Status"
"Daily Utilization" : "Daily Utilization"
"Weekly Utilization" : "Weekly Utilization"
"Monthly Utilization" : "Monthly Utilization"
"Printer Utilization" : "Printer Utilization"
"Finisher Utilization" : "Finisher Utilization"
"Device Utilization" : "Device Utilization"
"Jobs Printed Today" : "Jobs Printed Today"
"Clicks Today" : "Clicks Today"
"Daily Impressions" : "Daily Impressions"
"Daily Throughput" : "Daily Throughput"
"Daily Clicks" : "Daily Clicks"
"Daily Throughput (Feet)" : "Daily Throughput (Feet)"
"Daily Throughput (Meters)" : "Daily Throughput (Meters)"
"Daily Throughput (Sheets)" : "Daily Throughput (Sheets)"
"Weekly Impressions" : "Weekly Impressions"
"Weekly Throughput" : "Weekly Throughput"
"Weekly Clicks" : "Weekly Clicks"
"Weekly Throughput (Feet)" : "Weekly Throughput (Feet)"
"Weekly Throughput (Meters)" : "Weekly Throughput (Meters)"
"Weekly Throughput (Sheets)" : "Weekly Throughput (Sheets)"
"Monthly Impressions" : "Monthly Impressions"
"Monthly Throughput" : "Monthly Throughput"
"Monthly Clicks" : "Monthly Clicks"
"Monthly Throughput (Feet)" : "Monthly Throughput (Feet)"
"Monthly Throughput (Meters)" : "Monthly Throughput (Meters)"
"Monthly Throughput (Sheets)" : "Monthly Throughput (Sheets)"
"Clicks per Printer" : "Clicks per Printer"
"Daily Clicks per Printer" : "Daily Clicks per Printer"
"Monthly Clicks per Printer" : "Monthly Clicks per Printer"
"Printer Throughput (Impressions)" : "Printer Throughput (Impressions)"
"Printer Throughput" : "Printer Throughput"
"Printer Throughput (Feet)" : "Printer Throughput (Feet)"
"Printer Throughput (Meters)" : "Printer Throughput (Meters)"
"Printer Throughput (Sheets)" : "Printer Throughput (Sheets)"
"Shift Throughput (Impressions)" : "Shift Throughput (Impressions)"
"Shift Throughput" : "Shift Throughput"
"Shift Throughput (Feet)" : "Shift Throughput (Feet)"
"Shift Throughput (Meters)" : "Shift Throughput (Meters)"
"Shift Throughput (Sheets)" : "Shift Throughput (Sheets)"
"Jobs Printed per Printer" : "Jobs Printed per Printer"
"Jobs Printed per Shift" : "Jobs Printed per Shift"
"Total Throughput - Peak Hours" : "Total Throughput - Peak Hours"
"Total Throughput (Feet) - Peak Hours" : "Total Throughput (Feet) - Peak Hours"
"Total Throughput (Meters) - Peak Hours" : "Total Throughput (Meters) - Peak Hours"
"Total Throughput (Sheets) - Peak Hours" : "Total Throughput (Sheets) - Peak Hours"
"Total Impressions - Peak Hours" : "Total Impressions - Peak Hours"
"Throughput - Best & Worst Calendar Days" : "Throughput - Best & Worst Calendar Days"
"Throughput (Feet) - Best & Worst Calendar Days" : "Throughput (Feet) - Best & Worst Calendar Days"
"Throughput (Meters) - Best & Worst Calendar Days" : "Throughput (Meters) - Best & Worst Calendar Days"
"Throughput (Sheets) - Best & Worst Calendar Days" : "Throughput (Sheets) - Best & Worst Calendar Days"
"Throughput (Impressions) - Best & Worst Calendar Days" : "Throughput (Impressions) - Best & Worst Calendar Days"
"Text" : "Text"
"Untitled" : "Untitled"
"Jobs Printed / Aborted" : "Jobs Printed / Aborted"
"Jobs 1-sided / 2-sided" : "Jobs 1-sided / 2-sided"
"Speed" : "Speed"
"Speed (Pages/Min)" : "Speed (Pages/Min)"
"Speed (Sheets/Min)" : "Speed (Sheets/Min)"
"Speed (Feet/Min)" : "Speed (Feet/Min)"
"Speed (Meters/Min)" : "Speed (Meters/Min)"
"Highest Speed" : "Highest Speed"
"Highest Speed (Pages/Min)" : "Highest Speed (Pages/Min)"
"Highest Speed (Sheets/Min)" : "Highest Speed (Sheets/Min)"
"Highest Speed (Feet/Min)" : "Highest Speed (Feet/Min)"
"Highest Speed (Meters/Min)" : "Highest Speed (Meters/Min)"
"Humidity" : "Humidity"
"Temperature" : "Temperature"
"Temperature (Celsius)" : "Temperature (Celsius)"
"Temperature (Fahrenheit)" : "Temperature (Fahrenheit)"
"Highest Temperature" : "Highest Temperature"
"Highest Temperature (Celsius)" : "Highest Temperature (Celsius)"
"Highest Temperature (Fahrenheit)" : "Highest Temperature (Fahrenheit)"
"Humidity Peaks" : "Humidity Peaks"
"Speed Peaks" : "Speed Peaks"
"Temperature Peaks" : "Temperature Peaks"
}
},
"es": {
"tables": {
"Date" : "Fecha",
"Error" : "Error",
"Job" : "Trabajo",
"Printer" : "Impresora",
"Shift" : "Turno",
"State" : "Estado",
"Clicks" : "Copias"
},
"columns": {
"Date" : {
"Fecha" : "Date",
}
"Error" : {
"Duración" : "Duration",
"Error" : "Error",
"Código de error" : "Error Code",
"Marca de tiempo de inicio" : "Start Timestamp",
}
"Job" : {
"Copias" : "Copies",
"Duración" : "Duration",
"Número de motor" : "Engine Number",
"Impresiones" : "Impressions",
"ID del trabajo" : "Job ID",
"Nombre del trabajo" : "Job Name",
"Tamaño del trabajo" : "Job Size",
"Estado del trabajo" : "Job State",
"Páginas" : "Pages",
"Cara de impresión" : "Printing Side",
"Marca de tiempo de inicio" : "Start Timestamp",
"Productividad" : "Throughput",
}
"Printer" : {
"ID de la cuenta" : "Account ID",
"Nombre de la cuenta" : "Account Name",
"Data Collector" : "Data Collector",
"Nombre de impresora" : "Printer Name",
"Tipo de impresora" : "Printer Type",
}
"Shift" : {
"Nombre del turno" : "Shift Name",
}
"State" : {
"Duración" : "Duration",
"Número de motor" : "Engine Number",
"Estado de la impresora" : "Printer State",
"Marca de tiempo de inicio" : "Start Timestamp",
}
"Clicks" : {
"Total" : "Total",
"Blanco y negro" : "Black & White",
"A todo color" : "Full Color",
"1/2 color(es)" : "Single/2 Color",
}
},
"titles": {
"Shifts" : "Turnos",
"Printers" : "Impresoras",
"Data Collectors" : "Recopiladores de datos",
"Days" : "Días",
"Date" : "Fecha"
},
"formulas": {
"Up time" : "Tiempo en activo",
"Down time" : "Tiempo en inactivo",
"Idle time" : "Tiempo en reposo",
"Daily Average" : "Media diaria",
"Best Daily" : "Mejor diaria",
"Best Weekly" : "Mejor semanal",
"Best Monthly" : "Mejor mensual",
"Jobs Printed" : "Trabajos impresos",
"Jobs Aborted" : "Trabajos cancelados",
"Printer Impressions" : "Impresiones de la impresora",
"Printer Throughput" : "Productividad de la impresora",
"Shift Impressions" : "Impresiones del turno",
"Shift Throughput" : "Productividad del turno",
"Throughput (Feet)" : "Productividad (pies)",
"Throughput (Meters)" : "Productividad (metros)",
"Throughput (Sheets)" : "Productividad (hojas)",
"Throughput (Impressions)" : "Productividad (impresiones)",
"Total Throughput" : "Productividad total",
"Total Impressions" : "Total de impresiones",
"Total Clicks" : "Total de copias",
"Black & White Clicks" : "Copias en blanco y negro",
"Full-Color Clicks" : "Copias a todo color",
"Single/2-Color Clicks" : "Copias a 1/2 color(es)",
"Daily Impressions" : "Impresiones diarias",
"Impressions" : "Impresiones",
"Feet" : "Pies",
"Meters" : "Metros",
"Sheets" : "Hojas",
"Years" : "Años",
"Quarters" : "Trimestres",
"Months" : "Meses",
"Weeks" : "Semanas",
"Days" : "Días",
"Hours" : "Horas",
"Minutes" : "Minutos",
"Seconds" : "Segundos",
"Jobs" : "Trabajos",
"Clicks" : "Copias",
"Aborted" : "Cancelado",
"Printed" : "Impreso"
},
"widgets": {
"Printer Status" : "Estado de la impresora"
"Device Status" : "Estado del dispositivo"
"Finisher Status" : "Estado del dispositivo de acabado"
"Daily Utilization" : "Utilización diaria"
"Weekly Utilization" : "Utilización semanal"
"Monthly Utilization" : "Utilización mensual"
"Printer Utilization" : "Utilización de la impresora"
"Finisher Utilization" : "Utilización del dispositivo de acabado"
"Device Utilization" : "Utilización del dispositivo"
"Jobs Printed Today" : "Trabajos impresos hoy"
"Clicks Today" : "Copias hoy"
"Daily Impressions" : "Impresiones diarias"
"Daily Throughput" : "Productividad diaria"
"Daily Clicks" : "Copias diarias"
"Daily Throughput (Feet)" : "Productividad diaria (pies)"
"Daily Throughput (Meters)" : "Productividad diaria (metros)"
"Daily Throughput (Sheets)" : "Productividad diaria (hojas)"
"Weekly Impressions" : "Impresiones semanales"
"Weekly Throughput" : "Productividad semanal"
"Weekly Clicks" : "Copias semanales"
"Weekly Throughput (Feet)" : "Productividad semanal (pies)"
"Weekly Throughput (Meters)" : "Productividad semanal (metros)"
"Weekly Throughput (Sheets)" : "Productividad semanal (hojas)"
"Monthly Impressions" : "Impresiones mensuales"
"Monthly Throughput" : "Productividad mensual"
"Monthly Clicks" : "Copias mensuales"
"Monthly Throughput (Feet)" : "Productividad mensual (pies)"
"Monthly Throughput (Meters)" : "Productividad mensual (metros)"
"Monthly Throughput (Sheets)" : "Productividad mensual (hojas)"
"Clicks per Printer" : "Copias por impresora"
"Daily Clicks per Printer" : "Copias diarias por impresora"
"Monthly Clicks per Printer" : "Copias mensuales por impresora"
"Printer Throughput (Impressions)" : "Productividad de la impresora (impresiones)"
"Printer Throughput" : "Productividad de la impresora"
"Printer Throughput (Feet)" : "Productividad de la impresora (pies)"
"Printer Throughput (Meters)" : "Productividad de la impresora (metros)"
"Printer Throughput (Sheets)" : "Productividad de la impresora (hojas)"
"Shift Throughput (Impressions)" : "Productividad del turno (impresiones)"
"Shift Throughput" : "Productividad del turno"
"Shift Throughput (Feet)" : "Productividad del turno (pies)"
"Shift Throughput (Meters)" : "Productividad del turno (metros)"
"Shift Throughput (Sheets)" : "Productividad del turno (hojas)"
"Jobs Printed per Printer" : "Trabajos impresos por impresora"
"Jobs Printed per Shift" : "Trabajos impresos por turno"
"Total Throughput - Peak Hours" : "Productividad total - Horas punta"
"Total Throughput (Feet) - Peak Hours" : "Productividad total (pies) - Horas punta"
"Total Throughput (Meters) - Peak Hours" : "Productividad total (metros) - Horas punta"
"Total Throughput (Sheets) - Peak Hours" : "Productividad total (hojas) - Horas punta"
"Total Impressions - Peak Hours" : "Total de impresiones - Horas punta"
"Throughput - Best & Worst Calendar Days" : "Productividad - Mejores y peores días naturales"
"Throughput (Feet) - Best & Worst Calendar Days" : "Productividad (pies) - Mejores y peores días naturales"
"Throughput (Meters) - Best & Worst Calendar Days" : "Productividad (metros) - Mejores y peores días naturales"
"Throughput (Sheets) - Best & Worst Calendar Days" : "Productividad (hojas) - Mejores y peores días naturales"
"Throughput (Impressions) - Best & Worst Calendar Days" : "Productividad (impresiones) - Mejores y peores días naturales"
"Text" : "Texto"
"Untitled" : "Sin título"
"Jobs Printed / Aborted" : "Trabajos impresos / cancelados"
"Jobs 1-sided / 2-sided" : "Trabajos a 1 cara / 2 caras"
"Speed" : "Velocidad"
"Speed (Pages/Min)" : "Velocidad (Páginas/min)"
"Speed (Sheets/Min)" : "Velocidad (Hojas/min)"
"Speed (Feet/Min)" : "Velocidad (Pies/min)"
"Speed (Meters/Min)" : "Velocidad (Metros/min)"
"Highest Speed" : "Velocidad máxima"
"Highest Speed (Pages/Min)" : "Velocidad máxima (Páginas/min)"
"Highest Speed (Sheets/Min)" : "Velocidad máxima (Hojas/min)"
"Highest Speed (Feet/Min)" : "Velocidad máxima (Pies/min)"
"Highest Speed (Meters/Min)" : "Velocidad máxima (Metros/min)"
"Humidity" : "Humedad"
"Temperature" : "Temperatura"
"Temperature (Celsius)" : "Temperatura (Celsius)"
"Temperature (Fahrenheit)" : "Temperatura (Fahrenheit)"
"Highest Temperature" : "Temperatura máxima"
"Highest Temperature (Celsius)" : "Temperatura máxima (Celsius)"
"Highest Temperature (Fahrenheit)" : "Temperatura máxima (Fahrenheit)"
"Humidity Peaks" : "Picos de humedad"
"Speed Peaks" : "Picos de velocidad"
"Temperature Peaks" : "Picos de temperatura"
}
},
"fr": {
"tables": {
"Date" : "Date",
"Error" : "Erreur",
"Job" : "Travail",
"Printer" : "Imprimante",
"Shift" : "Équipe",
"State" : "État",
"Clicks" : "Clics"
},
"columns": {
"Date" : {
"Date" : "Date",
}
"Error" : {
"Durée" : "Duration",
"Erreur" : "Error",
"Code d'erreur" : "Error Code",
"Horodatage de début" : "Start Timestamp",
}
"Job" : {
"Copies" : "Copies",
"Durée" : "Duration",
"Numéro de moteur" : "Engine Number",
"Impressions" : "Impressions",
"ID travail" : "Job ID",
"Nom du travail" : "Job Name",
"Taille du travail" : "Job Size",
"État du travail" : "Job State",
"Pages" : "Pages",
"Face d'impression" : "Printing Side",
"Horodatage de début" : "Start Timestamp",
"Débit" : "Throughput",
}
"Printer" : {
"ID compte" : "Account ID",
"Nom du compte" : "Account Name",
"Collecteur de données" : "Data Collector",
"Nom de l'imprimante" : "Printer Name",
"Type d'imprimante" : "Printer Type",
}
"Shift" : {
"Nom de l'équipe" : "Shift Name",
}
"State" : {
"Durée" : "Duration",
"Numéro de moteur" : "Engine Number",
"État de l'imprimante" : "Printer State",
"Horodatage de début" : "Start Timestamp",
}
"Clicks" : {
"Total" : "Total",
"Noir et blanc" : "Black & White",
"Pleine couleur" : "Full Color",
"Une/deux couleurs" : "Single/2 Color",
}
},
"titles": {
"Shifts" : "Équipes",
"Printers" : "Imprimantes",
"Data Collectors" : "Collecteurs de données",
"Days" : "Jours",
"Date" : "Date"
},
"formulas": {
"Up time" : "Temps de fonctionnement",
"Down time" : "Temps d'arrêt",
"Idle time" : "Temps d'inactivité",
"Daily Average" : "Moyenne quotidienne",
"Best Daily" : "Meilleur du jour",
"Best Weekly" : "Meilleur de la semaine",
"Best Monthly" : "Meilleur du mois",
"Jobs Printed" : "Nb de travaux imprimés",
"Jobs Aborted" : "Nb de travaux abandonnés",
"Printer Impressions" : "Impressions de l'imprimante",
"Printer Throughput" : "Débit de l'imprimante",
"Shift Impressions" : "Impressions de l'équipe",
"Shift Throughput" : "Débit de l'équipe",
"Throughput (Feet)" : "Débit (pieds)",
"Throughput (Meters)" : "Débit (mètres)",
"Throughput (Sheets)" : "Débit (feuilles)",
"Throughput (Impressions)" : "Débit (impressions)",
"Total Throughput" : "Débit total",
"Total Impressions" : "Nb total d'impressions",
"Total Clicks" : "Total clics",
"Black & White Clicks" : "Clics noir et blanc",
"Full-Color Clicks" : "Clics pleine couleur",
"Single/2-Color Clicks" : "Clics une/deux couleurs",
"Daily Impressions" : "Impressions quotidiennes",
"Impressions" : "Impressions",
"Feet" : "Pieds",
"Meters" : "Mètres",
"Sheets" : "Feuilles",
"Years" : "Années",
"Quarters" : "Trimestres",
"Months" : "Mois",
"Weeks" : "Semaines",
"Days" : "Jours",
"Hours" : "Heures",
"Minutes" : "Minutes",
"Seconds" : "Secondes",
"Jobs" : "Travaux",
"Clicks" : "Clics",
"Aborted" : "Abandonnés",
"Printed" : "Imprimés"
},
"widgets": {
"Printer Status" : "État de l'imprimante"
"Device Status" : "État du périphérique"
"Finisher Status" : "État du finisseur"
"Daily Utilization" : "Utilisation quotidienne"
"Weekly Utilization" : "Utilisation hebdomadaire"
"Monthly Utilization" : "Utilisation mensuelle"
"Printer Utilization" : "Utilisation de l'imprimante"
"Finisher Utilization" : "Utilisation du finisseur"
"Device Utilization" : "Utilisation du périphérique"
"Jobs Printed Today" : "Impressions du jour"
"Clicks Today" : "Clics aujourd'hui"
"Daily Impressions" : "Impressions quotidiennes"
"Daily Throughput" : "Débit quotidien"
"Daily Clicks" : "Clics quotidiens"
"Daily Throughput (Feet)" : "Débit quotidien (pieds)"
"Daily Throughput (Meters)" : "Débit quotidien (mètres)"
"Daily Throughput (Sheets)" : "Débit quotidien (feuilles)"
"Weekly Impressions" : "Impressions hebdomadaires"
"Weekly Throughput" : "Débit hebdomadaire"
"Weekly Clicks" : "Clics hebdomadaires"
"Weekly Throughput (Feet)" : "Débit hebdomadaire (pieds)"
"Weekly Throughput (Meters)" : "Débit hebdomadaire (mètres)"
"Weekly Throughput (Sheets)" : "Débit hebdomadaire (feuilles)"
"Monthly Impressions" : "Impressions mensuelles"
"Monthly Throughput" : "Débit mensuel"
"Monthly Clicks" : "Clics mensuels"
"Monthly Throughput (Feet)" : "Débit mensuel (pieds)"
"Monthly Throughput (Meters)" : "Débit mensuel (mètres)"
"Monthly Throughput (Sheets)" : "Débit mensuel (feuilles)"
"Clicks per Printer" : "Clics par imprimante"
"Daily Clicks per Printer" : "Clics quotidiens par imprimante"
"Monthly Clicks per Printer" : "Clics mensuels par imprimante"
"Printer Throughput (Impressions)" : "Débit de l'imprimante (impressions)"
"Printer Throughput" : "Débit de l'imprimante"
"Printer Throughput (Feet)" : "Débit de l'imprimante (pieds)"
"Printer Throughput (Meters)" : "Débit de l'imprimante (mètres)"
"Printer Throughput (Sheets)" : "Débit de l'imprimante (feuilles)"
"Shift Throughput (Impressions)" : "Débit de l'équipe (impressions)"
"Shift Throughput" : "Débit de l'équipe"
"Shift Throughput (Feet)" : "Débit de l'équipe (pieds)"
"Shift Throughput (Meters)" : "Débit de l'équipe (mètres)"
"Shift Throughput (Sheets)" : "Débit de l'équipe (feuilles)"
"Jobs Printed per Printer" : "Nb de travaux imprimés par imprimante"
"Jobs Printed per Shift" : "Nb de travaux imprimés par équipe"
"Total Throughput - Peak Hours" : "Débit total - Heures pleines"
"Total Throughput (Feet) - Peak Hours" : "Débit total (pieds) - Heures pleines"
"Total Throughput (Meters) - Peak Hours" : "Débit total (mètres) - Heures pleines"
"Total Throughput (Sheets) - Peak Hours" : "Débit total (feuilles) - Heures pleines"
"Total Impressions - Peak Hours" : "Nb total d'impressions - Heures pleines"
"Throughput - Best & Worst Calendar Days" : "Débit - Meilleur et pire jours calendaires"
"Throughput (Feet) - Best & Worst Calendar Days" : "Débit (pieds) - Meilleur et pire jours calendaires"
"Throughput (Meters) - Best & Worst Calendar Days" : "Débit (mètres) - Meilleur et pire jours calendaires"
"Throughput (Sheets) - Best & Worst Calendar Days" : "Débit (feuilles) - Meilleur et pire jours calendaires"
"Throughput (Impressions) - Best & Worst Calendar Days" : "Débit (impressions) – Meilleur et pire jour calendaire"
"Text" : "Texte"
"Untitled" : "Sans titre"
"Jobs Printed / Aborted" : "Nb de travaux imprimés / abandonnés"
"Jobs 1-sided / 2-sided" : "Nb de travaux recto / recto verso"
"Speed" : "Vitesse"
"Speed (Pages/Min)" : "Vitesse (Pages/Min)"
"Speed (Sheets/Min)" : "Vitesse (Feuilles/Min)"
"Speed (Feet/Min)" : "Vitesse (Pieds/Min)"
"Speed (Meters/Min)" : "Vitesse (Mètres/Min)"
"Highest Speed" : "Vitesse maximale"
"Highest Speed (Pages/Min)" : "Vitesse maximale (Pages/Min)"
"Highest Speed (Sheets/Min)" : "Vitesse maximale (Feuilles/Min)"
"Highest Speed (Feet/Min)" : "Vitesse maximale (Pieds/Min)"
"Highest Speed (Meters/Min)" : "Vitesse maximale (Mètres/Min)"
"Humidity" : "Humidité"
"Temperature" : "Température"
"Temperature (Celsius)" : "Température (Celsius)"
"Temperature (Fahrenheit)" : "Température (Fahrenheit)"
"Highest Temperature" : "Température maximale"
"Highest Temperature (Celsius)" : "Température maximale (Celsius)"
"Highest Temperature (Fahrenheit)" : "Température maximale (Fahrenheit)"
"Humidity Peaks" : "Pics d'humidité"
"Speed Peaks" : "Pics de vitesse"
"Temperature Peaks" : "Pics de température"
}
},
"it": {
"tables": {
"Date" : "Data",
"Error" : "Errore",
"Job" : "Processo",
"Printer" : "Stampante",
"Shift" : "Turno",
"State" : "Stato",
"Clicks" : "Clic"
},
"columns": {
"Date" : {
"Data" : "Date",
}
"Error" : {
"Durata" : "Duration",
"Errore" : "Error",
"Codice errore" : "Error Code",
"Avvia Timestamp" : "Start Timestamp",
}
"Job" : {
"Copie" : "Copies",
"Durata" : "Duration",
"Numero motore" : "Engine Number",
"Impressioni" : "Impressions",
"ID processo" : "Job ID",
"Nome processo" : "Job Name",
"Dimensione processo" : "Job Size",
"Stato processo" : "Job State",
"Pagine" : "Pages",
"Lato stampa" : "Printing Side",
"Avvia Timestamp" : "Start Timestamp",
"Throughput" : "Throughput",
}
"Printer" : {
"ID account" : "Account ID",
"Nome account" : "Account Name",
"Raccolta dati" : "Data Collector",
"Nome stampante" : "Printer Name",
"Tipo stampante" : "Printer Type",
}
"Shift" : {
"Nome turno" : "Shift Name",
}
"State" : {
"Durata" : "Duration",
"Numero motore" : "Engine Number",
"Stato stampante" : "Printer State",
"Avvia Timestamp" : "Start Timestamp",
}
"Clicks" : {
"Totale" : "Total",
"Bianco e nero" : "Black & White",
"Colori" : "Full Color",
"Monocolore/Bicolore" : "Single/2 Color",
}
},
"titles": {
"Shifts" : "Turni",
"Printers" : "Stampanti",
"Data Collectors" : "Raccolte dati",
"Days" : "Giorni",
"Date" : "Data"
},
"formulas": {
"Up time" : "Tempo di attività",