forked from uservoice/uservoice-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings.txt
2907 lines (2907 loc) · 82.6 KB
/
strings.txt
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
[[Uncategorized]]
[%@ (required)]
en = %@ (required)
ca = %@ (required)
cs = %@ (required)
da = %@ (required)
de = %@ (required)
el = %@ (required)
en-GB = %@ (required)
es = %@ (required)
fi = %@ (required)
fr = %@ (required)
hr = %@ (required)
hu = %@ (required)
id = %@ (required)
it = %@ (required)
ja = %@ (required)
ko = %@ (required)
ms = %@ (required)
nb = %@ (required)
nl = %@ (required)
pl = %@ (required)
pt = %@ (required)
pt-PT = %@ (required)
ro = %@ (required)
ru = %@ (required)
sk = %@ (required)
sv = %@ (required)
th = %@ (required)
tr = %@ (required)
uk = %@ (required)
vi = %@ (required)
zh-Hans = %@ (required)
zh-Hant = %@ (required)
[%@ ideas]
en = %@ ideas
ca = %@ ideas
cs = %@ ideas
da = %@ ideas
de = %@ ideas
el = %@ ideas
en-GB = %@ ideas
es = %@ ideas
fi = %@ ideas
fr = %@ ideas
hr = %@ ideas
hu = %@ ideas
id = %@ ideas
it = %@ ideas
ja = %@ ideas
ko = %@ ideas
ms = %@ ideas
nb = %@ ideas
nl = %@ ideas
pl = %@ ideas
pt = %@ ideas
pt-PT = %@ ideas
ro = %@ ideas
ru = %@ ideas
sk = %@ ideas
sv = %@ ideas
th = %@ ideas
tr = %@ ideas
uk = %@ ideas
vi = %@ ideas
zh-Hans = %@ ideas
zh-Hant = %@ ideas
[%d people]
en = %d people
ca = %d people
cs = %d people
da = %d people
de = %d people
el = %d people
en-GB = %d people
es = %d people
fi = %d people
fr = %d people
hr = %d people
hu = %d people
id = %d people
it = %d people
ja = %d people
ko = %d people
ms = %d people
nb = %d people
nl = %d people
pl = %d people
pt = %d people
pt-PT = %d people
ro = %d people
ru = %d people
sk = %d people
sv = %d people
th = %d people
tr = %d people
uk = %d people
vi = %d people
zh-Hans = %d people
zh-Hant = %d people
[(none)]
en = (none)
ca = (none)
cs = (none)
da = (none)
de = (none)
el = (none)
en-GB = (none)
es = (none)
fi = (none)
fr = (none)
hr = (none)
hu = (none)
id = (none)
it = (none)
ja = (none)
ko = (none)
ms = (none)
nb = (none)
nl = (none)
pl = (none)
pt = (none)
pt-PT = (none)
ro = (none)
ru = (none)
sk = (none)
sv = (none)
th = (none)
tr = (none)
uk = (none)
vi = (none)
zh-Hans = (none)
zh-Hant = (none)
[(required)]
en = (required)
ca = (obligatori)
cs = (povinné)
da = (obligatorisk)
de = (erforderlich)
el = (απαιτείται)
en-GB = (required)
es = (obligatorio)
fi = (vaaditaan)
fr = (obligatoire)
hr = (obvezno)
hu = (kötelező)
id = (wajib diisi)
it = (obbligatorio)
ja = (必須)
ko = (필수)
ms = (diperlukan)
nb = (obligatorisk)
nl = (verplicht)
pl = (wymagane)
pt = (obrigatório)
pt-PT = (obrigatório)
ro = (obligatoriu)
ru = (обязательно)
sk = (povinné)
sv = (obligatoriskt)
th = (จำเป็น)
tr = (zorunlu)
uk = (обов'язково)
vi = (bắt buộc)
zh-Hans = (必须填写)
zh-Hant = (必須填寫)
[1 idea]
en = 1 idea
ca = 1 idea
cs = 1 idea
da = 1 idea
de = 1 idea
el = 1 idea
en-GB = 1 idea
es = 1 idea
fi = 1 idea
fr = 1 idea
hr = 1 idea
hu = 1 idea
id = 1 idea
it = 1 idea
ja = 1 idea
ko = 1 idea
ms = 1 idea
nb = 1 idea
nl = 1 idea
pl = 1 idea
pt = 1 idea
pt-PT = 1 idea
ro = 1 idea
ru = 1 idea
sk = 1 idea
sv = 1 idea
th = 1 idea
tr = 1 idea
uk = 1 idea
vi = 1 idea
zh-Hans = 1 idea
zh-Hant = 1 idea
[1 person]
en = 1 person
ca = 1 person
cs = 1 person
da = 1 person
de = 1 person
el = 1 person
en-GB = 1 person
es = 1 person
fi = 1 person
fr = 1 person
hr = 1 person
hu = 1 person
id = 1 person
it = 1 person
ja = 1 person
ko = 1 person
ms = 1 person
nb = 1 person
nl = 1 person
pl = 1 person
pt = 1 person
pt-PT = 1 person
ro = 1 person
ru = 1 person
sk = 1 person
sv = 1 person
th = 1 person
tr = 1 person
uk = 1 person
vi = 1 person
zh-Hans = 1 person
zh-Hant = 1 person
[A suggestion with this title already exists. Please change the title.]
en = A suggestion with this title already exists. Please change the title.
ca = Ja hi ha un suggeriment amb aquest títol. Canvieu el títol.
cs = Návrh s tímto názvem již existuje.Změňte prosím název.
da = Der findes allerede et forslag med denne titel. Ændr venligst titlen.
de = Es ist bereits ein Vorschlag mit diesem Titel vorhanden. Bitte ändern Sie den Titel.
el = Υπάρχει ήδη μια πρόταση με αυτό τον τίτλο. Παρακαλούμε αλλάξτε τον τίτλο.
en-GB = A suggestion with this title already exists. Please change the title.
es = Ya existe una sugerencia con este título. Por favor, cambia el título.
fi = Samanniminen ehdotus on jo olemassa. Käytä jotakin muuta nimeä.
fr = Une suggestion portant ce titre existe déjà. Modifiez le titre.
hr = Prijedlog s ovim naslovom već postoji. Molimo promijenite naslov.
hu = Már van javaslat ezzel a címmel. Változtassa meg a címet.
id = Saran dengan judul ini sudah ada. Ubah judulnya.
it = Esiste già un suggerimento con questo titolo. Scegli un titolo diverso.
ja = 同じタイトルのアドバイスは既に投稿されています。タイトルを変更してください。
ko = 같은 제목의 제안이 이미 있습니다. 제목을 변경하세요.
ms = Cadangan dengan tajuk ini sudah wujud. Sila tukar tajuk.
nb = Det finnes allerede et forslag med denne tittelen. Endre tittelen.
nl = Een suggestie met deze naam bestaat al. Wijzig de naam.
pl = Sugestia o tym tytule już istnieje. Zmień tytuł.
pt = Já existe uma sugestão com este título. Altere o título.
pt-PT = Já existe uma sugestão com este título. Altere o título, por favor.
ro = Există deja o sugestie cu acest titlu. Vă rugăm să modificaţi titlul.
ru = Предложение с таким названием уже существует. Измените название.
sk = Návrh s týmto názvom už existuje. Zmeňte prosím názov.
sv = Det finns redan ett förslag med den här rubriken. Välj en annan rubrik.
th = มีคำแนะนำชื่อนี้อยู่แล้วโปรดเปลี่ยนชื่อ
tr = Bu başlıkta bir öneri zaten var Lütfen başlığı değiştirin.
uk = Пропозиція з такою назвою вже існує. Змініть назву.
vi = Đã có một gợi ý với tiêu đề này. Hãy thay đổi tiêu đề.
zh-Hans = 已有一个同样标题的建议。请更改标题。
zh-Hant = 已有一個同樣標題的建議。請更改標題。
[Add a comment]
en = Add a comment
ca = Add a comment
cs = Add a comment
da = Add a comment
de = Add a comment
el = Add a comment
en-GB = Add a comment
es = Add a comment
fi = Add a comment
fr = Add a comment
hr = Add a comment
hu = Add a comment
id = Add a comment
it = Add a comment
ja = Add a comment
ko = Add a comment
ms = Add a comment
nb = Add a comment
nl = Add a comment
pl = Add a comment
pt = Add a comment
pt-PT = Add a comment
ro = Add a comment
ru = Add a comment
sk = Add a comment
sv = Add a comment
th = Add a comment
tr = Add a comment
uk = Add a comment
vi = Add a comment
zh-Hans = Add a comment
zh-Hant = Add a comment
[Additional Details]
en = Additional Details
ca = Additional Details
cs = Additional Details
da = Additional Details
de = Additional Details
el = Additional Details
en-GB = Additional Details
es = Additional Details
fi = Additional Details
fr = Additional Details
hr = Additional Details
hu = Additional Details
id = Additional Details
it = Additional Details
ja = Additional Details
ko = Additional Details
ms = Additional Details
nb = Additional Details
nl = Additional Details
pl = Additional Details
pt = Additional Details
pt-PT = Additional Details
ro = Additional Details
ru = Additional Details
sk = Additional Details
sv = Additional Details
th = Additional Details
tr = Additional Details
uk = Additional Details
vi = Additional Details
zh-Hans = Additional Details
zh-Hant = Additional Details
[All]
en = All
ca = Tot
cs = Vše
da = Alle
de = Alle
el = Όλα
en-GB = All
es = Todo
fi = Kaikki
fr = Tout
hr = Sve
hu = Minden
id = Semua
it = Tutto
ja = すべて
ko = 모두
ms = Semua
nb = Alle
nl = Alles
pl = Wszystkie
pt = Tudo
pt-PT = Todos
ro = Toate
ru = Все
sk = Všetko
sv = Alla
th = ทั้งหมด
tr = Tümü
uk = Усі
vi = Tất cả
zh-Hans = 全部
zh-Hant = 全部
[All Articles]
en = All Articles
ca = Tots els articles
cs = Všechny články
da = Alle artikler
de = Alle Artikel
el = Όλα τα άρθρα
en-GB = All Articles
es = Todos los artículos
fi = Kaikki artikkelit
fr = Tous les articles
hr = Svi članci
hu = Minden cikk
id = Semua Artikel
it = Tutti gli articoli
ja = 全ての内容
ko = 모든 문서
ms = Semua Artikel
nb = Alle artikler
nl = Alle artikelen
pl = Wszystkie artykuły
pt = Todos os artigos
pt-PT = Todos os artigos
ro = Toate articolele
ru = Все статьи
sk = Všetky články
sv = Alla artiklar
th = บทความทั้งหมด
tr = Tüm Makaleler
uk = Усі статті
vi = Tất cả Bài viết
zh-Hans = 所有文章
zh-Hant = 所有文章
[Are any of these helpful?]
en = Are any of these helpful?
ca = Are any of these helpful?
cs = Are any of these helpful?
da = Are any of these helpful?
de = Are any of these helpful?
el = Are any of these helpful?
en-GB = Are any of these helpful?
es = Are any of these helpful?
fi = Are any of these helpful?
fr = Are any of these helpful?
hr = Are any of these helpful?
hu = Are any of these helpful?
id = Are any of these helpful?
it = Are any of these helpful?
ja = Are any of these helpful?
ko = Are any of these helpful?
ms = Are any of these helpful?
nb = Are any of these helpful?
nl = Are any of these helpful?
pl = Are any of these helpful?
pt = Are any of these helpful?
pt-PT = Are any of these helpful?
ro = Are any of these helpful?
ru = Are any of these helpful?
sk = Are any of these helpful?
sv = Are any of these helpful?
th = Are any of these helpful?
tr = Are any of these helpful?
uk = Are any of these helpful?
vi = Are any of these helpful?
zh-Hans = Are any of these helpful?
zh-Hant = Are any of these helpful?
[Articles]
en = Articles
ca = Articles
cs = Články
da = Artikler
de = Artikel
el = Άρθρα
en-GB = Articles
es = Artículos
fi = Artikkelit
fr = Articles
hr = Članci
hu = Cikkek
id = Artikel
it = Articoli
ja = 内容
ko = 문서
ms = Artikel
nb = Artikler
nl = Artikelen
pl = Artykuły
pt = Artigos
pt-PT = Artigos
ro = Articole
ru = Статьи
sk = Články
sv = Artiklar
th = บทความ
tr = Makaleler
uk = Статті
vi = Bài viết
zh-Hans = 文章
zh-Hant = 文章
[Back]
en = Back
ca = Endarrere
cs = Zpět
da = Tilbage
de = Zurück
el = Επιστροφή
en-GB = Back
es = Atrás
fi = Takaisin
fr = Retour
hr = Natrag
hu = Vissza
id = Kembali
it = Indietro
ja = 戻る
ko = 뒤로
ms = Kembali
nb = Tilbake
nl = Terug
pl = Wstecz
pt = Voltar
pt-PT = Voltar
ro = Înapoi
ru = Назад
sk = Späť
sv = Tillbaka
th = กลับ
tr = Geri
uk = Назад
vi = Trở lại
zh-Hans = 返回
zh-Hant = 返回
[Cancel]
en = Cancel
ca = Cancel·la
cs = Storno
da = Annuller
de = Abbrechen
el = Άκυρο
en-GB = Cancel
es = Cancelar
fi = Peruuta
fr = Annuler
hr = Otkaži
hu = Mégse
id = Batal
it = Annulla
ja = キャンセル
ko = 취소
ms = Batal
nb = Avbryt
nl = Annuleren
pl = Anuluj
pt = Cancelar
pt-PT = Cancelar
ro = Anulare
ru = Отмена
sk = Storno
sv = Avbryt
th = ยกเลิก
tr = İptal
uk = Скасувати
vi = Hủy
zh-Hans = 取消
zh-Hant = 取消
[Category]
en = Category
ca = Categoria
cs = Kategorie
da = Kategori
de = Kategorie
el = Κατηγορία
en-GB = Category
es = Categoría
fi = Luokka
fr = Catégorie
hr = Kategorija
hu = Kategória
id = Kategori
it = Categoria
ja = カテゴリ
ko = 카테고리
ms = Kategori
nb = Kategori
nl = Categorie
pl = Kategoria
pt = Categoria
pt-PT = Categoria
ro = Categorie
ru = Категория
sk = Kategória
sv = Kategori
th = หมวดหมู่
tr = Kategori
uk = Категорія
vi = Thể loại
zh-Hans = 类别
zh-Hant = 類別
[Close]
en = Close
ca = Tanca
cs = Zavřít
da = Luk
de = Schließen
el = Κλείσιμο
en-GB = Close
es = Cerrar
fi = Sulje
fr = Fermer
hr = Zatvori
hu = Bezárás
id = Tutup
it = Chiudi
ja = 閉じる
ko = 닫기
ms = Tutup
nb = Lukk
nl = Sluiten
pl = Zamknij
pt = Fechar
pt-PT = Fechar
ro = Închidere
ru = Закрыть
sk = Zavrieť
sv = Stäng
th = ปิด
tr = Kapat
uk = Закрити
vi = Đóng
zh-Hans = 关闭
zh-Hant = 關閉
[Comment]
en = Comment
ca = Comentari
cs = Komentář
da = Kommenter
de = Kommentar
el = Σχόλιο
en-GB = Comment
es = Comentario
fi = Kommentti
fr = Commentaire
hr = Komentar
hu = Hozzászólás
id = Komentar
it = Commento
ja = コメント
ko = 댓글
ms = Komen
nb = Kommentar
nl = Opmerking
pl = Komentarz
pt = Comentário
pt-PT = Comentar
ro = Comentariu
ru = Комментарий
sk = Komentár
sv = Kommentar
th = ความเห็น
tr = Yorum yap
uk = Коментар
vi = Bình luận
zh-Hans = 评论
zh-Hant = 評論
[Description (optional)]
en = Description (optional)
ca = Descripció (opcional)
cs = Popis (volitelné)
da = Beskrivelse (valgfrit)
de = Beschreibung (optional)
el = Περιγραφή (προαιρετικά)
en-GB = Description (optional)
es = Descripción (opcional)
fi = Kuvaus (valinnainen)
fr = Description (facultatif)
hr = Opis (opcionalno)
hu = Ismertetés (választható)
id = Deskripsi (opsional)
it = Descrizione (facoltativa)
ja = 詳細 (オプション)
ko = 설명(선택 사항)
ms = Keterangan (tidak wajib)
nb = Beskrivelse (valgfritt)
nl = Beschrijving (optioneel)
pl = Opis (opcjonalny)
pt = Descrição (opcional)
pt-PT = Descrição (opcional)
ro = Descriere (opţională)
ru = Описание (необязательно)
sk = Opis (voliteľné)
sv = Beskrivning (valfritt)
th = คำอธิบาย (ไม่ใส่ก็ได้)
tr = Açıklama (isteğe bağlı)
uk = Опис (необов'язковий)
vi = Mô tả (tùy chọn)
zh-Hans = 说明(可有可无)
zh-Hant = 說明(可有可無)
[Do you still want to contact us?]
en = Do you still want to contact us?
ca = Encara voleu contactar amb nosaltres?
cs = Přejete si nás stále kontaktovat?
da = Vil du stadig kontakte os?
de = Möchten Sie uns noch kontaktieren?
el = Θέλετε ακόμα να επικοινωνήσετε μαζί μας;
en-GB = Do you still want to contact us?
es = ¿Sigues deseando ponerte en contacto con nosotros?
fi = Haluatko yhä ottaa meihin yhteyttä?
fr = Souhaitez-vous nous contacter ?
hr = Još uvijek naš želite kontaktirati?
hu = Szeretné felvenni velünk a kapcsolatot?
id = Apakah Anda masih ingin menghubungi kami?
it = Vuoi ancora contattarci?
ja = まだお問い合わせをご希望ですか?
ko = 저희에게 연락하시겠습니까?
ms = Adakah anda masih mahu menghubungi kami?
nb = Vil du fremdeles kontakte oss?
nl = Wil je nog steeds contact met ons opnemen?
pl = Czy nadal chcesz się z nami skontaktować?
pt = Ainda quer entrar em contato conosco?
pt-PT = Ainda pretende contactar-nos?
ro = Doriţi totuşi să ne contactaţi?
ru = Все равно написать нам?
sk = Chcete nás stále kontaktovať?
sv = Vill du fortfarande kontakta oss?
th = คุณยังต้องการติดต่อเราอยู่ไหม
tr = Bizimle iletişime geçmeyi yine de istiyor musunuz?
uk = Усе одно бажаєте написати нам?
vi = Bạn vẫn muốn liên hệ chúng tôi?
zh-Hans = 您仍要与我们联络吗?
zh-Hant = 你仍要與我們聯絡嗎?
[Do you still want to post your own idea?]
en = Do you still want to post your own idea?
ca = Do you still want to post your own idea?
cs = Do you still want to post your own idea?
da = Do you still want to post your own idea?
de = Do you still want to post your own idea?
el = Do you still want to post your own idea?
en-GB = Do you still want to post your own idea?
es = Do you still want to post your own idea?
fi = Do you still want to post your own idea?
fr = Do you still want to post your own idea?
hr = Do you still want to post your own idea?
hu = Do you still want to post your own idea?
id = Do you still want to post your own idea?
it = Do you still want to post your own idea?
ja = Do you still want to post your own idea?
ko = Do you still want to post your own idea?
ms = Do you still want to post your own idea?
nb = Do you still want to post your own idea?
nl = Do you still want to post your own idea?
pl = Do you still want to post your own idea?
pt = Do you still want to post your own idea?
pt-PT = Do you still want to post your own idea?
ro = Do you still want to post your own idea?
ru = Do you still want to post your own idea?
sk = Do you still want to post your own idea?
sv = Do you still want to post your own idea?
th = Do you still want to post your own idea?
tr = Do you still want to post your own idea?
uk = Do you still want to post your own idea?
vi = Do you still want to post your own idea?
zh-Hans = Do you still want to post your own idea?
zh-Hant = Do you still want to post your own idea?
[Don't save]
en = Don't save
ca = No desis
cs = Neukládat
da = Gem ikke
de = Nicht speichern
el = Να μην αποθηκευτεί
en-GB = Don't save
es = No guardar
fi = Älä tallenna
fr = Ne pas enregistrer
hr = Nemoj spremiti
hu = Ne mentse
id = Jangan simpan
it = Non salvare
ja = 保存しない
ko = 저장 안 함
ms = Jangan simpan
nb = Ikke lagre
nl = Niet opslaan
pl = Nie zapisuj
pt = Não salvar
pt-PT = Não guardar
ro = Nu se salvează
ru = Не сохранять
sk = Neukladať
sv = Spara inte
th = ไม่บันทึก
tr = Kaydetme
uk = Не зберігати
vi = Không lưu
zh-Hans = 不保存
zh-Hant = 不儲存
[Done]
en = Done
ca = Fet
cs = Hotovo
da = Færdig
de = Fertig
el = Τέλος
en-GB = Done
es = Terminado
fi = Valmis
fr = Terminé
hr = Gotovo
hu = Kész
id = Selesai
it = Fine
ja = 終了
ko = 완료
ms = Selesai
nb = Fullført
nl = Gereed
pl = Gotowe
pt = Concluído
pt-PT = Feito
ro = Terminat
ru = Готово
sk = Hotovo
sv = Klart
th = เสร็จสิ้น
tr = Bitti
uk = Виконано
vi = Xong
zh-Hans = 完成
zh-Hant = 完成
[Email]
en = Email
ca = Correu electrònic
cs = E-mail
da = E-mail
de = Mail
el = Email
en-GB = Email
es = Correo
fi = Sähköposti
fr = Courriel
hr = E-pošta
hu = E-mail
id = Email
it = Email
ja = メール
ko = 이메일
ms = E-mel
nb = E-post
nl = E-mail
pl = E-mail
pt = Email
pt-PT = E-mail
ro = E-mail
ru = Эл. почта
sk = E-mail
sv = E-post
th = อีเมล
tr = E-posta
uk = Ел. пошта
vi = Email
zh-Hans = 邮件
zh-Hant = 信件
[Enter UserVoice password for %@]
en = Enter UserVoice password for %@
ca = Introduïu la contrasenya de l’UserVoice per %@
cs = Zadejte heslo UserVoice pro %@
da = Indtast UserVoice-adgangskode for %@
de = UserVoice-Passwort eingeben für %@
el = Καταχωρήστε τον κωδικό πρόσβασης στο UserVoice για %@
en-GB = Enter UserVoice password for %@
es = Introduce tu contraseña de UserVoice para %@
fi = Anna UserVoice-salasana: %@
fr = Entrez le mot de passe UserVoice pour %@
hr = Upišite zaporku UserVoice za %@
hu = Adja meg a UserVoice jelszót: %@
id = Masukkan kata sandi UserVoice untuk %@
it = Inserisci la password UserVoice per %@
ja = %@用にUserVoiceのパスワードを入力してください
ko = %@의 UserVoice 비밀번호를 입력하세요
ms = Masukkan kata laluan UserVoice untuk %@
nb = Skriv inn UserVoice-passordet for %@
nl = Geef UserVoice-wachtwoord op voor %@
pl = Wprowadź hasło usługi UserVoice dla: %@
pt = Digite a senha do UserVoice de %@
pt-PT = Introduza a palavra-passe do UserVoice para %@
ro = Introduceţi parola UserVoice pentru %@
ru = Введите пароль UserVoice для %@
sk = Zadajte heslo UserVoice pre %@
sv = Ange UserVoice-lösenord för %@
th = ใส่รหัสผ่าน UserVoice สำหรับ%@
tr = %@ için UserVoice parolasını girin
uk = Уведіть пароль UserVoice для %@
vi = Nhập mật khẩu UserVoice cho %@
zh-Hans = 输入 %@ 的 UserVoice 密码
zh-Hant = 輸入 %@ 的 UserVoice 密碼
[enter value]
en = enter value
ca = enter value
cs = enter value
da = enter value
de = enter value
el = enter value
en-GB = enter value
es = enter value
fi = enter value
fr = enter value
hr = enter value
hu = enter value
id = enter value
it = enter value
ja = enter value
ko = enter value
ms = enter value
nb = enter value
nl = enter value
pl = enter value
pt = enter value
pt-PT = enter value
ro = enter value
ru = enter value
sk = enter value
sv = enter value
th = enter value
tr = enter value
uk = enter value
vi = enter value
zh-Hans = enter value
zh-Hant = enter value
[Enter your email]
en = Enter your email
ca = Introduïu el correu electrònic
cs = Zadejte svůj e-mail
da = Indtast din e-mail
de = Mail eingeben
el = Καταχωρήστε το email σας
en-GB = Enter your email
es = Introduce tu dirección de correo electrónico
fi = Anna sähköpostiosoitteesi
fr = Entrez votre courriel
hr = Upiši svoju adresu e-pošte
hu = E-mail megadása
id = Masukkan email
it = Inserisci l'email
ja = Eメールを入力する
ko = 이메일 입력
ms = Masukkan e-mel anda
nb = Skriv inn e-postadressen din
nl = Geef je e-mailadres op
pl = Podaj adres e-mail
pt = Digite seu email
pt-PT = Introduza o e-mail
ro = Introduceţi e-mailul dvs.
ru = Введите эл. адрес
sk = Zadajte svoj e-mail
sv = Ange din e-postadress
th = ใส่อีเมลของคุณ
tr = E-postanızı girin
uk = Уведіть адресу ел. пошти
vi = Nhập email của bạn
zh-Hans = 输入您的电邮地址
zh-Hant = 輸入你的電郵地址
[Error]
en = Error
ca = Error
cs = Chyba
da = Fejl
de = Fehler
el = Σφάλμα
en-GB = Error
es = Error
fi = Virhe
fr = Erreur
hr = Pogreška
hu = Hiba!
id = Kesalahan
it = Errore
ja = エラー
ko = 오류
ms = Ralat
nb = Feil
nl = Fout
pl = Błąd
pt = Erro
pt-PT = Erro
ro = Eroare
ru = Ошибка
sk = Chyba
sv = Fel
th = ข้อผิดพลาด
tr = Hata
uk = Помилка
vi = Lỗi
zh-Hans = 错误
zh-Hant = 錯誤
[Feedback]
en = Feedback
ca = Comentaris
cs = Zpětná vazba
da = Tilbagemelding
de = Feedback
el = Προτάσεις
en-GB = Feedback
es = Comentarios
fi = Palaute
fr = Suggestions
hr = Vaše mišljenje
hu = Visszajelzés
id = Masukan
it = Commenti
ja = ご意見・ご感想
ko = 피드백
ms = Maklum Balas
nb = Tilbakemelding
nl = Feedback
pl = Opinie
pt = Comentário
pt-PT = Feedback
ro = Feedback
ru = Отзыв
sk = Spätná väzba
sv = Feedback
th = ข้อเสนอแนะ
tr = Geribildirim
uk = Відгук
vi = Phản hồi
zh-Hans = 反馈
zh-Hant = 意見與建議
[Feedback & Support]
en = Feedback & Support
ca = Comentaris i ajuda
cs = Zpětná vazba a podpora
da = Feedback & support
de = Feedback & Support
el = Προτάσεις και υποστήριξη
en-GB = Feedback & Support
es = Comentarios y asistencia