-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
customers.html
2483 lines (2448 loc) · 180 KB
/
customers.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="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style id="antiClickjack">
body {
display:none !important;
}
</style>
<script type="text/javascript">
if (self === top) {
var antiClickjack = document.getElementById("antiClickjack");
antiClickjack.parentNode.removeChild(antiClickjack);
} else {
top.location = self.location;
}
</script>
<meta name="description" content="Locize client feedbacks - actual testimonials from project managers, developers and tech-companies">
<meta property="og:title" content="Client Testimonials for Internationalization with Locize">
<meta property="og:description" content="Locize client feedbacks - actual testimonials from project managers, developers and tech-companies">
<meta name="twitter:title" content="Client Testimonials for Internationalization with Locize">
<meta name="twitter:description" content="Locize client feedbacks - actual testimonials from project managers, developers and tech-companies">
<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,react-i18next,next,next.js,nextjs,next-i18next,svelte,svelte-i18n,svelte-i18next,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">
<meta property="og:type" content="website">
<meta property="og:url" content="https://locize.com">
<meta property="og:site_name" content="locize - continuous localization as a service">
<meta property="og:locale" content="en">
<meta property="og:image" content="img/locize_color.svg">
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@locize">
<meta name="slack-app-id" content="A71NM84Q6">
<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">
<!--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')
-->
<link href="https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.css" rel="stylesheet" type="text/css">
<link href="https://cdn.jsdelivr.net/gh/orestbida/iframemanager@1.2.5/dist/iframemanager.css" rel="stylesheet" type="text/css">
<title>Client Testimonials for Internationalization with Locize</title>
<link rel="canonical" href="/customers.html">
</head>
<body id="page-top">
<nav class="navbar navbar-default navbar-fixed-top affix" id="mainNav" i18next-options="{"ns": "common"}">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"><span class="sr-only">Toggle navigation</span><i class="fa-solid fa-bars"></i></button><a class="navbar-brand" href="/"></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown" id="featuresd"><a class="dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Features<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/#features">Characteristics</a></li>
<li><a href="/#process">What is the software localization process?</a></li>
<li><a href="/#platform">What can our localization platform do?</a></li>
<li><a href="/how-it-works.html">How it works</a></li>
<li><a href="/for-your-team.html">For your team</a></li>
</ul>
</li>
<li><a href="/pricing.html">Pricing</a></li>
<li><a href="/customers.html">Success Stories</a></li>
<li><a href="/ai.html">AI<i class="fa-solid fa-wand-sparkles" aria-hidden="true" style="margin-left: 5px;"></i></a></li>
<li class="dropdown" id="featuresd"><a class="dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">More<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://docs.locize.com/">Documentation</a></li>
<li><a href="/services.html">Additional services</a></li>
<li> <a href="/blog/">Blog</a></li>
<li><a class="closeOnClick" href="/#contact">Contact</a></li>
</ul>
</li>
<li><a href="https://www.locize.app/login" target="_blank">Login<i class="fa-solid fa-lock" aria-hidden="true" style="margin-left: 5px;"></i></a></li>
<li><a class="btn btn-outline btn-xl" href="https://www.locize.app/register" style="background-color: #4caf50; color: white; border: none;">Start your free trial</a></li>
</ul>
</div>
</div>
</nav>
<div style="margin-top: 50px;">
<section class="testimonials section-primary">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div class="section-heading" style="margin-bottom: 30px;">
<h2>Customer Success Stories</h2>
<p class="text-muted">Learn from the success stories of our customers!</p>
<hr>
</div>
</div>
</div>
<div class="testimonial-container" translated="">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="testimonial" style="height: 580px;">
<div style="margin: -15px -15px 0 -15px;"><img style="width: 100%; max-height: initial; margin-bottom: 0;" src="img/stories/schoolparrot.gif" alt="SchoolParrot" loading="lazy"></div>
<div class="text-center" style="background-color: #ddd; margin: 0px -20px 10px; padding: 10px;"><a class="btn btn-outline btn-sm" href="https://www.schoolparrot.co.uk/stories/the-importance-of-multilingual-communication-in-schools:-attracting-a-global-audience-81" target="_blank">Read the story</a></div>
<div class="testimonial-content">
<h3 class="story-title">The Importance of Multilingual Communication in Schools: Attracting a Global Audience</h3>
<p style="font-size: 14px;">Check out how locize ensures that educational institutions can effortlessly curate and update their multilingual content, presenting themselves optimally to a worldwide audience.</p>
</div>
<div class="author">
<hr>Eric Gisaeus, SchoolParrot
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="testimonial" style="height: 580px;">
<div style="margin: -15px -15px 0 -15px;"><img style="width: 100%; max-height: initial; margin-bottom: 0;" src="img/stories/immersive.gif" alt="immersive" loading="lazy"></div>
<div class="text-center" style="background-color: #ddd; margin: 0px -20px 10px; padding: 10px;"><a class="btn btn-outline btn-sm" href="/blog/immersive-locize/" target="_blank">Read the story</a></div>
<div class="testimonial-content">
<h3 class="story-title">Localization at Immersive Communities</h3>
<p>How Immersive Communities leveraged Locize to manage localization?</p><a href="https://betterprogramming.pub/how-i-built-a-social-network-in-4-years-as-a-solo-developer-4af70fb2d4c8" target="_blank">Read also the full story how Mario built this social network in 4 years as a solo developer.</a>
</div>
<div class="author">
<hr>Mario Stopfer, Immersive Communities
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="testimonial" style="height: 580px;">
<div style="margin: -15px -15px 0 -15px;"><img style="width: 100%; max-height: initial; margin-bottom: 0;" src="img/stories/networkme.gif" alt="networkme" loading="lazy"></div>
<div class="text-center" style="background-color: #ddd; margin: 0px -20px 10px; padding: 10px;"><a class="btn btn-outline btn-sm" href="/blog/networkme-locize/" target="_blank">Read the story</a></div>
<div class="testimonial-content">
<h3 class="story-title">Localization at Networkme</h3>
<p>How Networkme became at least 20% more productive?</p>
<p style="font-size: 13px;">Check out how Networkme is empowering the copywriters with the autonomy to move at the speed they expect.</p>
</div>
<div class="author">
<hr>Marcelo Manteigas, Networkme
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12" id="avocode">
<div class="testimonial" style="height: 580px;">
<div style="margin: -15px -15px 0 -15px;"><img style="width: 100%; max-height: initial; margin-bottom: 0;" src="img/stories/avocode.gif" alt="avocode" loading="lazy"></div>
<div class="text-center" style="background-color: #ddd; margin: 0px -20px 10px; padding: 10px;"><a class="btn btn-outline btn-sm" href="https://blog.avocode.com/how-we-translated-the-avocode-website-written-in-next-js-with-the-i18next-package-2-2-9239ddd730f0" target="_blank">Read the story</a></div>
<div class="testimonial-content">
<h3 class="story-title">How we translated the Avocode website written in Next.js with the i18next package</h3>
<p>How to translate a website that is always changing?</p>
</div>
<div class="author">
<hr>Matouš Roskovec, Avocode.com
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="testimonial" style="height: 580px;">
<div style="margin: -15px -15px 0 -15px;"><img style="width: 100%; max-height: initial; margin-bottom: 0;" src="img/stories/reactintl.gif" alt="react intl" loading="lazy"></div>
<div class="text-center" style="background-color: #ddd; margin: 0px -20px 10px; padding: 10px;"><a class="btn btn-outline btn-sm" href="https://itnext.io/reactintl-namespaces-2ba85d59133f" target="_blank">Read the story</a></div>
<div class="testimonial-content">
<h3 class="story-title">ReactIntl + Namespaces + Locize</h3>
<p>How ReactIntl in combination with lociize helps you with internationalization and localisation related tasks in your project.</p>
</div>
<div class="author">
<hr>Maciej Warszawski
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<div class="testimonial" style="height: 580px;">
<div style="margin: -15px -15px 0 -15px;"><img style="width: 100%; max-height: initial; margin-bottom: 0;" src="img/stories/hypertrend.gif" alt="hypertrend" loading="lazy"></div>
<div class="text-center" style="background-color: #ddd; margin: 0px -20px 10px; padding: 10px;"><a class="btn btn-outline btn-sm" href="http://www.hypertrends.com/2017/11/localization-using-locize/" target="_blank">Read the story</a></div>
<div class="testimonial-content">
<h3 class="story-title">Localization as a Service using Locize</h3>
<p>So you manage Localizations in Word? Excel? JSON? XML? Notepad? Believe it or not, we’ve tried it all.</p>
</div>
<div class="author">
<hr>Anup Marwadi, Hypertrends.com
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="testimonials section-gray" id="testimonials">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div class="section-heading" style="margin-bottom: 30px;">
<h2>Customer Testimonials</h2>
<p class="text-muted">Hear what our customers have to say!</p>
<hr>
</div>
</div>
</div>
<div class="testimonial-container" translated="">
<div class="row">
<div class="col-lg-6 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth" style="height: 620px;">
<div class="testimonial-title"><img class="grayscale" style="max-height: 60px;" src="img/customers/finreg.png" alt="finreg" loading="lazy"></div>
<div class="testimonial-content">
<h3 style="display: none;">Locize is a fantastic product for various reasons</h3>
<p style="font-size: 16px;">We’ve been using Locize for about 6 months for 2 different sites. Locize is a fantastic product for various reasons:</p>
<ul style="font-size: 15px;">
<li>Easy interface to administer translations. One can control exactly what each translator can see and they love using it. The interface also makes it easy to see what translations are missing as well as split up your application into different namespaces.</li>
<li>Great integration into front end javascript. We are using VUE and there is an excellent 2 way flow where the site can pull the translations, but also use the API to send new keys.</li>
<li>The pricing is different from other services, but much more fair. You pay more if you use more, rather than one giant fee.</li>
<li>The support is prompt and very helpful.</li>
<li>If the site is not business critical, the translate all via Google Translate is a great feature!</li>
</ul>
</div>
<div class="author">
<hr>David Silverman, CTO<br><a href="https://www.globalfinreg.com" target="_blank">Global Finreg A/S</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-4 col-sm-12" id="logiscool">
<div class="testimonial testimonial-fullwidth" style="height: 620px;">
<div class="testimonial-title"><img class="grayscale" style="max-height: 60px;" src="img/customers/logiscool.png" alt="logiscool" loading="lazy"></div>
<div class="testimonial-content">
<h3 style="display: none;">Using i18next as our international framework enables us to use the same technology around our whole software stack, regardless the actual backend or framework we use. Locize is the icing on the cake – it made translation management unspeakably easier.</h3>
<p style="font-size: 16px;">At Logiscool, we teach kids programming in more than ten countries. While the universal language of programming is English, managing our website translations for a growing number of languages quickly became a challenge.</p>
<p style="font-size: 16px;">Using i18next as our international framework enables us to use the same technology around our whole software stack, regardless the actual backend or framework we use. Locize is the icing on the cake – it made translation management unspeakably easier.</p>
<p style="font-size: 16px;">We love the editor support for in-text HTML tags and there’s finally someone who’s prepared to handle plurals by the book. Locize also helps us staying in touch with our growing number of translators at a daily basis, while the Locize API enables us to safely integrate with our build systems. Thank you!</p>
</div>
<div class="author">
<hr>Miklós Fülöp, CTO<br><a href="https://www.logiscool.com" target="_blank">Logiscool</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 40px;" src="img/customers/ke-chain.png" alt="ke chain" loading="lazy"></div>
<div class="testimonial-content">
<h3 style="display: none;">We integrated Locize within a day using the React i18n packages available. It was a frictionless experience integrating it and a frictionless experience adding the translations. It is ideal for a team that want to stay agile without imposing a forced translation flow.</h3>
<p style="font-size: 16px;">We use Locize to translate our product KE-chain. KE-chain is a cloud-based software product used for digital registrations in the construction and infra industry and now available in multiple languages.</p>
<p style="font-size: 16px;">We integrated Locize within a day using the React i18n packages available. It was a frictionless experience integrating it and a frictionless experience adding the translations. It is ideal for a team that want to stay agile without imposing a forced translation flow.</p>
<p style="font-size: 16px;">The cost structure suited our use better than alternative solutions. We like using the translation hints by services such as Google, to help us to get 'something' quick which may be altered later by a native speaker.</p>
</div>
<div class="author">
<hr>Jochem Berends, Technical Director<br><a href="https://www.ke-chain.com" target="_blank">ke-chain.com</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-4 col-sm-12" id="worldshopping">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px;" src="img/customers/worldshopping.png" alt="worldshopping" loading="lazy"></div>
<div class="testimonial-content">
<h3 style="display: none;">Locize is a really outstanding service due to the following points...</h3>
<p>It's a really outstanding service due to the following points.</p>
<ul style="font-size: 18px;">
<li>The fact that management of several languages can be corrected quickly through the operation of cross border commerce sites</li>
<li>The fact that in addition to words, the URL and images can be managed too</li>
<li>The fact that even those who are not engineers can operate it easily</li>
</ul>
<p>We use Locize not only for word but also for URL and image’s URL. We have separated help pages for en, ja, zh, zh-TW. i18next automatically switched the link to appropriated lang help’s page. Also we have separated images which contain en, ja, zh, zh-TW characters.</p>
</div>
<div class="author">
<hr>KAZUYOSHI NAKAZATO, ZIG-ZAG,INC<br><a href="https://www.worldshopping.global/en" target="_blank">worldshopping.global</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/wuxus.png" alt="wuxus" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize enables Wuxus to roll out our digital infrastructure for the transportation industry, on a global scale, with ease.</p>
<p>Great tool, easy to implement, easy to use, great service and support. Asked for a feature - available the next day.</p>
</div>
<div class="author">
<hr>Lars Bryrup, Head of Tech<br><a href="http://www.wuxus.com/" target="_blank">wuxus.com</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 45px" src="img/customers/shoprepublic.png" alt="shoprepublic" loading="lazy"></div>
<div class="testimonial-content">
<p>With Locize we could speed up our whole translation process by more than 50%!</p>
</div>
<div class="author">
<hr>Christian Schab, Founder<br><a href="https://www.shoprepublic.de/" target="_blank">ShopRepublic GmbH</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 45px" src="img/customers/withlocals.png" alt="with locals" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize has enabled Withlocals to localise effectively our website in several languages. Given that Withlocals is all about personal experiences & authenticity, being able to take over the delicate task of translating our platform’s content made Locize a valuable partner for us.</p>
<p>Thanks to this collaboration we have been able to focus fully on the development of our product, and at the same time provide our translators worldwide with a user-friendly tool.</p>
</div>
<div class="author">
<hr>Bartosz Kuzmicki, CTO<br><a href="https://www.withlocals.com/" target="_blank">Withlocals</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/atroo.png" alt="atroo" loading="lazy"></div>
<div class="testimonial-content">
<p>We utilize Locize for several projects in the publishing industry. The team of Locize made it a no brainer to shift over from a premature self-hosted localization tool to their SaaS.</p>
<p>In the rare case that features were missing, they have been implemented in no time. The support and feedback is great and the tool is easy to use.</p>
<p>We have many on premise installations without access to the internet (thus not using Locizes cdn feature), it should be mentioned that integrating Locize into our build and release workflow (gulp, gitlab ci) has been a breeze. I’d definitely recommend using it.</p>
</div>
<div class="author">
<hr>Robert Krüger, Co-owner<br><a href="https://www.atroo.de/" target="_blank">atroo GbR</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/hypertrend.png" alt="hypertrend" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize promises a Continuous Localization Lifecycle and delivers it with a bang.</p>
<p>Using Locize, we have been able to translate over 40,000 key/value pairs for a significantly large application within a matter of days. It cannot get better than this.</p>
<p>Read the full <a href="http://www.hypertrends.com/2017/11/localization-using-locize/" target="_blank">success story.</a></p>
</div>
<div class="author">
<hr>Anup Marwadi, CEO<br><a href="http://www.hypertrends.com/" target="_blank">Hypertrends Global Inc</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/catena.png" alt="catena" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize is a great service that helps speed up development time by allowing our engineers to focus on building features instead of managing and maintaining translation tools.</p>
<p>They provided fantastic customer support that was very quick to respond and help us with any questions we had.</p>
</div>
<div class="author">
<hr>Dylan Seago, Lead Developer<br><a href="https://explorecatena.com/" target="_blank">Catena</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/coherent.png" alt="coherent" loading="lazy"></div>
<div class="testimonial-content">
<p>We develop bespoke software and many of our clients are international.</p>
<p>Locize has enabled us to develop software for clients whose native language is not English, and allow them to translate the software at their own pace.</p>
</div>
<div class="author">
<hr>James Hadley, Managing Director<br><a href="https://coherent.net" target="_blank">Coherent Software</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/appointedd.png" alt="appointedd" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize has enabled us to roll out scalable multi-language support to our client-facing online booking interfaces.</p>
<p>Integrating the Locize API and CLI into our build process allows our product team to add new languages and modify translations on the fly without requiring any code changes.</p>
</div>
<div class="author">
<hr>Greg Dickson, Senior Developer<br><a href="https://www.appointedd.com" target="_blank">Appointedd</a>
</div>
</div>
</div>
<div class="col-lg-6 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/bookingfactory.png" alt="bookingfactory" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize is a great tool for us to localise our hotel software solution into multiple languages for both users and their guests. We chose Locize because of their flexible pricing structure that is based on usage instead of a large monthly fee.</p>
<p>We already have some great early results and now our users can translate themselves into their local language!</p>
</div>
<div class="author">
<hr>Evan Davies, CEO of The Booking Factory<br><a href="https://thebookingfactory.com" target="_blank">The Booking Factory</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/vgpro.png" alt="vgpro" loading="lazy"></div>
<div class="testimonial-content">
<p>Having a platform that makes it easy to localize your website is great, but also integrating the translation in real time to your website is just amazing.</p>
<p>I have been using Locize and it made it easier to connect with translators and get the job done. I would recommend to anyone looking for the same.</p>
</div>
<div class="author">
<hr>Pierre Ortega, Lead Developer<br><a href="http://vgpro.gg" target="_blank">VGPRO.gg</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/classnet.png" alt="classnet" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize is an awesome way to localize your website.</p>
<p>It makes translating your existing content as easy as it could possibly get and the integration takes just one line of code.</p>
</div>
<div class="author">
<hr>Alexander Bayerl, Student<br><a href="https://classnet.info/?lng=en" target="_blank">classnet</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/chilldev.png" alt="chilldev" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize took all the technical efforts related to localizing our frontend off from our shoulders with just a few lines of configuration.</p>
<p>Replaced our old complex toolchain with just few API calls providing a user-friendly solution for translators at once.</p>
</div>
<div class="author">
<hr>Rafał Wrzeszcz, Owner<br><a href="https://chilldev.pl/" target="_blank">chilldev.pl</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12" id="fideli">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/fideli.jpg" alt="fideli" loading="lazy"></div>
<div class="testimonial-content">
<p>Using Locize and its tools (i18next) saves us a LOT of time by not thinking about the texts and focusing on development only. It's then easy and fast to input all the translations on Locize admin UI.</p>
<p>Thanks Locize Team!</p>
</div>
<div class="author">
<hr>Huafu Gandon, Co-founder<br><a href="https://fide.li" target="_blank">Fidéli SAS</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 40px; max-width: 100%;" src="img/customers/lynk.png" alt="lynk" loading="lazy"></div>
<div class="testimonial-content">
<p>Thanks for your service and for your support.</p>
<p>I strongly believe you guys have the best package on the market, and I’m happy to get our company to use your full offered experience.</p>
</div>
<div class="author">
<hr>Yaroslaff Fedin, Frontend Engineer<br><a href="https://lynk.global" target="_blank">Lynk</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/wavy.png" alt="wavy" loading="lazy"></div>
<div class="testimonial-content">
<p>"With Locize, we have been able to simplify our localization process and bring our app to a global audience.""</p>
</div>
<div class="author">
<hr>Abel Chalier, CTO<br><a href="https://wavy.co" target="_blank">wavy</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/edzo.png" alt="edzo" loading="lazy"></div>
<div class="testimonial-content">
<p>"I find your project great and brilliant. Basically, what I like is the money we save by using your system instead of asking our developers to change our international labels.The tool is simple, the team is happy and we think about storing all our labels and edzo pre-determined sentences on your platform."</p>
</div>
<div class="author">
<hr>Thibault Montoya, CEO<br><a href="https://www.edzo.ai" target="_blank">edzo</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/clevy.svg" alt="clevy" loading="lazy"></div>
<div class="testimonial-content">
<p>Maintaining multiple languages is one of the technical challenges of building a platform for global users. Locize has been integrating very well into our CI workflow for a few months and makes this complex process painless.</p>
</div>
<div class="author">
<hr>François Falala-Sechet, CTO<br><a href="https://www.clevy.io" target="_blank">clevy.io</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 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/geoimpact.png" alt="geoimpact" loading="lazy"></div>
<div class="testimonial-content">
<p>By using Locize we were able to translate our platform <a href="https://www.swissenergyplanning.ch" target="_blank">swissenergyplanning.ch</a> easily and without great effort, which is essential for a startup like us. To emphasize is that every team member is now able to change labels quickly.</p>
<p>Swiss Energy Planning is a cloud based and integrated software solution. The platform allows our customers to plan and monitor the energy transition throughout Switzerland at any location. Decision making becomes digital, collaborative and simple on the basis of comprehensive data on property level and business intelligence.</p>
</div>
<div class="author">
<hr>David Suter, Founder<br><a href="https://www.geoimpact.ch" target="_blank">geoimpact</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-4 col-sm-12">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 40px; max-width: 100%;" src="img/customers/retraced.png" alt="retraced" loading="lazy"></div>
<div class="testimonial-content">
<p>At retraced we offer a blockchain-based, end-consumer focused, supply chain transparency platform for fashion brands, enabling them to communicate the stories behind their products.</p>
<p>We utilise Locize throughout our infrastructure in two mobile applications, one web-app dashboard and a microservice for e-mail and communication handling. Locize is a very reliable service and scales beautifully with the business.</p>
</div>
<div class="author">
<hr>Peter Merkert, Co-Founder and CTO<br><a href="https://retraced.co" target="_blank">retraced GmbH</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/spt.png" alt="spt" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize is an essential part of our ability to localise our platform for our users in over 110 different countries.</p>
<p>Their service has made it easy for our business to deliver high quality translations to our customers in 11 different languages.</p>
</div>
<div class="author">
<hr>Steven Bladeni, Chief Operating Officer<br><a href="https://sportsperformancetracking.com/" target="_blank">Sports Performance Tracking</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 40px; max-width: 100%;" src="img/customers/fubotv.png" alt="fubotv" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize has become a critical part of our localization workflow.</p>
<p>The tool has made translating our applications incredibly easy, and their customer support has been stellar.</p>
</div>
<div class="author">
<hr>Eddie Yoo, Senior Product Manager<br><a href="https://www.fubo.tv" target="_blank">fubo tv</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/pigknows.png" alt="pigknows" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize is a godsend for us, we have been manually dealing with translations for years and it requires a great deal of developer involvement, now we let our people translate without needing us.</p>
<p>Thanks!</p>
</div>
<div class="author">
<hr>Zach Curtis, CTO<br><a href="https://www.PigKnows.com" target="_blank">PigKnows.com</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-12">
<div class="testimonial">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px" src="img/customers/span.png" alt="span" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">Locize's translation management allowed us to release our mobile app that guides people from diagnosis to remission of type 2 diabetes in French, Arabic, and Spanish in a matter of days!</p>
<p style="font-size: 16px;">The development libraries for every platform/language made it extremely easy for us to integrate Locize with i18n on React Native in Javascript.</p>
</div>
<div class="author">
<hr> Patrick Samy, CEO<br><a href="https://www.span.health" target="_blank">Span</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 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/quotepro.png" alt="quotepro" loading="lazy"></div>
<div class="testimonial-content">
<p>Translations used to be a chore, and always out of date.</p>
<p>With Locize, we can maintain our translations in realtime, providing a boost in both translation accuracy and productivity.</p>
</div>
<div class="author">
<hr>Brian Marquis, VP of Software Development<br><a href="https://quoteprosolutions.com" target="_blank">Quotepro Inc</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/packlink.svg" alt="packlink" loading="lazy"></div>
<div class="testimonial-content">
<p>Thanks to Locize, we finally achieved a developer/product -friendly tool to work with, successfully outsource the translations-related tasks and fully automate our i18n workflow so both engineers and product managers can focus in what matters most to the company.</p>
</div>
<div class="author">
<hr>Ignacio Velazquez, Engineering Manager<br><a href="https://www.packlink.com" target="_blank">Packlink</a>
</div>
</div>
</div>
<div class="col-lg-6 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/rduce.png" alt="rduce" loading="lazy"></div>
<div class="testimonial-content">
<p>Being developers for over two decades we know what a beast it can be to tackle localization. We also knew we had to be very smart about how we spend the few developer resources we have since we´re a small company.</p>
<p>Locize have really helped us getting this problem out of the way for our product Pixon.</p>
<p>Essentially making us beat much larger competitors when it comes to multi lingual support.</p>
<p>Thank you!</p>
</div>
<div class="author">
<hr>André Johansson, CTO<br><a href="https://www.rduce.net" target="_blank">Rduce Complexity AB</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-4 col-sm-12" id="realadvisor">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/realadvisor.png" alt="realadvisor" loading="lazy"></div>
<div class="testimonial-content">
<p>Being a Swiss Startup, we had to launch our website in several languages at once.</p>
<p>We used i18next with React and were translating JSON files by hand, which was really cumbersome.</p>
<p>Locize really changed everything for us because it allowed us to:
<ul>
<li>Let non-developers translate the website pages</li>
<li>Decouple the translation process from application deployments</li>
<li>Use Google translate straight from within the tool</li>
</ul>
</p>
<p>Really recommended.</p>
</div>
<div class="author">
<hr>Joan Rodriguez, CEO<br><a href="https://www.realadvisor.ch" target="_blank">RealAdvisor</a>
</div>
</div>
</div>
<div class="col-lg-6 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/ludwig.png" alt="ludwig" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">Being a startup that helps 1.5 million people with their English writing and translation, the translation of our website had to be both flawless and flawlessly managed.</br>After having tested different services we picked up Locize and are extremely satisfied with it because:
<ul style="font-size: 15px;">
<li>It's easy to use for non-developers</li>
<li>APIs are easy to use and allowed us to create a customized integration that suited our needs</li>
<li>It helped us manage the simultaneous translation of Ludwig in 6 different languages at once without the need of recruiting an additional project manager</li>
<li>We could invite external translators and gave them the right to edit their corresponding language</li>
<li>The price is definitely worth the value and you only pay for what you use</li>
</ul>
</p>
</div>
<div class="author">
<hr>Antonio Rotolo, CEO and Co-Founder<br><a href="https://ludwig.guru" target="_blank">Ludwig.guru</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 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/alchemist.png" alt="alchemist" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 17px;">We're a very small team, and wasting time rebuilding our app every time an adjustment or a new translation is needed is painful. Locize has allowed us to host our i18n files in the cloud, therefore making it super easy for the marketing and product guys to translate and update them without the need to rebuild from scratch, saving us a lot of time!</p>
</div>
<div class="author">
<hr>Albert Casademont, Head of IT<br><a href="https://thealchemistatelier.com" target="_blank">The Alchemist Atelier</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/iw_tech.svg" alt="iw_tech" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 17px;">Locize feels like a product of an exceptionally high quality which the developers created with people’s needs in mind! We haven’t encountered any services of such high caliber in a while. The groupings of different sections and languages are remarkably handy, so are the supported versions and exporting. Thanks for the convenient tool!</p>
</div>
<div class="author">
<hr>Igor Alekhin, CEO & Founder<br><a href="https://iweekender.com" target="_blank">iWeekender</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/juicar.svg" alt="juicar" loading="lazy"></div>
<div class="testimonial-content">
<p>We're using Locize to bring our e-car subscription to new countries and language regions. So far we're very happy because it offers a simple way to develop and improve our website and copy quickly.</p>
</div>
<div class="author">
<hr>Manuel Frick, Software Engineering<br><a href="https://juicar.com" target="_blank">Juicar</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/shiftcrypto.png" alt="shiftcrypto" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">Locize has been immensely useful in our efforts to translate the BitBoxApp, a Bitcoin wallet application, into our users' most demanded languages. Our main requirement was that the translator can see his translations in real time and verify it within the app to make sure that the translation fits contextually. Locize’s plugin makes that super easy and streamlined.</p>
</div>
<div class="author">
<hr>Johannes Sternberg, Translation Manager<br><a href="https://shiftcrypto.ch" target="_blank">Shift Cryptosecurity AG</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 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/elephantlearning.png" alt="elephantlearning" loading="lazy"></div>
<div class="testimonial-content">
<p>We are using Locize to implement our internationalization and it has made the process extremely smooth. We are able to use their online translate to quickly translate to other languages and their cloud helps us quickly fix errors if they make it through our auditing process.</p>
</div>
<div class="author">
<hr>Dr. Aditya Nagrath PhD, Chancellor<br><a href="https://elephantlearning.com" target="_blank">Elephant Learning</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/carina.svg" alt="carina" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize helped Carina deliver a web application in Spanish for essential workers [hospitals...] seeking emergency child care during COVID19.</p>
</div>
<div class="author">
<hr>Frank Martinez, Product Owner<br><a href="https://carina.org" target="_blank">Carina, Inc.</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-4 col-sm-12" id="photogram">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/photogram.png" alt="photogram" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">At Photogram, we serve clients from different regions and industries, speaking either German, Italian or English, so localization is fairly important to our product.</p>
<p style="font-size: 16px;">Before Locize, we were using a custom JSON-based intl implementation for our React apps, which was hard to scale and maintain, and always costed a lot of time.</p>
<p style="font-size: 16px;">Switching to Locize was pretty straightforward, thanks to i18next and the possiblity to import JSON files in the admin dashboard.</p>
<p style="font-size: 16px;">Now, as a developer, I don't have to think about translations anymore, as they just get created automatically and need to be filled in by another team in the dashboard, which is a killer feature!</p>
</div>
<div class="author">
<hr>Maximilian Torggler, Lead Software Developer<br><a href="https://photogram.pro" target="_blank">Photogram</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 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/nakipower.png" alt="nakipower" loading="lazy"></div>
<div class="testimonial-content">
<p>Here at Naki we found in Locize our perfect mate for easily managing and maintaining our products in over 6 languages!</p>
<p>As a product company which releases mobile applications throughout Europe, we were looking for a tool that allows us to easily involve who translate and keep the maintenance of the copywriting seamless.</p>
<p>Thanks to Locize we improved the texts localization workflow, from the string translations up to the application build.</p>
</div>
<div class="author">
<hr>Youri Tolstoy, CTO<br><a href="https://nakipower.com" target="_blank">Naki Power</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/willskill.svg" alt="willskill" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">Integrating Locize into our clients projects has been supereasy, both from a technical perspective and a Client onboarding perspective. Using Locize as our main source for localization we have effectively used the API's available on both our Front-End (React) and Back-End (Python/Django). Highly recommend using Locize for teams that want to deliver software ready for an international market quickly!</p>
</div>
<div class="author">
<hr>Hassan Mian, CEO<br><a href="https://www.willandskill.se" target="_blank">Will & Skill</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" alt="abb" loading="lazy"></div>
<div class="testimonial-content">
<p>We're using Locize for several projects, which offers different services for our international partners in the whole world.</p>
<p>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 class="row">
<div class="col-lg-3 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/panelista.png" alt="panelista" loading="lazy"></div>
<div class="testimonial-content">
<p>Locize makes it a lot easier to manage multiple languages. We quickly added a third language for our application, and it was pretty fun as well as there is a gamification component when always trying to reach 100% translated strings.</p>
</div>
<div class="author">
<hr>Anders Palm, Co-Founder<br><a href="https://panelista.com" target="_blank">Panelista</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/barntools.png" alt="barntools" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 17px;">Locize has made translating our web and mobile application incredibly easy. It enables our global team perform the translation work anywhere and anytime. We also get to maintain the translations in realtime.</p>
<p style="font-size: 17px;">It’s definitely a powerful tool when it comes to multi lingual support. </p>
</div>
<div class="author">
<hr>Evan Feng, Manager of Information System<br><a href="https://barntools.com" target="_blank">BarnTools</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/chax.png" alt="chax" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">We are a web development agency in Austria. Our customers have their customers in different countries. In Europe, you typically only have to drive for about an hour until someone speaks a language different to yours. So we were searching for a solution we can integrate directly into our process, and we found Locize. It does everything we need and proved to be usable by our partners!</p>
</div>
<div class="author">
<hr>Simon Jiménez, CTO<br><a href="https://chax.at" target="_blank">Chax.at</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/richland.jpeg" alt="richland" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 20px;">Locize kept us from reinventing the wheel. :-)</p>
<p style="font-size: 20px;">Its convenient,<br>fast and<br>affordable.</p>
</div>
<div class="author">
<hr>Mikhail Khusainov, CEO & founder<br><a href="https://richland.im" target="_blank">RichLand</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 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/frontdesk24.png" alt="frontdesk24" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 15px;">We're using Locize for translating Frontdesk24 (cloud Property Management System) from Russian to English and Hungarian.</p>
<p style="font-size: 15px;">It was pretty easy, and required just a little time of development, most of the work was done without coding and changing the system.</p>
<p style="font-size: 15px; margin-bottom: 0px;">We plan to offer Frontdesk24 outside Russia, and with the help of Locize we can focus on other important aspects of the expansion.</p>
</div>
<div class="author">
<hr>Dmitriy Voronin, CIO<br><a href="https://frontdesk24.ru" target="_blank">Frontdesk24</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/phaver.png" alt="phaver" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 17px;">We needed to quickly roll out a new language version of our platform and wanted to minimize time spent by developers and maximize scalability for new languages in the future.</p>
<p style="font-size: 17px;">Locize was a great match allowing even non-technical people like myself to do translations in a friendly UI and edit those on the fly. </p>
</div>
<div class="author">
<hr>Joonatan Lintala, CEO<br><a href="https://www.phaver.com" target="_blank">Phaver</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/pilotene.svg" alt="pilotene" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">We use Locize for all our REACT based web projects that we create for our customer. This simplifies the process of translation to Norwegian, and allows our customer to contribute to the translation process without knowing any coding.</p>
<p style="font-size: 15px; margin-bottom: 0px;">ProsessPilotene is Norway's largest company that focus on customer driven transformation with the use of Microsoft software, such as Dynamics 365, Teams and Azure.</p>
</div>
<div class="author">
<hr>Frode Stenstrøm, Senior advisor and COO<br><a href="https://prosesspilotene.no" target="_blank">ProsessPilotene as</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/airtm.png" alt="airtm" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 20px;">Since implementing Locize on the Airtm platform, our product team has been able to quickly and easily make changes to text in production without wasting our developers' valuable time.</p>
</div>
<div class="author">
<hr>Alex Ziehm, Product Manager<br><a href="https://www.airtm.com" target="_blank">Airtm</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 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/rebill.png" alt="rebill" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 20px;">Locize is amazing because it allows me to translate or edit the content of our platform without having technical knowledge.</p>
<p style="font-size: 20px;">This allows our developers to focus on the new platform features and our core business.</p>
</div>
<div class="author">
<hr>Ariel Díaz Ailán, COO<br><a href="https://rebill.to" target="_blank">Rebill, Inc.</a>
</div>
</div>
</div>
<div class="col-lg-6 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/czarnikow.jpg" alt="czarnikow" loading="lazy"></div>
<div class="testimonial-content">
<p>For a global company such as Czarnikow, it is vital that we can provide multi-language access to our tools and services.</p>
<p>This is why we have worked with Locize to provide translated language versions for Czapp, our interactive client platform.</p>
<p>As Czapp is a fast moving digitial service, Locize allows us to simultaneously work on translations without impeding our innovative development work.</p><img class="grayscale" style="max-height: 30px; max-width: 100%; float: right;" src="img/customers/czapp.jpg">
</div>
<div class="author">
<hr>Chris Hargraves, Head of <a href="https://www.czapp.com" target="_blank">Czapp</a>, Marketing and Communications<br><a href="https://www.czarnikow.com" target="_blank">Czarnikow</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/skodel.png" alt="skodel" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 18px;">Locize has proven to be a crucial part of our stack allowing us to quickly build wellbeing support solutions across a series of languages. Adding new languages and content is incredibly easy and I cannot understate how much time this tool will save you in managing simple and complex i18n setups.</p>
</div>
<div class="author">
<hr>Huon Peard, CTO and Co-Founder<br><a href="https://skodel.com" target="_blank">Skodel</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 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/spiff3d.svg" alt="spiff3d" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 17px;">Locize has been instrumental to us at Spiff3D for use in quickly translating our English-only text to all languages we need to support. We found out about Locize through an open-source package, and gave it a trial. </p>
<p style="font-size: 17px;">The team has been responsive via email, and have solved all our issues quickly. The costs are competitive. And we're looking forward to continued use in the future as we expand the functionality of our platform which pushes boundaries.</p>
<p style="font-size: 17px;">We haven't fully utilized all the features yet, but look forward to some more integrations as our product roadmap expands into 2022.</p>
<p style="font-size: 17px; margin-bottom: 5px;">Keep up the good work.</p>
</div>
<div class="author">
<hr>Liam Parker, Senior Developer<br><a href="https://spiff3d.com" target="_blank">Spiff3D</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/pool.png" alt="pool" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 17px;">We used to use a Google spreadsheet to manage all of our translation data, and it would constantly get messed up by contributors and our team.</p>
<p style="font-size: 17px;">Using Locize has been a boon on our development process, and the developers don’t even need to get involved when adding new languages or translators! Fantastic.</p>
</div>
<div class="author">
<hr>Chuck Bergeron, Frontend Lead<br><a href="https://pooltogether.com" target="_blank">PoolTogether Labs</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 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: 24px;">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>
<div class="row">
<div class="col-lg-3 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/maul.png" alt="maul" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 17px;">We're a small but growing company that needed a way to easily translate our website to multiple languages.<br>Having to redeploy our site every time to update translations was painful and time consuming.</p>
<p style="font-size: 18px;">It's so much more pleasant to work on translations now that we can update them through Locize!</p>
</div>
<div class="author">
<hr>Hrafnkell Palsson, Cofounder and CTO<br><a href="https://maul.is" target="_blank">maul</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 class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/pitchler.svg" alt="pitchler" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16.5px;">We want to help jobs candidates and employers to find each other in a dysfunctional job market.</p>
<p style="font-size: 17.5px;">We found Locize as a simple but powerful tool to use and engage people to help to translate both within our company and outside. Our development strategy is to use top of the line tools instead of develop it by ourselves.</p>
</div>
<div class="author">
<hr>Peter Thorin, founder and CEO<br><a href="https://www.pitchler.com" target="_blank">Pitchler Global AB</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-4 col-sm-12" id="beelance">
<div class="testimonial testimonial-fullwidth">
<div class="testimonial-title"><img class="grayscale" style="max-height: 50px; max-width: 100%;" src="img/customers/beelance.png" alt="beelance" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 18px;">Locize helped us to easily manage translations in different languages on our platform.</p>
<p style="font-size: 18px;">We went from sending requests to the dev team to modify a static json file to anyone in the business team being able to edit on the fly and translate asynchronously as our translators don't have the same availabilities.</p>
<p style="font-size: 18px;">Support was also very reactive and fixed a bug in under 1 hour after it was reported. I would recommend for use with i18next on a React.js platform.</p>
</div>
<div class="author">
<hr>PY Bertaud, Product Owner<br><a href="https://beelance.io" target="_blank">Beelance</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 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/etranslate.png" alt="etranslate" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 16px;">The Locize platform has successfully helped us to manage translation faster for our clients. We have used Locize for around a year and once you get to know the interface, you will be surprised how many hours you can save managing translation of system strings in various formats.</p>
<p style="font-size: 16px;">The user interface is easy to use and it gives us a great and flexible overview of the languages for each project. Sometimes we need to work with export formats, as we work with the content in our own Translation Management system to benefit from translation memory from previous projects – here Locize does an excellent job allowing us to export the string in JSON and XLIFF format, and afterwards import the strings smoothly back to the system. This is a great feature.</p>
<p style="font-size: 16px; margin-bottom: 10px;">We can highly recommend using Locize for your translation projects.</p>
</div>
<div class="author">
<hr>Nick Rene Jensen, Partner and Co-Founder<br><a href="https://etranslate.dk" target="_blank">eTranslate ApS</a>
</div>
</div>
</div>
<div class="col-lg-6 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/creadi.svg" alt="creadi" loading="lazy"></div>
<div class="testimonial-content">
<p style="font-size: 19px;">Let's be honest, proper localization is hard. It's especially challenging in situations where you have to build on existing code. However, Locize made that process extremely smooth. We could basically set up our language experiment within days, what otherwise would have taken months.</p>
<p style="font-size: 19px; margin-bottom: 10px;">What makes Locize stand out from the rest is the focus on developer-friendly tools. These plugins for react and other popular front-end libraries made implementation a breeze. Together with an accessible editing platform, fair pricing and fantastic support, we can only but recommend Locize as localization-as-a-service solution to everyone.</p>
</div>
<div class="author">
<hr>Christophe Schwyzer, Lead UI/Front-end<br><a href="https://www.creadi.ch" target="_blank">Creadi AG</a>
</div>
</div>
</div>
</div>
<div class="row">