-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
de.html
1563 lines (1535 loc) · 111 KB
/
de.html
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
<!DOCTYPE html><html lang="de"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" i18next-key="description" content="Als Lokalisierungs- und Übersetzungsmanagement-Plattform ermöglicht locize, den Entwicklungs- und Übersetzungsprozess zu trennen.">
<meta name="author" content="inweso GmbH">
<meta name="copyright" content="inweso GmbH">
<meta name="keywords" content="localization,internationalization,localize,translate,locize,l10n,i18n,javascript,nodejs,localization as a service,saas translation,saas localization,laas,continuous localization,DevOps,process,free,website localization,service,software,web app,web,mobile,desktop,game,translation management,online,automate,process of localization,localization process,translation service,localization service,translation software,landing page,javascript localize,localization tool,localizing a website,localization solution,cloud localization,cloud translation,serverless,cloud,cdn,react,react.js,reactjs,next,next.js,nextjs,angular,vue,vue-js,jquery,nodejs,i18next,json,api,react-native,localization api,translation api,app localization services,localization management platform,localization platform,professional translation and localization services,website translation management,app localization service,online translation management,i18next translation management,i18next translation,manage translations,manage translation files">
<script type="text/javascript">
if (self === top) {
var antiClickjack = document.getElementById("antiClickjack");
if (antiClickjack && antiClickjack.parentNode) antiClickjack.parentNode.removeChild(antiClickjack);
} else {
top.location = self.location;
}
</script>
<link rel="alternate" href="https://locize.com/de.html" hreflang="de">
<link rel="alternate" href="https://locize.com/it.html" hreflang="it">
<link rel="alternate" href="https://locize.com/?lng=en" hreflang="en">
<link rel="alternate" href="https://locize.com/" hreflang="x-default">
<meta property="og:type" content="website">
<meta property="og:title" content="Lokalisierungs- und Übersetzungsmanagement-Plattform | locize">
<meta property="og:url" content="https://locize.com">
<meta property="og:site_name" content="Lokalisierungs- und Übersetzungsmanagement-Plattform | locize">
<meta property="og:description" content="Als Lokalisierungs- und Übersetzungsmanagement-Plattform ermöglicht locize, den Entwicklungs- und Übersetzungsprozess zu trennen.">
<meta property="og:locale" content="de">
<meta property="og:image" content="img/locize_color.svg">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="locize - continuous localization as a service">
<meta name="twitter:description" content="locize - Bridging the gap between translation and development. With locize we remove the pain in the translation process. No more delays in shipping your software because of missing translations. Translator could keep up with changes from day one. The continuous localization process keeps up with your demanding business. Stop waiting - start localizing.">
<meta name="twitter:creator" content="@locize">
<meta name="slack-app-id" content="A71NM84Q6">
<title i18next-key="title">Lokalisierungs- und Übersetzungsmanagement-Plattform | locize</title>
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="lib/fontawesome/css/fontawesome.min.css">
<link rel="stylesheet" href="lib/fontawesome/css/brands.min.css">
<link rel="stylesheet" href="lib/fontawesome/css/solid.min.css">
<link rel="stylesheet" href="lib/fontawesome/css/regular.min.css">
<link rel="stylesheet" href="lib/simple-line-icons/css/simple-line-icons.css">
<link rel="stylesheet" href="lib/device-mockups/device-mockups.min.css">
<link href="css/main.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css">
<!--if lt IE 9
script(src='https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js')
script(src='https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js')
-->
<!-- LOCIZIFY-->
<script src="https://cdn.jsdelivr.net/npm/locizify@6.0.9"></script>
<script>
window.locizifySSG = function () {
document.querySelector('meta[property="og:title"]').setAttribute("content", locizify.i18next.t('title'));
document.querySelector('meta[property="og:site_name"]').setAttribute("content", locizify.i18next.t('title'));
document.querySelector('meta[property="og:description"]').setAttribute("content", locizify.i18next.t('description'));
document.querySelector('meta[property="og:locale"]').setAttribute("content", locizify.i18next.resolvedLanguage);
}
locizify.i18next.on('initialized', window.locizifySSG);
locizify.init({ lng: 'de',
//- saveMissing: true,
fallbackLng: 'en',
load: 'languageOnly',
//- debug: true,
backend: {
projectId: '3d0aa5aa-4660-4154-b6d9-907dbef10bb2',
apiKey: 'key', // only needed if you like to add missing segments
referenceLng: 'en',
version: 'production',
autoPilot: true
},
editor: {
bodyStyle: 'width: calc(100% - 505px);'
},
namespace: 'landingpage'
});
</script>
<link href="//cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" rel="stylesheet" type="text/css">
<style></style></head>
<body id="page-top">
<nav class="navbar navbar-default navbar-fixed-top" id="mainNav" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="navbar-header" i18next-orgval-1="
" i18next-orgval-4="
" localized="">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" localized=""><span class="sr-only" i18next-orgval-0="Toggle navigation" localized="">Navigation öffnen</span><i class="fa-solid fa-bars" localized=""></i></button><a class="navbar-brand page-scroll" href="/#page-top" localized=""></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<ul class="nav navbar-nav navbar-right" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" i18next-orgval-13="
" i18next-orgval-15="
" localized="">
<li class="dropdown" id="featuresd" i18next-orgval-2="
" i18next-orgval-4="
" localized=""><a class="dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" i18next-orgval-1="Features" localized="">Funktionen<b class="caret" localized=""></b></a>
<ul class="dropdown-menu" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" localized="">
<li localized=""><a href="/#features" i18next-orgval-0="Characteristics" localized="">Merkmale</a></li>
<li localized=""><a href="/#process" i18next-orgval-0="What is the software localization process?" localized="">Was ist der Software-Lokalisierungsprozess?</a></li>
<li localized=""><a href="/#platform" i18next-orgval-0="What can our localization platform do?" localized="">Was kann unsere Lokalisierungsplattform?</a></li>
<li localized=""><a href="/how-it-works.html" i18next-orgval-0="How it works" localized="">So funktioniert's</a></li>
<li localized=""><a href="/for-your-team.html" i18next-orgval-0="For your team" localized="">Für dein Team</a></li>
</ul>
</li>
<li localized=""><a href="/pricing.html" i18next-orgval-0="Pricing" localized="">Kosten</a></li>
<li localized=""><a href="/customers.html" i18next-orgval-0="Success Stories" localized="">Erfolgsgeschichten</a></li>
<li class="dropdown" id="featuresd" i18next-orgval-2="
" i18next-orgval-4="
" localized=""><a class="dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" i18next-orgval-1="More" localized="">Mehr<b class="caret" localized=""></b></a>
<ul class="dropdown-menu" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" localized="">
<li localized=""><a href="https://docs.locize.com/" i18next-orgval-0="Documentation" localized="">Dokumentation</a></li>
<li localized=""><a href="/services.html" i18next-orgval-0="Additional services" localized="">Zusätzliche Dienste</a></li>
<li i18next-orgval-1=" " localized=""> <a href="/blog/" i18next-orgval-0="Blog" localized="">Blog</a></li>
<li localized=""><a class="closeOnClick" href="/#contact" i18next-orgval-0="Contact" localized="">Kontakt</a></li>
</ul>
</li>
<li localized=""><a href="https://www.locize.app/login" target="_blank" i18next-orgval-1="Login" localized="">Einloggen<i class="fa-solid fa-lock" aria-hidden="true" style="margin-left: 5px;" localized=""></i></a></li>
<li localized=""><a class="btn btn-outline btn-xl" href="https://www.locize.app/register" style="background-color: #4caf50; color: white; border: none;" i18next-orgval-0="Start your free trial" localized="">Starten Sie die kostenlose Testperiode</a></li>
<li class="dropdown" translated=""><a class="dropdown-toggle" href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span id="selectedLng"></span><span class="caret" style="margin-top: -3px;"></span></a>
<ul class="dropdown-menu" id="lngSelectDropDown"></ul>
</li>
</ul>
</div>
</div>
</nav>
<header i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="header-overlay" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div id="particles-js" localized=""></div>
<div class="container" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-sm-8" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="header-content" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="header-content-inner" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-12="
" i18next-orgval-15="
" i18next-orgval-22="
" localized=""><img id="brand-logo" src="img/locize_white.svg" style="max-width: 300px; margin-bottom: 30px;" alt="locize logo" loading="lazy" alt-i18next-orgval="locize logo" localized="">
<h1 i18next-orgval-0="The continuous localization management platform that powers up your development and translation" localized="">Die Plattform für kontinuierliches Lokalisierungsmanagement, welche Ihre Entwicklung und Übersetzung vorantreibt</h1>
<h3 i18next-key="whatIsLocize" i18next-orgval-0="Bridging the gap between translation and development with locize, a modern and affordable localization-management-platform. It makes your website, app, game or whatever your project is, global, vibrant, and more engaging especially when unleashing the continuous localization capabilities." localized="">Schliessen Sie die Lücke zwischen Übersetzung und Entwicklung mit locize, einer modernen und erschwinglichen Plattform für das Übersetzungsmanagement. Dadurch wird Ihre Website, App, Spiel oder was auch immer Ihr Projekt ist, globaler, dynamischer und ansprechender, insbesondere wenn Sie die Continuous Localization Funktionen nutzen.</h3><br localized=""><a class="btn btn-outline btn-xl page-scroll" href="https://www.locize.app/register" style="background-color: #4caf50; color: white; border: none;" i18next-orgval-0="Start your free trial" localized="">Starten Sie die kostenlose Testperiode</a><a class="btn btn-outline btn-second-outline btn-xl page-scroll" id="link-video-btn" href="https://youtu.be/YQryHo1iHb8" target="_blank" i18next-orgval-0="Story" localized="">Story</a><a class="btn btn-outline btn-second-outline btn-xl page-scroll" id="watch-video-btn" style="display: none;" href="#" data-toggle="modal" data-target="#videoModal" data-thevideo="https://www.youtube-nocookie.com/embed/YQryHo1iHb8?rel=0&controls=0&showinfo=0" i18next-orgval-0="Story" localized="">Story</a><a class="btn btn-outline btn-second-outline btn-xl page-scroll" id="link-demo-video-btn" href="https://youtu.be/TFV_vhJs5DY" target="_blank" i18next-orgval-0="Demo" localized="">Demo</a><a class="btn btn-outline btn-second-outline btn-xl page-scroll" id="watch-demo-video-btn" style="display: none;" href="#" data-toggle="modal" data-target="#videoModal" data-thevideo="https://www.youtube-nocookie.com/embed/TFV_vhJs5DY?rel=0&controls=0&showinfo=0" i18next-orgval-0="Demo" localized="">Demo</a>
<h3 i18next-key="whatIsLocizeI18next" style="font-size: 18px; font-weight: bold;" i18next-orgval-1="The translation management system created by the creators of " i18next-orgval-3=". Designed for every type of i18n framework." localized="">Das von den Machern von <a href="/i18next.html" style="color: white;" i18next-orgval-0="i18next" localized="">i18next</a> erstellte Übersetzungsverwaltungssystem. Entwickelt für jede Art von i18n-Framework.</h3><br localized="">
<h3 style="font-size: 16px; font-weight: bold;" i18next-orgval-0="🇨🇭 Made available to you by a Swiss company." localized="">🇨🇭 Von einem Schweizer Unternehmen für Sie bereitgestellt.</h3><br localized=""><a id="capterra-badge" style="margin-right: 5px;" target="_blank" href="https://www.capterra.com/p/180753/Locize/?utm_source=vendor&utm_medium=badge&utm_campaign=capterra_reviews_badge" localized=""><img style="height: 60px;" border="0" src="https://assets.capterra.com/badge/e6c39eb5c72904eb7aa9a17d0c5f291f.svg?v=2126198&p=180753" localized=""></a><a id="capterra-badge" style="margin-right: 5px;" target="_blank" href="https://crozdesk.com/software/locize" localized=""><img style="height: 60px;" border="0" src="img/badges/crozdesk.webp" localized=""></a><br localized=""><br localized="">
</div>
</div>
</div>
<div class="col-sm-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<h3 id="typed-element" style="margin-top: -60px; height: 130px; padding-top: 20px; padding-bottom: 20px" data-locize-editor-ignore="true" i18next-orgval-0=" " localized=""> </h3>
<div class="device" data-device="iPhone15ProNoNotch" data-orientation="portrait" data-color="black" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="screen" localized=""><img class="img-responsive" src="img/screenshots/iphone/localization-management-platform.png" alt="Übersetzungsverwaltungsplattform" loading="lazy" alt-i18next-orgval="localization management platform" localized=""></div>
<!-- .button-->
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="customers customers-logos" id="customers" translated="">
<div class="container" style="min-width: 100%;">
<div class="row">
<section class="col-lg-12 slider" id="customers-slider" data-arrows="true" style="padding: 0;" data-locize-editor-ignore="true">
<div class="slide"><img class="grayscale" data-lazy="img/customers/2captcha.png" alt="2captcha"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/abb.png" alt="abb"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/airtime.png" alt="airtime"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/airtm.png" alt="airtm"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/alchemist.png" alt="alchemist"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/appointedd.png" alt="appointedd"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/atroo.png" alt="atroo"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/barntools.png" alt="barntools"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/beelance.png" alt="beelance"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/bethesda.png" alt="bethesda"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/biteful.png" alt="biteful"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/bookingfactory.png" alt="bookingfactory"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/bookingmood.png" alt="bookingmood"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/carina.png" alt="carina"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/carvertical.png" alt="carvertical"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/catena.png" alt="catena"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/chax.png" alt="chax"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/chilldev.png" alt="chilldev"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/cirplus.png" alt="cirplus"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/classnet.png" alt="classnet"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/clevy.png" alt="clevy"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/coherent.png" alt="coherent"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/creadi.png" alt="creadi"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/czapp.jpg" alt="czapp"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/czarnikow.jpg" alt="czarnikow"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/dig-it-ally.png" alt="dig-it-ally"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/edzo.png" alt="edzo"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/elephantlearning.png" alt="elephantlearning"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/etranslate.png" alt="etranslate"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/fideli.jpg" alt="fideli"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/finfollow.png" alt="finfollow"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/finreg.png" alt="finreg"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/foratable.png" alt="foratable"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/frontdesk24.png" alt="frontdesk24"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/fubotv.png" alt="fubotv"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/gamerefinery.png" alt="gamerefinery"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/geoimpact.png" alt="geoimpact"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/gr8tech.png" alt="gr8tech"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/hipi.png" alt="hipi"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/hypertrend.png" alt="hypertrend"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/inmed.png" alt="inmed"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/iw_tech.png" alt="iw_tech"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/juicar.png" alt="juicar"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/ke-chain.png" alt="ke-chain"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/kleberli.png" alt="kleberli"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/lappeliten.png" alt="lappeliten"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/logiscool.png" alt="logiscool"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/ludwig.png" alt="ludwig"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/lynk.png" alt="lynk"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/maul.png" alt="maul"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/mergevr.png" alt="mergevr"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/nakipower.png" alt="nakipower"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/namelabels.png" alt="namelabels"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/networkme.png" alt="networkme"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/nfctron.png" alt="nfctron"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/ocasta.png" alt="ocasta"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/outscraper.png" alt="outscraper"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/packlink.png" alt="packlink"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/panelista.png" alt="panelista"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/phaver.png" alt="phaver"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/photogram.png" alt="photogram"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/pigknows.png" alt="pigknows"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/pilotene.png" alt="pilotene"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/pitchler.png" alt="pitchler"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/pool.png" alt="pool"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/powerapi.png" alt="powerapi"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/produal.png" alt="produal"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/psktr.png" alt="psktr"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/qool.rent.png" alt="qool.rent"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/quotepro.png" alt="quotepro"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/rduce.png" alt="rduce"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/realadvisor.png" alt="realadvisor"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/rebill.png" alt="rebill"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/redcross.png" alt="redcross"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/retraced.png" alt="retraced"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/richland.jpeg" alt="richland"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/schoolparrot.png" alt="schoolparrot"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/scouty.png" alt="scouty"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/shiftcrypto.png" alt="shiftcrypto"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/shoprepublic.png" alt="shoprepublic"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/simbase.png" alt="simbase"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/skodel.png" alt="skodel"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/span.png" alt="span"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/spiff3d.png" alt="spiff3d"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/spt.png" alt="spt"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/syarah.png" alt="syarah"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/tegoly.png" alt="tegoly"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/tontine.png" alt="tontine"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/vgpro.png" alt="vgpro"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/watchduty.png" alt="watchduty"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/wavy.png" alt="wavy"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/willskill.png" alt="willskill"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/withlocals.png" alt="withlocals"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/wonderbox.png" alt="wonderbox"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/worldshopping.png" alt="worldshopping"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/wusoma.png" alt="wusoma"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/wuxus.png" alt="wuxus"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/zinsli.png" alt="zinsli"></div>
<div class="slide"><img class="grayscale" data-lazy="img/customers/zkb.png" alt="zkb"></div>
</section>
</div>
</div>
</section>
<section class="testimonials" id="testimonials" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" i18next-orgval-13="
" i18next-orgval-15="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="col-lg-12 text-center" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="section-heading" style="margin-bottom: 50px" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" localized="">
<h2 i18next-orgval-0="Customer Testimonials" localized="">Kundenreferenzen</h2>
<p class="text-muted" i18next-orgval-2=" what our customers have to say!" localized=""><a href="/customers.html" i18next-orgval-0="Hear" localized="">Hören Sie,</a> was unsere Kunden über uns sagen!</p>
<hr localized="">
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="col-lg-12" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="testimonial-container" translated="">
<div class="row">
<div class="col-lg-5 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/zkb.png" alt="ZKB" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 19px;">With the introduction of Locize, we had an overview of the status of translations or which text content still needed to be translated from the very beginning.</p>
<p style="font-size: 19px;">Thanks to the very flexible API, the current texts are integrated in every build (for technical reasons, ZKB cannot use an external CDN).</p>
<p style="font-size: 19px;">The handling is self-explanatory for translators.</p>
<p style="font-size: 19px;">Locize also has excellent support and very reasonable conditions.</p>
</div>
<div class="author">
<hr>Severin Dietschi, Product Owner<br><a href="https://www.zkb.ch" target="_blank">ZKB (Zürcher Kantonalbank)</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/redcross.svg" alt="redcross" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 26px;">Thanks to the generous support and the features of Locize, the headless websites of the Swiss Red Cross can be translated into different languages within a short time!</p>
</div>
<div class="author">
<hr>Thomas Imboden, Head of Web Office<br><a href="https://support.redcross.ch" target="_blank">Swiss Red Cross</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img style="max-height: 50px; max-width: 100%;" src="img/customers/abb.png" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 20px;">We're using Locize for several projects, which offers different services for our international partners in the whole world.</p>
<p style="font-size: 20px;">Thanks to Locize our localization workflow is faster, more efficient and modern.</p>
</div>
<div class="author">
<hr>Davide Mora, Digital Product Owner & Project Leader<br><a href="https://abb.com" target="_blank">ABB</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row" id="usps" style="margin-top: 50px;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="col-lg-12 text-center" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="section-heading" style="margin-bottom: 50px;" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" localized="">
<h3 style="font-size: 40px;" i18next-orgval-0="Why did our customers chose locize?" localized="">Warum haben sich unsere Kunden für locize entschieden?</h3>
<p class="text-muted" i18next-orgval-0="Discover the 9 most important reasons why our customers chose locize." localized="">Entdecken Sie die 9 wichtigsten Gründe, warum sich unsere Kunden für locize entschieden haben.</p>
<hr localized="">
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" localized="">
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-clock" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="Efficiency and Time Savings" localized="">Effizienz und Zeitersparnis</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Save time and streamline your translation and localization processes." localized="">Sparen Sie Zeit und optimieren Sie Ihre Übersetzungs- und Lokalisierungsprozesse.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="This was given the highest priority because many customers specifically highlighted how locize helped them save time and streamline their translation and localization processes. Efficiency is often a primary concern for businesses." localized="">Dies erhielt höchste Priorität, da viele Kunden ausdrücklich hervorhoben, wie locize ihnen dabei geholfen hat, Zeit zu sparen und ihre Übersetzungs- und Lokalisierungsprozesse zu optimieren. Effizienz ist für Unternehmen oft ein vorrangiges Anliegen.</p>
</div>
</div>
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-user" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="User-Friendly Interface" localized="">Benutzerfreundliches Benutzeroberfläche</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Accessible and practical interface for users of all technical backgrounds." localized="">Zugängliche und praktische Benutzeroberfläche für Benutzer aller technischen Hintergründe.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="The ease of use of locize's interface was ranked next because it directly impacts how accessible and practical the platform is for users, regardless of their technical background." localized="">Die Benutzerfreundlichkeit der Benutzeroberfläche von locize wurde als nächstes eingestuft, da sie sich direkt darauf auswirkt, wie zugänglich und praktisch die Plattform für Benutzer ist, unabhängig von ihrem technischen Hintergrund.</p>
</div>
</div>
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-dollar-sign" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="Cost-Effective Translation Management" localized="">Kostengünstiges Übersetzungsmanagement</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Save money and efficiently manage translations to get value for your investment." localized="">Sparen Sie Geld und verwalten Sie Übersetzungen effizient, um einen Mehrwert für Ihre Investition zu erzielen.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="Effective translation management is a core function of locize, and customers frequently mentioned it as a key benefit. The value provided by the locize justifies the cost." localized="">Effektives Übersetzungsmanagement ist eine Kernfunktion von locize und wird von Kunden häufig als Hauptvorteil genannt. Der vom locize bereitgestellte Wert rechtfertigt die Kosten.</p>
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" localized="">
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-puzzle-piece" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="Integration and Compatibility" localized="">Integration und Kompatibilität</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Seamlessly integrate with popular frameworks and libraries." localized="">Nahtlose Integration mit gängigen Frameworks und Bibliotheken.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="The ability to seamlessly integrate with popular frameworks and libraries is highly valued by developers and businesses, making it an important aspect. The excellent relationship with i18next is particularly important." localized="">Die Fähigkeit zur nahtlosen Integration in gängige Frameworks und Bibliotheken wird von Entwicklern und Unternehmen sehr geschätzt und ist daher ein wichtiger Aspekt. Besonders hervorzuheben ist die hervorragende Beziehung zu i18next.</p>
</div>
</div>
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-globe" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="Localization Across Platforms" localized="">Plattformübergreifende Lokalisierung</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Extend the usefulness with versatile localization across various platforms." localized="">Erweitern Sie den Nutzen durch vielseitige Lokalisierung auf verschiedenen Plattformen.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="This was prioritized because locize's versatility across various platforms extends its usefulness to a wider range of projects and industries." localized="">Dies wurde priorisiert, da die Vielseitigkeit von locize auf verschiedenen Plattformen seinen Nutzen auf ein breiteres Spektrum von Projekten und Branchen erweitert.</p>
</div>
</div>
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-language" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="High Quality Translations" localized="">Hochwertige Übersetzungen</h4>
<p style="font-size: 18px; margin-bottom: 0;" localized=""><span i18next-orgval-0="Trust in high-quality translations by professional translators." localized="">Vertrauen Sie auf hochwertige Übersetzungen von professionellen Übersetzern.</span><span i18next-orgval-0=" " localized=""> </span><a href="/ai.html" style="font-size: 14px;" i18next-orgval-0="Or use generative AI translations." localized="">Oder nutzen Sie generative KI-Übersetzungen.</a></p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="Machine or generative AI translation was noted as a valuable feature. For customers requiring high-quality human translations, it ranked slightly lower because it's not their primary focus." localized="">Als wertvolle Funktion wurde die maschinelle oder generative KI-Übersetzung genannt. Bei Kunden, die qualitativ hochwertige menschliche Übersetzungen benötigen, rangiert das Unternehmen etwas schlechter da, da dies nicht ihr Hauptaugenmerk ist.</p>
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" localized="">
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-sync" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="Real-time Updates" localized="">Echtzeit-Updates</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Stay current with real-time content updates." localized="">Bleiben Sie mit Inhaltsaktualisierungen in Echtzeit auf dem Laufenden.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="Real-time updates were seen as a valuable feature, particularly for content that needs to remain current." localized="">Echtzeit-Updates wurden als wertvolle Funktion angesehen, insbesondere für Inhalte, die aktuell bleiben müssen.</p>
</div>
</div>
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-hands-helping" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="Responsive Support" localized="">Reaktionsschneller Support</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Enjoy responsive support for your needs." localized="">Geniessen Sie reaktionsschnellen Support für Ihre Bedürfnisse.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="Good customer support is always appreciated and is often taken for granted as an expected service, but locize is exceptionally responsive." localized="">Guter Kundensupport wird immer geschätzt und oft als selbstverständlicher Service angesehen, aber locize ist aussergewöhnlich reaktionsschnell.</p>
</div>
</div>
<div class="col-lg-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" style="margin-bottom: 30px;" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-9="
" localized=""><i class="fas fa-cogs" style="color: #f76d57; font-size: 48px;" localized=""></i>
<h4 i18next-orgval-0="Scalability" localized="">Skalierbarkeit</h4>
<p style="font-size: 18px; margin-bottom: 0;" i18next-orgval-0="Scale your localization as your business grows." localized="">Skalieren Sie Ihre Lokalisierung, wenn Ihr Unternehmen wächst.</p>
<button class="additional-info-button" style="font-size: 10px;" localized=""><i class="fas fa-plus" style="font-size: 8px;" localized=""></i></button><p class="collapsible" style="font-size: 12px; display: none;" i18next-orgval-0="Scalability is important and it's assumed that any software tool should be able to scale with business needs. Locize is not only technically scalable, but thanks to the pricing model it also scales with your business model." localized="">Skalierbarkeit ist wichtig und es wird davon ausgegangen, dass jedes Softwaretool in der Lage sein sollte, sich an die Geschäftsanforderungen anzupassen. Locize ist nicht nur technisch skalierbar, sondern skaliert dank des Preismodells auch mit Ihrem Geschäftsmodell.</p>
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="col-lg-12 text-center" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div style="padding: 50px 0 0" localized=""><a class="btn btn-outline btn-xl" href="/customers.html" i18next-orgval-0="More customer voices!" localized="">Weitere Kundenstimmen!</a></div>
</div>
</div>
</div>
</section>
<section class="section-tertiary" style="padding: 50px 0; display: none;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="values-box" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" i18next-orgval-13="
" i18next-orgval-15="
" localized="">
<div class="value" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<h3 i18next-orgval-1="Speed up your development cycles." localized="">Beschleunigen Sie Ihre Entwicklungszyklen.<span i18next-orgval-0=" 🚀" localized=""> 🚀</span></h3>
</div>
<div class="value" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<h3 i18next-orgval-1="Decouple software releases from the translation work." localized="">Software-Release von der Übersetzungsarbeit entkoppeln.<span i18next-orgval-0=" ✂️" localized=""> ✂️</span></h3>
</div>
<div class="value" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<h3 i18next-orgval-1="Enable the agility also in your localization process." localized="">Aktivieren Sie die Agilität auch in Ihrem Lokalisierungsprozess.<span i18next-orgval-0=" 🩰" localized=""> 🩰</span></h3>
</div>
<div class="value" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<h3 i18next-orgval-1="Find all translations in one central place." localized="">Finden Sie alle Übersetzungen an einem zentralen Ort.<span i18next-orgval-0=" 🔍" localized=""> 🔍</span></h3>
</div>
<div class="value" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<h3 i18next-orgval-1="Keep always the overview of your progress." localized="">Behalten Sie immer den Überblick über Ihren Fortschritt.<span i18next-orgval-0=" 🔄" localized=""> 🔄</span></h3>
</div>
<div class="value" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<h3 i18next-orgval-1="Let developers and translators work well together in harmony." localized="">Lassen Sie Entwickler und Übersetzer harmonisch zusammenarbeiten.<span i18next-orgval-0=" 🤲" localized=""> 🤲</span></h3>
</div>
<div class="value" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<h3 i18next-orgval-1="Trust the makers of i18next and enjoy the support from a single source." localized="">Vertrauen Sie den Machern von i18next und geniessen Sie den Support aus einer Hand.<span i18next-orgval-0=" 🪪" localized=""> 🪪</span></h3>
</div>
</div>
</div>
</div>
</section>
<section class="features bg-primary text-center" id="features" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="col-lg-12 text-center" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="section-heading" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" localized="">
<h2 i18next-orgval-0="Features to grow global – get locized" localized="">Features to grow global – get locized</h2>
<p class="head" i18next-orgval-1="You're in need of a " i18next-orgval-3=" that keeps up with your vibrant business environment?" localized="">Du brauchst eine <strong i18next-orgval-0="localization management platform" localized="">Übersetzungsverwaltungsplattform</strong> welche mit Ihrem bewegtem Geschäftsumfeld Schritt hält?</p>
<p class="head" i18next-orgval-0="Does your current process break your agile development or continuous deployment process?" localized="">Unterbricht Ihr momentaner Lokalisierungsprozess Ihren Agilen Entwicklungs- oder Continuous Deployment Prozess?</p>
<p style="margin-top: 20px;" i18next-orgval-0="Find out what locize can offer to make your localization experience a success story." localized="">Finden Sie heraus was locize zu bieten hat. Machen Sie Ihr Lokalisierungsprojekt zu einer Erfolgsstory.</p>
<hr localized="">
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="col-md-12" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container-fluid" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/integrate_s.jpg" full="img/screenshots/screen/integrate.png" alt="locize integrationen" loading="lazy" alt-i18next-orgval="locize integration" localized=""></div>
<div class="button" localized=""></div>
</div>
</div>
<h3 i18next-orgval-0="Time saving over 60%" localized="">Über 60% Zeitersparnis</h3>
<p i18next-orgval-0="Adding one line of code to your website is all needed to get started. All your content gets extracted and sent to your locize project ready to be translated." localized="">Eine Zeile Code ist alles, was man braucht, um zu starten. Der gesamte Inhalt der Webseite wird extrahiert, an locize übermittelt und zur Übersetzung aufbereitet.</p>
<p i18next-orgval-0="Every change to your translations gets instantly reflected on your website and vice versa." localized="">Jede Änderung Ihrer Übersetzungen wird sofort auf Ihrer Webseite sichtbar und umgekehrt.</p>
<p i18next-orgval-0="Never again copy/paste translations from a to b." localized="">Kopieren Sie nie wieder Übersetzungen von A nach B.</p>
</div>
</div>
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/dashboard_s.jpg" full="img/screenshots/screen/dashboard.png" alt="locize Statistiken" loading="lazy" alt-i18next-orgval="locize statistics" localized=""></div>
</div>
</div>
<h3 i18next-orgval-0="Continuous Localization Lifecycle" localized="">Continuous Localization Lifecycle</h3>
<p i18next-orgval-0="locize enables you to separate your development and translation process. Keep translating while your development team adds new features to your project." localized="">locize ermöglicht Ihnen den Entwicklungs- und Übersetzungsprozess zu trennen. Übersetzen Sie während Ihr Entwicklungsteam noch neue Funktionen zu Ihrem Projekt hinzufügt.</p>
<p i18next-orgval-0="Update translations anytime, anywhere. No longer depend on your development team adding the new translation files to the codebase." localized="">Machen Sie Anpassungen an Ihren Übersetzungen egal wann, egal wo. Sie sind nicht mehr länger von Ihrem Entwicklungsteam abhängig.</p>
<p i18next-orgval-0="Keep track of newly added segments. Never lose the overview over your translation progress." localized="">Behalten Sie die Übersicht über neu hinzugefügte Texte. Verlieren Sie niemals den Überblick über Ihren Lokalisierungsprozess.</p>
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" i18next-orgval-13="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/incontext_editor_s.jpg" full="img/screenshots/screen/incontext_editor.png" alt="locize in-context editor" loading="lazy" alt-i18next-orgval="locize in-context editor" localized=""></div>
</div>
</div>
<h3 localized=""><a href="https://docs.locize.com/whats-inside/context" style="color: white;" i18next-orgval-0="Context Matters — InContext Editing" localized="">Kontext ist relevant — InContext Editor</a></h3>
<p i18next-orgval-0="Doing proper translations needs more information by providing the context. The best context is always the place where the content is used – your website!" localized="">Korrektes übersetzen verlangt nach Kontext. Wir glauben der beste Kontext ist Ihre Webseite.</p>
<p i18next-orgval-0="Our incontext editor enables you to directly update your translations from within your website." localized="">Unser InContext Editor ermöglicht es Ihnen die Inhalte direkt aus Ihrer Webseite heraus zu übersetzen.</p>
<p i18next-orgval-0="Every text segment is one click away! Stop wasting time searching..." localized="">Jedes Textfragment ist ein Klick entfernt! Verlieren Sie keine Zeit mit der Suche...</p>
<p i18next-orgval-1="Alternatively, there's the possibility to upload some " i18next-orgval-3=" and assign them to your translations." localized="">Alternativ besteht die Möglichkeit, <a href="https://docs.locize.com/whats-inside/context#screenshots" style="color: white;" target="_blank" i18next-orgval-0="screenshots" localized="">Screenshots</a> hochzuladen und den Übersetzungen zuzuordnen.</p>
</div>
</div>
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" i18next-orgval-11="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/editor_s.jpg" full="img/screenshots/screen/editor.png" alt="locize Übersetzungseditor" loading="lazy" alt-i18next-orgval="locize translation editor" localized=""></div>
</div>
</div>
<h3 i18next-orgval-0="Translation Management" localized="">Übersetzungsmanagement</h3>
<p i18next-orgval-0="You can translate your content using our powerful editor." localized="">Sie können Ihre Inhalte mit unserem leistungsfähigen Editor bearbeiten.</p>
<p i18next-orgval-0="Invite your inhouse translators giving them the rights for the languages needed." localized="">Laden Sie Ihre eigenen Übersetzer ein und geben Sie ihnen genau die Berechtigungen welche sie benötigen.</p>
<p i18next-orgval-1="Got a language not covered? Need extra help or prefer to completely outsource the job? Choose one of our " i18next-orgval-3="." localized="">Können Sie eine Sprache nicht selber übersetzen? Benötigen Sie Unterstützung? Oder möchten Sie den Übersetzungsprozess komplett auslagern? Wählen Sie einen unserer <a href="/services.html#translationservices" style="color: white;" i18next-orgval-0="translation service partners" localized="">Übersetzungsdienstleister-Partner</a>.</p>
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/translationmemory_s.jpg" full="img/screenshots/screen/translationmemory.png" alt="locize Translation Memory" loading="lazy" alt-i18next-orgval="locize translation memory" localized=""></div>
</div>
</div>
<h3 localized=""><a href="https://docs.locize.com/whats-inside/translation-memory" style="color: white;" i18next-orgval-0="The smart translation memory" localized="">Das clevere Translation Memory</a></h3>
<p i18next-orgval-0="With our translation memory you never have to translate the same text again. Simply reuse your exiting translatins over and over again." localized="">Mit unserem Translation Memory müssen Sie gleiche Inhalte nicht zwei mal übersetzen. Verwenden Sie bestehende Übersetzungen wieder und wieder.</p>
<p i18next-orgval-0="By using the translation memory you not only save time but also increase the consistency of your translations." localized="">Mit dem Translation Memory sparen Sie nicht nur Zeit, sondern Sie erhöhen auch die Konsistenz Ihrer Übersetzungen</p>
</div>
</div>
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/history_s.jpg" alt="locize history" full="img/screenshots/screen/history.png" loading="lazy" alt-i18next-orgval="locize history" localized=""></div>
</div>
</div>
<h3 localized=""><a href="https://docs.locize.com/whats-inside/history" style="color: white;" i18next-orgval-0="History" localized="">Historie</a></h3>
<p i18next-orgval-0="Keep track over all changes done to your project's translations. The last translation changes are audited per key." localized="">Behalten Sie alle Übersetzungsänderungen Ihres Projekts im Auge. Die letzten Übersetzungsänderungen werden pro Textfragment gespeichert.</p>
<p i18next-orgval-0="Need to provide those information - who did when change which segment? We get you covered." localized="">Sie müssen diese Informationen vorlegen können - wann hat wer welche Übersetzung geändert? Wir lassen Sie nicht im Stich.</p>
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/review_s.jpg" full="img/screenshots/screen/review.png" alt="locize review workflow" loading="lazy" alt-i18next-orgval="locize review workflow" localized=""></div>
</div>
</div>
<h3 localized=""><a href="https://docs.locize.com/whats-inside/review-workflow" style="color: white;" i18next-orgval-0="Review workflow" localized="">Überprüfungsabflauf</a></h3>
<p i18next-orgval-0="You can enable the review workflow for specific languages." localized="">Sie können den Review-Workflow für bestimmte Sprachen aktivieren.</p>
<p i18next-orgval-0="This way each time someone changes a translation, it will start a review workflow. The actual value will not be changed until someone will accept one of the translation proposals." localized="">Auf diese Weise wird jedes Mal, wenn jemand eine Übersetzung ändert, ein Review-Workflow gestartet. Der tatsächliche Wert wird nicht geändert, bis jemand einen der Übersetzungsvorschläge akzeptiert.</p>
</div>
</div>
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" i18next-orgval-9="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="MacbookPro" data-orientation="portrait" data-color="black" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive modalify" src="img/screenshots/screen/multitenant_s.jpg" alt="locize multitenant" full="img/screenshots/screen/multitenant.png" loading="lazy" alt-i18next-orgval="locize multitenant" localized=""></div>
</div>
</div>
<h3 localized=""><a href="https://docs.locize.com/more/multi-tenant" style="color: white;" i18next-orgval-0="Multi-Tenant" localized="">Multi-Mandanten</a></h3>
<p i18next-orgval-0="You can create tenant projects based on your main project. All translations are anticipated for the tenant project and can be overridden, if necessary." localized="">Sie können Tenant-Projekte basierend auf Ihrem Hauptprojekt erstellen. Alle Übersetzungen werden für das Tenant-Projekt vorbehaltet und können bei Bedarf überschrieben werden.</p>
<p i18next-orgval-0="But the anticipated translations are not just copied, so in case you need to correct a translation in your main project, it will be automatically populated to your tenants, if not overridden." localized="">Aber die vorbehalteten Übersetzungen werden nicht einfach kopiert. Falls Sie also eine Übersetzung in Ihrem Hauptprojekt korrigieren müssen, wird diese automatisch für Ihre Mandanten ausgefüllt, wenn sie nicht bereits überschrieben wurde.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="integration" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<h2 i18next-orgval-0="Easy integration for your operating tools" localized="">Einfache Integration für Ihre operativen Werkzeuge</h2>
<p i18next-orgval-1="There is an integration option for all tools. Start to reduce manual processes and everyday tasks with easy integration of locize for busy people. We are your cost-effective translation management platform and help move your software automation to a new level. This includes " i18next-orgval-3=" for apps built with " i18next-orgval-5=", " i18next-orgval-7=", " i18next-orgval-9=", " i18next-orgval-11=", " i18next-orgval-13=" and " i18next-orgval-15=" but not limited to this only." localized="">Es gibt eine Integrationsoption für alle Tools. Reduzieren Sie manuelle Prozesse und alltägliche Aufgaben, indem Sie die Lokalisierung für vielbeschäftigte Personen einfach integrieren. Wir sind Ihre kostengünstige Übersetzungsmanagementplattform und helfen Ihnen dabei, Ihre Software-Automatisierung auf ein neues Niveau zu heben. Das beinhaltet <a href="/javascript-localization.html" title="" i18next-orgval-0="JavaScript-localization" localized="">JavaScript-Lokalisierung</a> für Apps, die mit <a href="/blog/react-i18next/" i18next-orgval-0="React.js" localized="">React.js</a>, <a href="/blog/angular-i18next/" i18next-orgval-0="Angular" localized="">Angular</a>, <a href="/blog/give-vue-i18n-more-superpowers/" i18next-orgval-0="Vue.js" localized="">Vue.js</a>, <a href="/blog/next-i18next/" i18next-orgval-0="Next.js" localized="">Next.js</a>, <a href="/blog/svelte-i18n/" i18next-orgval-0="Svelte" localized="">Svelte</a> und <a href="/blog/jquery-i18next/" i18next-orgval-0="jQuery" localized="">jQuery</a> erstellt wurden, aber nicht nur darauf beschränkt sind.</p>
</div>
<div class="col-md-6" localized=""><a href="/how-it-works.html" localized=""><img src="/img/howto/i18next-frameworks.png" style="width: 80%; margin: 10px 0 0;" alt="i18next frameworks" loading="lazy" alt-i18next-orgval="i18next frameworks" localized=""></a></div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div style="padding: 5rem 0 0 0" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6 text-center" localized=""><a href="/pricing.html" localized=""><img src="/img/pay-for-what-you-use.png" style="max-width:50%" alt="pay for what use localization pricing" loading="lazy" alt-i18next-orgval="pay for what use localization pricing" localized=""></a></div>
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-6="
" localized="">
<h2 i18next-orgval-0="Pay only for what you use" localized="">Zahlen Sie nur für das, was Sie verwenden</h2>
<p i18next-orgval-1="A heavy save in cost for localization management with a varying pricing. " i18next-orgval-3=" compared to traditional services with fixed prices. Check out our " i18next-orgval-5=" for more information. There are also more software-localization-tools available on the locize platform for " i18next-orgval-7="." localized="">Eine erhebliche Kostenersparnis für das Übersetzungsmanagement mit variierenden Kosten. <b i18next-orgval-0="Save up to 40% of translation cost " localized="">Sparen Sie bis zu 40% der Übersetzungskosten </b> im Vergleich zu traditionellen Dienstleistungen mit festen Preisen. Schauen Sie sich unsere an <a href="/pricing.html" title="Lokalisierungspreise" i18next-orgval-0="pricing details" title-i18next-orgval="localization pricing" localized="">Preisangaben</a> für mehr Informationen. Es gibt auch mehr Software-Lokalisierungstools auf der Lokalisierungsplattform, die <a href="/services.html" title="" i18next-orgval-0="free usage" localized="">kostenlos verwendet werden können</a>.</p><a class="btn btn-outline btn-xl" href="https://www.locize.app/register" style="background-color: #4caf50; color: white; border: none;" i18next-orgval-0="Start your free trial" localized="">Starten Sie die kostenlose Testperiode</a>
</div>
</div>
</div>
</div>
</section>
<section class="benefits" id="benefits" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="col-lg-12 text-center" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="section-heading" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" i18next-orgval-7="
" localized="">
<h2 i18next-orgval-0="Get translated today. Effortless & riskfree." localized="">Beginnen Sie noch heute. Mühelos und Risikofrei.</h2>
<p class="text-muted" i18next-orgval-0="Got a small landing page or a big web application - locize gets you there!" localized="">Möchten Sie einen kleinen Webauftritt oder eine grosse Webanwendung übersetzen - locize machts möglich!</p>
<hr localized="">
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-4" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device-wrapper" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="device" data-device="iPadAir2" data-orientation="portrait" data-color="white" style="z-index: 0;" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="screen" localized=""><img class="img-responsive" src="img/screenshots/ipad/project_stat.jpg" alt="locize Projektübersicht" loading="lazy" alt-i18next-orgval="locize project overview" localized=""></div>
</div>
</div>
</div>
<div class="col-md-8" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="container-fluid" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-8="
" i18next-orgval-10="
" localized=""><img style="width: 90px;max-height:90px" src="img/flexible-integration.png" alt="integration" loading="lazy" alt-i18next-orgval="integration" localized="">
<h3 i18next-orgval-0="Flexible Integration" localized="">Flexible Integration</h3>
<p class="text-muted" i18next-orgval-1="Choose between flexible integration options meeting your needs. From integration to wordpress or to your app built with " i18next-orgval-3=", " i18next-orgval-5=", " i18next-orgval-7=", " i18next-orgval-9=", " i18next-orgval-11="..." localized="">Wählen Sie zwischen unterschiedlichen Möglichkeiten um Ihre Bedürfnisse optimal zu erfüllen. Von der Integration für WordPress oder für Ihre Anwendung basierend auf <a href="/blog/react-i18next/" i18next-orgval-0="React.js" localized="">React.js</a>, <a href="/blog/angular-i18next/" i18next-orgval-0="Angular" localized="">Angular</a>, <a href="/blog/give-vue-i18n-more-superpowers/" i18next-orgval-0="Vue.js" localized="">Vue.js</a>, <a href="/blog/next-i18next/" i18next-orgval-0="Next.js" localized="">Next.js</a>, <a href="/blog/svelte-i18n/" i18next-orgval-0="Svelte" localized="">Svelte</a>...</p>
<p class="text-muted" i18next-orgval-1="From our one liner script enabling localization even for non developers to instrumenting your code using " i18next-orgval-3=", formatjs, polyglot, ..." localized="">Von unserem Script, welches Lokalisierung auch für nicht Entwickler ermöglicht, bis zur Instrumentierung Ihres Codes mit i18n Frameworks wie <a href="/i18next.html" i18next-orgval-0="i18next" localized="">i18next</a>, formatjs, polyglot, ...</p>
<p class="text-muted" i18next-orgval-0="Profit from our experience. We will help you to decide for the best solution." localized="">Profitieren Sie von unseren Erfahrungen. Wir helfen Ihnen Sich für die für Sie optimale Lösung zu entscheiden.</p>
</div>
</div>
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-2="
" i18next-orgval-4="
" i18next-orgval-6="
" i18next-orgval-8="
" i18next-orgval-10="
" localized=""><img style="width: 90px;max-height:90px" src="img/risk-free.png" alt="risk free" loading="lazy" alt-i18next-orgval="risk free" localized="">
<h3 i18next-orgval-0="Risk free" localized="">Risikofrei</h3>
<p class="text-muted" i18next-orgval-0="In contrast to other solutions out there we built ours on most popular open source frameworks." localized="">Gegenüber anderen Lösungen auf dem Markt bauen wir auf Standardlösungen aus der Opensource Community auf.</p>
<p class="text-muted" i18next-orgval-1="If you ever plan to stop using locize your translations could be used by " i18next-orgval-3=", formatjs or polyglot. Nothing lost. Zero risk." localized="">Falls Sie eines Tages locize nicht mehr nutzen möchten, können Sie Ihre Übersetzungen weiterhin mit <a href="/i18next.html" i18next-orgval-0="i18next" localized="">i18next</a>, formatjs oder polyglot verwenden. Kein Verlust. Kein Risiko.</p>
<p class="text-muted" i18next-orgval-0="We believe in the value of our product. No need to make you dependent by being incompatible with standards." localized="">Wir glauben an den Wert unserer Dienstleistung. Daher binden wir Sie nicht an unsere Lösung durch die Nutzung inkompatibler Standards.</p>
</div>
</div>
</div>
<div class="row" i18next-orgval-1="
" i18next-orgval-3="
" i18next-orgval-5="
" localized="">
<div class="col-md-6" i18next-orgval-1="
" i18next-orgval-3="
" localized="">
<div class="feature-item" i18next-orgval-2="
" i18next-orgval-4="