-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtranslations.js
4848 lines (4260 loc) · 169 KB
/
translations.js
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
window.supported_ui_languages = ['en','nl'];
window.translations = {
"Privacy":{
},
"chat":{
"en":"Chat",
"nl":"Chatten",
},
"chat_with_cleopatra":{
"en":"Talk to Cleopatra",
"nl":"Praat met Cleopatra",
"functions":["enable_microphone","enable_speaker"]
},
"write_stories":{
"en":"Write stories",
"nl":"Schrijf verhalen"
},
"tell_a_fairytale":{
"en":"Tell me a fairytale",
"nl":"Vertel me een sprookje"
},
"make_pictures":{
"en":"Generate images",
"nl":"Genereer afbeeldingen"
},
"make_music":{
"en":"Make music",
"nl":"Maak muziek"
},
"improve_a_document":{
"en":"Improve a document",
"nl":"Verbeter een document"
},
"summarize_a_document":{
"en":"Summarize a document",
"nl":"Document samenvatten"
},
"translate_a_document":{
"en":"Translate a document",
"nl":"Document vertalen"
},
"take_meeting_notes":{
"en":"Transcribe a meeting",
"nl":"Maak automatisch vergadering aantekeningen"
},
"write_code":{
"en":"Write computer code",
"nl":"Schrijf programmeercode"
},
"help_with_homework":{
"en":"Help with homework",
"nl":"Help met huiswerk",
},
"ask_medical_questions":{
"en":"Ask medical questions",
"nl":"Stel medische vragen"
},
"live_audio_translation":{
"en":"Live audio translation",
"nl":"Live audio vertaling"
},
"live_camera_translation":{
"en":"Live camera translation",
"nl":"Live camera vertaling"
},
"get_a_hug":{
"en":"I need a hug",
"nl":"Ik heb een knuffel nodig"
},
"Media":{
},
"Camera":{
},
"page_title":{
"all":"Papeg.ai",
},
"intro_text":{
"en":"100% privacy friendly; the AI in this webpage runs completely on your own device. Downloading it does take a while (it's 1.2 gigabytes), but fortunately you only need to do this once. Your browser will keep the AI model in it's cache for next time.",
"nl":"100% privacy vriendelijk; de AI wordt in deze webpagina ingeladen en verwerkt je data volledig op jouw eigen computer. Dat downloaden duurt even (het model is 1.2 gigabyte groot), maar het hoeft gelukkig maar 1 keer, want je browser bewaart het model.",
},
"Free_and_easy_to_use_AI_for_chatting_writing_documents_and_more":{
"en":"Free and easy to use AI for chatting, writing documents and more.", // You don't need to install anything.
"nl":"Gratis en gemakkelijk te gebruiken AI voor chatten en tekstverwerking. ", // Je hoeft niks te installeren.
},
"Privacy_is_guaranteed_because_this_website_downloads_the_AI_models_and_then_processes_your_data_on_your_own_device":{
"en":"100% Privacy is guaranteed because your data never leaves your device. Instead, this website downloads the AI models to your browser, and then processes your data locally.",
"nl":"100% privacy vriendelijk; de AI wordt in deze webpagina ingeladen en verwerkt je data volledig op jouw eigen computer.",
},
"The_more_powerful_your_computer_is_the_more_powerful_AIs_you_can_run":{
"en":"The more powerful your computer is, the more powerful AI's you can run.",
"nl":"Hoe krachtiger je computer is, hoe beter de AI's die je kan draaien.",
},
"You_only_need_to_download_an_AI_once_and_it_will_remain_available":{
"en":"You only need to download an AI once, and it will remain available. Even when the WiFi is switched off.",
"nl":"Je hoeft een AI maar één keer te downloaden, daarna blijft het beschikbaar. Zelfs als je je WiFi uit zet.",
},
"Any_documents_you_edit_or_create_are_also_stored_inside_your_web_browser":{
"en":"Any documents you edit or create are also stored inside your web browser, on your own device, and not in 'the cloud'.",
"nl":"Documenten die je aanmaakt of bewerkt worden in je browser's geheugen opgeslagen, op je eigen apparaat, en niet in 'de cloud'.",
},
"This_website_has_been_developed_by":{
"en":"This website is free of trackers, cookies or any other type of surveillance. It does not collect any personal data. It has been developed by",
"nl":"Deze website bevat geen trackers, cookies of andere vormen van surveillance, en verzamelt geen enkele persoonlijke data. De bouwer is",
},
"a_digital_artist_and_privacy_designer_from_Amsterdam":{
"en":"a digital artist and privacy activist from Amsterdam",
"nl":"een digitale kunstenaar en privacy activist uit Amsterdam",
},
"The_AI_downloads_are_kindly_provided_by":{
"en":"The free AI downloads are made possible by",
"nl":"De gratis AI downloads worden mede mogelijk gemaakt door",
},
"What_is_taking_so_long":{
"en":"What is taking so long?",
"nl":"Waarom duurt het zo lang?",
},
"The_best_way_to_protect_your_privacy_is_to_never_send_your_data_to_an_AI_in_the_cloud_in_the_first_place":{
"en":"The only way to guarantee privacy is to never send your data to an AI in 'the cloud' in the first place",
"nl":"De enige manier om je privacy te garanderen is door je data nooit naar een AI in 'de cloud' te sturen",
},
"Instead_Papeg_ai_brings_the_AI_to_you_by_downloading_a_complete_AI_to_your_device_first":{
"en":"That's why Papeg.ai brings the AI to you, by downloading a complete AI to your device first. This takes a while, but it's worth it!",
"nl":"Daarom download Papeg.ai eerst een volledige AI naar jouw apparaat. Dat duurt even, maar het is het waard!",
},
"sorry_bad_browser":{
"en":"⚠️ Sorry, your browser (or at least the current version) is not supported",
"nl":"⚠️ Sorry, je browser (of in ieder geval de huidige versie) kan dit niet aan",
},
"start_voice_chat":{
"en":"💬 Start voice chat",
"nl":"💬 Start stembediening",
},
"Hello":{
"nl":"Hallo",
},
"OK":{
"nl":"OK",
},
"cancel":{
"en":"Cancel",
"nl":"Annuleren",
},
"Copy":{
"nl":"Kopiëren",
},
"result":{
"en":"Result",
"nl":"Resultaat",
},
"English":{
"en":"🇬🇧 English",
"nl":"🇬🇧 Engels",
},
"Dutch":{
"en":"🇳🇱 Dutch",
"nl":"🇳🇱 Nederlands",
},
"voice":{
"en":"Voice",
"nl":"Stem",
},
"context":{
"en":"Context",
"nl":"Context",
},
"Memory":{
"en":"Memory (context)",
"nl":"Geheugen (context)",
},
"Icon":{
"nl":"Icoon",
},
"command":{
"en":"Command",
"nl":"Opdracht",
},
"tasks":{
"en":"Tasks",
"nl":"Taken",
},
"Settings":{
"nl":"Instellingen",
},
"Settings_imported":{
"nl":"Instellingen geïmporteerd",
},
"Could_not_import_conversation":{
"nl":"Conversatie importeren is niet gelukt",
},
"AI_settings":{
"nl":"AI instellingen",
},
"Preview":{
"nl":"Voorbeeld",
},
"Options":{
"nl":"Opties",
},
"completed":{
"en":"Completed",
"nl":"Klaar",
},
"restart":{
"en":"Restart",
"nl":"Herstart",
},
"Continue":{
"nl":"Schrijf verder",
},
"Rewrite":{
"nl":"Herschrijf",
},
"rewrite":{
"en":"Rewrite",
"nl":"Herschrijf",
},
"Summarize":{
"nl":"Samenvatten",
},
"summarize":{
"en":"Summarize",
"nl":"Samenvatten",
},
"Transcribe":{
"nl":"Notuleer",
},
"Transcribe_to_JSON":{
"nl":"Notuleer naar JSON",
},
"About":{
"nl":"Over Papeg.ai",
},
"Notifications":{
"nl":"Notificaties",
},
"Speak":{
"nl":"Zeg hardop",
},
"speak":{
"en":"Speaking",
"nl":"Spreken",
},
"Done":{
"nl":"Klaar",
},
"Insert":{
"nl":"Toevoegen",
},
"image":{
"en":"Image",
"nl":"Plaatje",
},
"imager":{
"en":"Image",
"nl":"Plaatje",
},
"Scan":{
"nl":"Scan",
},
"run":{
"en":"Run",
"nl":"Gaan met die banaan",
},
"Automatic":{
"nl":"Automatisch",
},
"undetermined":{// TODO: improve this
"en":"Audio recording",
"nl":"Audio opname",
},
"online":{
"en":"loaded",
"nl":"actief",
},
"offline":{
"en":"not loaded",
"nl":"inactief",
},
"language":{
"en":"Language",
"nl":"Taal",
},
"Updating":{
"nl":"Momentje",
},
"Reload":{
"nl":"Herlaad",
},
"Details":{
"nl":"Details",
},
"Brightness":{
"en":"Background",
"nl":"Achtergrond",
},
"Light":{
"nl":"Licht",
},
"Dark":{
"nl":"Donker",
},
"Filter":{
},
"Share_a_link":{
"nl":"Deel een link",
},
"Share_this_AI_model":{
"en":"Share this AI",
"nl":"Deel deze AI",
},
"The_link_is_too_long_to_share":{
"nl":"De link is te lang om te delen",
},
"Write_a_paragraph_about":{
"en":"Write a paragraph about ...",
"nl":"Schrijf een paragraaf over ...",
},
"I_feel_lucky":{
"nl":"Ik gok 't",
},
"Total":{
"nl":"Totaal",
},
"Research":{
"nl":"Onderzoeken",
},
"Memory_use":{
"nl":"Geheugen gebruik",
},
"A_new_version_is_available":{
"en":"An update is available",
"nl":"Er is een update beschikbaar",
},
"Running_in_offline_mode":{
"nl":"Er is geen internet verbinding",
},
"No_internet_connection":{
"nl":"Er is geen internet verbinding",
},
"The_download_may_take_a_while_as_the_file_size_is":{
"en":"The download may take a while, as the file size is",
"nl":"Het downloaden kan even duren, want de bestandsgrootte is",
},
"gigabytes":{
"en":"Gigabytes",
"nl":"Gigabyte",
},
"Cannot_scan":{
"nl":"Kan niet scannen",
},
"role_playing":{
"en":"Role playing",
"nl":"Rollenspel",
},
"creativity":{
"en":"Unpredictability",
"nl":"Onvoorspelbaarheid",
},
"generating":{
"en":"Generating...",
"nl":"Bezig...",
},
"homepage_url":{
"en":"Website",
"nl":"Website",
},
"Days":{// e.g. minutes to go
"nl":"Dagen",
},
"Hours":{
"nl":"Uren",
},
"Minutes":{
"nl":"Minuten",
},
"Seconds":{
"nl":"Seconden",
},
"to_go":{
"nl":"te gaan",
},
"Minutes_elapsed":{
"nl":"Minuten verlopen",
},
"Minutes_and_minutes_elapsed":{
"en":"Minutes & elapsed",
"nl":"Minuten & verlopen",
},
"Detailed":{
"nl":"Gedetailleerd",
},
"Precise":{
"nl":"Precies",
},
/*
"Clock":{
"en":"🕰️ Clock",
"nl":"🕰️ Klok",
},
*/
"Voice_recordings":{
"nl":"Stem opnames",
},
"For_precise_time_keeping_please_press_start_when_the_voice_recording_should_begin":{
"en":"For precise time keeping please press start when a voice recording should begin.",
"nl":"Klik op Start als je klaar bent om te beginnen met een transcriptie.",
},
"continuous_mic":{
"en":"Microphone",
"nl":"Microfoon",
},
"Detect_fast":{
"en":"Detect voice quickly",
"nl":"Detecteer stem snel",
},
"Detect_slow":{
"en":"Detect voice calmly",
"nl":"Detecteer stem rustig",
},
"Detect_slower":{
"en":"Detect voice lazily",
"nl":"Detecteer stem traag",
},
"Continuous_recording":{
"nl":"Continu opnemen",
},
"Transcription_done":{
"en":"Transcription is done",
"nl":"Transcriptie is klaar",
},
// Should states, shown in simple tasks list
"should_stt":{
"en":"🫸..Speech-To-Text",
"nl":"🫸..Spraak-Naar-Text",
},
"should_assistant":{
"en":"🫸..AI",
"nl":"🫸..AI",
},
"should_translation":{
"en":"🫸..Translation",
"nl":"🫸..Vertaling",
},
"should_tts":{
"en":"🫸..Text-To-Speech",
"nl":"🫸..Text-Naar-Spraak",
},
"should_audio_player":{
"en":"🫸..Play audio",
"nl":"🫸..Audio spelen",
},
"should_mp3":{
"en":"🫸..Make MP3",
"nl":"🫸..MP3 maken",
},
"should_imager":{
"en":"🫸..Make image",
"nl":"🫸..Maak afbeelding",
},
"should_musicgen":{
"en":"🫸..Make music",
"nl":"🫸..Muziek maken",
},
"should_blueprint":{
"en":"🫸..Blueprint",
"nl":"🫸..Blauwdruk",
},
"should_play_document":{
"en":"🫸..Play document",
"nl":"🫸..Play document",
},
"should_rag":{
"en":"🫸..Search",
"nl":"🫸..Zoeken",
},
"should_image_to_text":{
"en":"🫸..Image to text",
"nl":"🫸..Afbeelding beschrijven",
},
"should_ocr":{
"en":"🫸..Scan",
"nl":"🫸..Scan",
},
"should_research":{
"en":"🫸..Research",
"nl":"🫸..Onderzoek",
},
"should_proofread":{
"en":"🫸..Proofread",
"nl":"🫸..Corrigeren",
},
"not_loaded_yet":{// shown in top status bar
"nl":"nog niet ingeladen",
},
"loading_progress":{
"en":"loading...",
"nl":"inladen...",
},
"download_progress":{
"en":"AI download progress",
"nl":"AI download voortgang",
},
"Download_complete":{
"nl":"Download klaar",
},
"View_subtitles":{
"nl":"Bekijk ondertiteling",
},
"Edit_subtitles":{
"nl":"Bewerk ondertiteling",
},
"Download_subtitles":{
"nl":"Download ondertiteling",
},
"Generate_subtitles":{
"nl":"Genereer ondertiteling",
},
"There_are_no_tasks_to_process":{
"nl":"Er zijn geen taken om te verwerken",
},
"Overwrite_file":{
"en":"That file name exists, overwrite?",
"nl":"Er bestaat al een bestand met die naam. Overschrijven?",
},
"No_files_selected":{
"en":"No files selected?",
"nl":"Geen bestanden geselecteerd?",
},
"Delete_selected":{
"nl":"Verwijder geselecteerde bestanden",
},
"Invalid_filename":{
"en":"Invalid file name",
"nl":"Ongeldige bestandsnaam",
},
"Invalid_value":{
"nl":"Ongeldige waarde",
},
"Invalid_model_url_provided":{
"nl":"Er is iets mis met de URL van het AI model",
},
"This_model_can_only_continue_writing_text_it_cannot_answer_questions":{
"en":"This is a so called 'base' AI model, which means it's not designed to answer questions or handle instructions. It can only continue writing text.",
"nl":"Dit is een zogenaamd 'base' (basis) AI model, wat betekent dat het alleen tekst kan verder schrijven. Het kan geen vragen beantwoorden or instructies uitvoeren.",
},
"Downloading_update":{
"nl":"Update downloaden",
},
"Maximum_file_size_is_10MB":{
"nl":"Maximale bestandsgrootte die gedownload mag worden is 10MB",
},
/*
"Auto_detect":{
"en":"Auto-detect",
"nl":"Automatisch",
},
*/
"Auto_detect_language":{
"en":"Auto-detect language",
"nl":"Herken taal automatisch",
},
"Recording_audio":{
"en":"Listening",
"nl":"Aan 't luisteren",
},
"Too_short":{
"nl":"Te kort",
},
"Lets_chat":{
"en":"Start the AI!",
"nl":"Start de AI!",
},
"loading_ai_model":{
"en":"Loading AI model...",
"nl":"AI model downloaden",
},
"loaded_ai_model":{
"en":"The AI has loaded",
"nl":"De AI is klaar voor gebruik",
},
"what_does_this_do":{
"en":"What does this do?",
"nl":"Wat doet dit?",
},
// Temperature explanation
"model_creativity_explanation":{
"en":"How creative and varied should the AI be in it's answers?\n\nAI models are basically text predictors. They predict the most likely next word based on the ones that came before. In practise the model creates a short list of about 10 candidates for becoming the next word. \n\nIf you set the model to zero, 'most predictable', it will always select the candidate word at the top of the list. This results in getting more predictable, consistent replies. If you increase unpredictability, the next word is chosen more randomly. If the predictability is set above zero, it means that if you ask the same question multiple times, you will get different answers each time. This would be more useful for creative writing.",
"nl":"AI modellen zijn in de kern text-voorspellers zoals je die kent van je mobiele telefoon, maar dan gebaseerd op veeeeel meer data. Het model voorspelt wat op basis van de voorgaande wooorden een logisch volgende woord zou zijn. In de praktijk maakt het model een lijst van ongeveer 10 kandidaten die het volgende woord kunnen worden. \n\nAls je de onvoorspelbaarheid op nul zet ('feitelijk'), dan wordt altijd het woord met de hoogste waarschijnlijkheidsscore geselecteerd. Als het model creatiever mag zijn, dan wordt het volgende woord met iets meer willekeur gekozen. Dat heeft weer invloed op alle mogelijke volgende woorden, en zo kan een klein verschil in keuze aan het begin van het proces veel invloed hebben op de uitkomst.\n\nEen reden om de creativiteit op nul te zetten is dat wanneer je de vraag opnieuw stelt je (in theorie) weer precies hetzelfde antwoord terug krijgt. Die voorspelbaarheid is soms waardevol. Als het model creatiever mag zijn, dan krijg je op dezelfde vraag telkens andere antwoorden.",
},
"model_context_explanation":{
"en":"Think of context as the short term memory of the AI model. It describes how much of the past conversation an AI model can remember. Depending on the AI model, each 1K can fit somewhere between 400 and 1000 words.\n\nBigger is not always better, as unsurprisingly this will also use up a lof of you device's memory capacity. As a safe calculation: each 2K of context is equivalent to about 1 gigabyte of real memory. A larger context also means the AI model will have to more text to go over first, so it will take longer to respond.\n\nIf you want an AI model to answer question quickly, pick a large AI model and set a small context. For summarization tasks, pick a small AI model and give it a large context.\n\nFor phones and tablets the context is automatically lowered to 1K.",
"nl":"Context beschrijf hoeveel van het voorgaande gesprek het AI model kan herinneren. Een soort korte termijn geheugen. Groter is fijn, want dan kan het model langere conversaties of documenten onthouden, maar dat kost ook meer computer geheugen.",
},
"model_download_url_explanation":{
"en":"AI models are very large files. You can provide a link to a custom model here. This allows you to try many more AI's.\n\nSINGLE .GGUF FILE\nIf you are providing a simple URL of a model file, it must end in '.gguf'. More importantly, the file must be less than 2Gb in size. You can load bigger files, but it's little more complicated:\n\nCHUNKED MODEL\nYou can break up the model file into smaller 'chunks'. In this case you only need to provide the first URL of the first chunk. It should end with something like '00001-of-00010.gguf'. The chunks should be as small as possible. \n\nFinally, you should also make sure that the other model configuration files, expecially 'tokenizer.json', can be found in the same folder as the model file(s). If they are not, then you must provide a configuration URL. You can leave 'https://www.huggingface.co/' out of the URL. So it will likely look someothing like 'XXXXXX/YYYYYY'.",
"nl":"AI modellen zijn here grote bestanden. Hier kun je een link naar zo'n bestand invoeren. Dit maakt het modelijk om een willekeurig AI model naar keuze uit te proberen. Daarbij heb je twee opties:\n\n.EEN .GGUF BESTAND\nDe URL moet beginnen met 'http' en eindigen met '.gguf'. Belangrijker: de bestandsgrootte mag maximaal 2Gb zijn. Als je een groter AI model wilt inladen kan dat, maar dat is iets meer gedoe:\n\nEEN MODEL IN BROKJES\nJe kunt je AI model opbreken in kleinere stukjes, zogenaamde 'chunks'. Je hoeft dan enkel een link naar het eerste bestand in te voeren. Dat moet eindigen met iets als '00001-of-00010.gguf'. De brokjes moeten zo klein mogelijk zijn. \n\nTenslotte is het, zo mogelijk, handig om de andere configutatiebestanden van met model, met name 'tokenizer.json', in dezelfde folder te plaatsen als de .gguf bestanden van het model zelf. Als dat niet kan, vul dan hieronder een configuratie URL in zodat deze bestanden alsnog te vinden zijn. Je mag 'https://www.huggingface.co/' weglaten. Het zal er dan iets als dit uitzien: 'XXXXXX/YYYYYY'.",
},
"Model_configuration_url":{
"en":"Model configuration URL",
"nl":"Model configuratie URL",
},
"model_configuration_url_explanation":{
"en":"For each AI model there are some other small files that explain it's optimal settings. These files are called 'config.json' and 'tokenizer.json'.\n\nIdeally these files are in the same folder as the AI model file itself. But this isn't always the case. For those situations you can enter the url of the folder containing these files here.",
"nl":"Voor elk AI model zijn er een paar kleine bestanden die de optimale instellingen bevatten. Deze heten 'config.json' en 'tokenizer.json'.\n\nIdealiter zijn deze bestanden in dezelfde folder te vinden als het AI model zijn. Maar dat is niet altijd het geval. Daarom kun je hier de URL van een folder met die configutatiebestanden invoeren.",
},
"The_AI_seems_to_be_repeating_itself":{
"en":"The AI model seems to be repeating itself. It has been stopped.",
"nl":"Het AI model lijkt zichzelf te herhalen. Het is gestopt.",
},
"This_editor_has_built-in_support_for_linting_prettyfying_and_running_code":{
"en":"This editor has built-in support for \n// linting, prettifying and running code.\n\nconsole.log('Hello World');\n\n// Press the play button in the bottom right",
"nl":"Deze tekstverwerker kan je code ook mooier maken, op fouten controleren, en zelfs uitvoeren.\n\nconsole.log('Hello World');\n\n// Druk op de play knop rechtsonderin",
},
"The_image_describer_AI_can_run_continuously":{
"en":"The Image describer AI can run continuously. It can also keep record in a document.\n",
"nl":"De Beeld Beschrijver kan doorlopend camerabeelden beschrijven, en wat het ziet ook in een document bewaren.\n",
},
"images_do_not_have_a_description_yet_Would_you_like_to_first_describe_them_with_the_image_describer_AI":{
"en":"images do not have a description yet. Would you like to first describe them with the image describer AI?\n",
"nl":"afbeeldingen hebben nog geen beschrijving. Is het OK om de afbeelding-beschrijver AI ze eerst te laten bekijken?\n",
},
"AI_responses_will_be_shown_here":{
"en":".\n\nThis is a picture-in-picture window. Papeg.ai responses will still be shown here, even when you switch to other applications. \n\n This is very useful if you also enable voice control, so you can continue to ask questions and read the responses.",
"nl":"Dit is een 'picture-in-picture' venster dat continue zichtbaar blijft, ook wanneer je verder werkt in andere websites of applicaties. \n\nDit is vooral handig in combinatie met stembediening, zodat je vragen kunt blijven stellen en de antwoorden hier kunt lezen.",
},
"Select_background_color":{
"en":"Background",
"nl":"Achtergrond",
},
"Select_an_emoji":{
"nl":"Kies een emoji",
},
"Select_emoji":{
"nl":"Kies emoji",
},
"Backup settings":{
"en":"Settings backup",
"nl":"Instellingen backup"
},
"Import":{
"nl":"Importeer"
},
"Cancel":{
"nl":"Annuleren",
},
"Clone":{
"nl":"Kloon",
},
"Clone_of":{
"nl":"Kloon van",
},
"Name":{
"nl":"Naam",
},
"Description":{
"nl":"Beschrijving",
},
"license":{
"nl":"Licentie",
},
"cache_type_k":{
"en":"Cache type K",
"nl":"Cache type K",
},
"cache_type_k_explanation":{
"en":"Some models can use less memory if you set this to 'q4_0'. If the AI starts crashing, set this to the default, f16.",
"nl":"Sommige AI modellen zullen minder geheugen gebruiken als je hier 'q4_0' selecteert. Als het AI model vervolgens telkens crasht, kies dan f16.",
},
"huggingface_id":{
"all":"HuggingFace ID",
},
"huggingface_id_explanation":{
"en":"Every model on www.huggingface.co has a unique ID. You can change the model ID here.",
"nl":"Elk AI model op www.huggingface.co heeft een unieke identificatie naam (ID). Je kunt deze ID hier aanpassen.",
},
"character":{
"en":"Character",
"nl":"Personage",
},
"character_explanation":{
"en":"Enable this if the AI should play the role of a person",
"nl":"Zet dit aan als de AI een personage speelt",
},
"factual":{
"en":"predictable",
"nl":"voorspelbaar",
},
"artistic":{
"en":"random",
"nl":"willekeurig",
},
"model_examples":{
"en":"Would you like to try an example?",
"nl":"Wil je een voorbeeld proberen?",
},
"role_name":{
"en":"Role name",
"nl":"Rol naam",
},
"system_prompt":{
"en":"System prompt",
"nl":"Systeem prompt",
},
"first_sentence":{
"en":"First sentence",
"nl":"De eerste zin",
},
"Respond_concisely":{
"en":"You are an assistant that responds briefly and concisely.",
"nl":"Je bent een assistant die kort en kortbondig reageert.",
},
"basic_system_prompt":{
"en":"You are a helpful, respectful and honest assistant.",
"nl":"Je bent een behulpzame, respectvolle en eerlijke assistant die perfect Nederlands spreekt.",
},
"Export_conversation_explanation":{
"en":"You can choose how many back-and-forths in the conversation will still be available after you refresh this web page.\n\nYou can also export the current conversation, saving it to a file (which you can then also import to restore a previous conversation).",
"nl":"Je kunt instellen hoeveel berichten in de conversatiegeschiedenis beschikbaar blijven wanneer je deze webpagina ververst.\n\nJe kunt een huidige conversatie ook exporteren als een bestand (die je dan later ook weer kan importeren).",
},
"model_role_name_explanation":{
"en":"For an actor model you can define the name of the person it's 'playing'. This should be a single word without spaces.\n\nFor example: 'Cleopatra'",
"nl":"Bij een acterende AI kun je instellen wat de naam is van het personag dat het 'speelt'. Dit moet één woord zijn, dus zonder spaties erin.\n\nBijvoorbeeld: 'Cleopatra'",
},
"model_system_prompt_explanation":{
"en":"Also known as the 'system prompt', this is the hidden first sentence that the AI models loads before it starts loading your commands. Since these AI models do nothing more than predict the next word based on the previous ones, you can imagine the importance of the first sentence it loads.\n\nA classic is: 'You are a helpful, respectful and honest assistant.'",
"nl":"De systeem prompt is simpelweg de eerste zin die het AI model inlaadt. Omdat deze modellen telkens een volgend woord proberen te bedenken op basis van de voorgaande woorden kun je je voorstellen hoe belangrijk de eerst ingevoerde zin is.\n\nEen klassieker is: 'Je bent een behulpzame, respectvolle en eerlijke assistent'.",
},
"second_prompt":{
"en":"Greeting",
"nl":"Begroeting",
},
"model_second_prompt_explanation":{
"en":"Here you can set the (also optional) second sentence the AI will read before it responds. This is useful if, for example, you want to AI model to act like a chatbot.\n\nFor the Actor AI the first line should be just the name of the character. So it might be:\n\nLeonardo Da Vinci\n*Leonardo Da Vinci strides into the room with a smile, his eyes lighting up when he sees you.* Hello time traveller! I'm so excited to finally meet you. I'm sure you have a wealth of knowledge that I can learn from. *He grins, eyes twinkling with excitement* Let's get started! ",
"nl":"Hier kun je een (eveneens optionele) tweede zin instellen die het model inlaadt voordat het aan de conversatie begint. Dat kan bijvoorbeeld handig zijn wanneer je het model als chatbot wilt laten fungeren. Het is namelijk een vak apart om AI modellen tekst te laten genereren in de vorm van conversaties.\n\nBij de acteur AI moet de eerste regel moet de naam van het karakter zijn, en verder niks. Bijvoorbeeld: \n\nLeonardo Da Vinci\n*Leonardo Da Vinci loopt met een glimlach de bibliotheek binnen.* Hallo tijdreiziger! Ik heb er naar uitgekeken je te ontmoeten. Ik kan vast een boel van je leren. *Hij glimlacht, zijn ogen glinsteren vol enthousiastme* Laten we beginnen! ",
},
"model_create_clone_explanation":{
"en":"You can create a copy of this AI. The copy's settings can then be changed or tweaked to your liking.",
"nl":"Je kunt een kopie van deze AI maken. Bij die kopie kun je dan bijvoorbeeld andere instellingen proberen.",
},
"How_many_messages_should_be_saved":{
"en":"How many messages should be saved?",
"nl":"Hoeveel berichten wil je bewaren?",
},
"Delete_custom_AI":{
"en":"Delete this AI",
"nl":"Verwijder deze AI",
},
"Delete_from_browser_cache":{
"en":"Remove from cache",
"nl":"Verwijder uit cache",
},
"Delete_from_cache_explanation":{
"en":"To guarantee your privacy all the AI models are downloaded to your computer. If there is enough free disk space, your web-browser will keep the files in it's 'browser cache'. This is useful since you won't want to download a huge file again every time you want to interact with an AI on this website. \n\nYour browser should automatically delete these models if your disk is getting full, but you can also delete the files manually here.",
"nl":"Om privacy te kunnen garanderen download deze website AI modellen naar je eigen computer. Zolang er genoeg opslagruimte beschikbaar is zal je browser deze bestanden bewaren.\n\nAls je opslag vol begint te raken zal je browser automatisch deze bestanden verwijderen. Je kunt je browser hier ook handmatig de opdracht te geven zo'n opgeslagen bestand te verwijderen.",
},
"The_AI_has_crashed":{
"en":"The AI crashed",
"nl":"De AI kapte ermee",
},
"It_seems_the_AI_failed_to_download":{
"en":"The AI model failed to download. Please make sure you're connected to the internet.",
"nl":"Het lukte niet om het AI model the downloaden. Controleer de internet verbinding.",
},
"it_seems_the_AI_failed_to_load":{
"en":"Yikes, it seems the AI model didn't (down)load properly. You can try restarting it. \n\nIf you believe it failed to download properly you can delete it and try again.",
"nl":"Yakkes, de AI is gecrasht. Je kunt het opnieuw proberen te starten. \n\nAls je het net gedownoad hebt dan ligt de fout waarschijnlijk daar. Verwijder dan het AI model en download het opnieuw.",
},
"it_seems_the_AI_has_crashed":{
"en":"Yikes, it seems the AI model has crashed. You can try restarting it. \n\nIf you just downloaded the AI, then it could be that it failed to download properly. In that case you can delete it and try again.",
"nl":"Yakkes, de AI is gecrasht. Je kunt het opnieuw proberen te starten. \n\nOptie twee is om het AI model te verwijderen en opnieuw te downloaded.",
},
"Please_load_an_AI_first":{
"nl":"Er is nog geen AI geselecteerd",
},
"A_model_needs_to_be_downloaded_but_there_is_no_internet_connection":{
"en":"An AI model needs to be downloaded from the internet, but there doesn't seem to be an internet connection",
"nl":"Het is nodig om een AI model van het internet te downloaden, maar er lijkt geen internet verbinding te zijn",
},
"Delete_settings":{
"en":"Clear settings",
"nl":"Wis instellingen",
},
"Clear":{
"nl":"Wis",
},
"clear_cache":{
"en":"Delete AI",
"nl":"Verwijder AI",
},
"The_AI_model_was_deleted_from_the_cache":{
"en":"The AI model was deleted from the browser's cache. You can try again, or switch to another AI instead.",
"nl":"Het AI model is verwijderd. Je kunt 't nog een keer proberen, of een andere AI kiezen.",
},
"rewrite_the_following_text":{
"en":"Rewrite the following text",
"nl":"Herschrijf de volgende tekst",
},
"rewrite_the_following_text_to_be_more":{
"en":"Rewrite the following text to be", // more
"nl":"Herschrijf de volgende tekst, en maak 'm", // meer
},
"Command_was_not_long_enough":{// error flash message if provided prompt is too short
"en":"The command was not long enough",
"nl":"De opdracht was te kort",
},
"The_name_is_already_taken":{
"nl":"De naam is al in gebruik",
},
"The_name_is_not_long_enough":{
"nl":"De naam is niet lang genoeg",
},
"The_name_is_too_long":{
"nl":"De naam is te lang",
},
"The_description_is_too_long":{
"nl":"De beschrijving is te lang",
},
"Click_here_to_open_files":{
"en":"Click to open files",
"nl":"Klik hier om bestanden te openen",
},
"or_drag_them_here":{
"en":"..or drag them here",
"nl":"..of sleep ze hierheen",
},
"prompt_at_line":{
"en":"⊕ Insert",
"nl":"⊕ Invoegen",
},
"Please_provide_the_following_information":{
"nl":"Vul alsjeblieft de volgende informatie aan",
},
"Papeg_ai_works_better_on_laptop_or_desktop_computers":{
"en":"Papeg.ai works better on laptop or desktop computers",
"nl":"Papeg.ai werkt beter op laptops en desktops",
},
"summarize_the_following_text_to_be_more":{
"en":"",
"nl":"",
},
"bullet_points":{
"en":"Bullet points",
"nl":"Puntsgewijs",
},
"summarize_bullet_points":{
"en":"Extract the most important concepts from the following text and show them as bullet points. ",
"nl":"Achterhaal de belangrijkste concepten uit de volgende tekst, en toon die puntsgewijs als lijst. ",
},
"URL":{
},
"text":{
"en":"",
"nl":"",
},
"short":{
"en":"Short",
"nl":"Kort",
},
"summarize_short":{
"en":"Write a short summary of the following text. ",
"nl":"Schrijf een korte samenvatting van de volgende tekst. ",
},
"very_short":{
"en":"Very short",
"nl":"Heel kort",
},
"summarize_very_short":{
"en":"Write a very short summary of the following text. ",
"nl":"Schrijf een heel erg korte samenvatting van de volgende tekst. ",
},
"Short_summary":{
"nl":"Korte samenvatting",
},
"Very_short_summary":{
"nl":"Heel korte samenvatting",
},
"create_a_new_document_called":{
"nl":"maak een nieuw document genaamd",
},
"Real_name":{
"nl":"Echte naam",
},
"New_folder_name":{
"nl":"Nieuwe foldernaam",
},
"New_file_name":{