forked from PhotoboothProject/photobooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.json
More file actions
1199 lines (1199 loc) · 98.6 KB
/
en.json
File metadata and controls
1199 lines (1199 loc) · 98.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"%": "%",
"abort": "Abort",
"add": "Add",
"add_entry": "Add entry",
"add_image": "Add image",
"admin_panel": "Admin panel",
"adminpanel_back": "Back",
"adminpanel_toggletextOFF": "Off",
"adminpanel_toggletextON": "On",
"authentication": "Login",
"authentication:login_enabled": "Login enabled",
"authentication:login_keypad": "PIN login",
"authentication:login_password": "Password",
"authentication:login_pin": "PIN",
"authentication:login_rental_keypad": "Additional rental PIN",
"authentication:login_rental_pin": "Rental PIN",
"authentication:login_username": "Username",
"authentication:protect_admin": "Protect admin panel",
"authentication:protect_index": "Protect start screen",
"authentication:protect_index_redirect": "Destination from start screen when not logged in",
"authentication:protect_ip_whitelist": "IP-Whitelist to access the start screen",
"authentication:protect_localhost_admin": "Protect admin panel on localhost access",
"authentication:protect_localhost_index": "Protect start screen on localhost access",
"authentication:protect_localhost_manual": "Protect manual & FAQ on localhost access",
"authentication:protect_manual": "Protect manual & FAQ",
"auto_reload": "Photobooth reloads automatically...",
"available_version": "Available:",
"back": "Back",
"bootconfig": "config.txt",
"busy": "Processing ...",
"busyCollage": "Processing collage ...",
"busyVideo": "Processing video ...",
"cancel": "Cancel",
"check_version": "Check online",
"checking": "Checking...",
"cheese": "Cheeeeeeeese!",
"choose_background": "Choose a background",
"choose_font": "Choose a font",
"choose_frame": "Choose a frame",
"choose_image": "Choose an image",
"choose_layouts": "Choose layouts",
"choose_placeholder": "Choose a placeholder",
"choose_video": "Choose a video",
"chroma_needs_background": "Please choose a background first!",
"chroma_needs_reload": "Please reload the page to take a new picture!",
"chromaCapture": "Chroma Capture",
"chromaInfoBefore": "Please choose a background to take a picture",
"chromaPreviewTest": "Chroma preview test",
"click_element": "Click",
"close": "Close",
"collage": "Collage",
"collage_select_min_two_layouts": "Choose at least two layouts to enable layout selection.",
"collage:collage_allow_selection": "Allow layout selection",
"collage:collage_background": "Background",
"collage:collage_background_color": "Collage background color",
"collage:collage_cntdwn_time": "Collage-countdown timer:",
"collage:collage_continuous": "Take collage without interruption",
"collage:collage_continuous_time": "Show single images on continuous collage for:",
"collage:collage_dashedline_color": "Cutting line color on 2x4 Collage layouts",
"collage:collage_enabled": "Allow photo collage",
"collage:collage_frame": "Frame",
"collage:collage_keep_single_images": "Add single images from collage to gallery",
"collage:collage_key": "Key code which triggers a collage",
"collage:collage_layout": "Choose collage layout:",
"collage:collage_layouts_enabled": "available layouts for selection",
"collage:collage_limit": "Collage limit",
"collage:collage_orientation": "Image orientation",
"collage:collage_placeholder": "Use custom placeholder",
"collage:collage_placeholderpath": "Placeholder image path",
"collage:collage_placeholderposition": "Collage image number to replace",
"collage:collage_polaroid_effect": "Polaroid effect",
"collage:collage_polaroid_rotation": "Polaroid picture rotation",
"collage:collage_take_frame": "Take collage with frame",
"collage:generator:add_image": "Add image",
"collage:generator:configuration_saved": "Configuration saved",
"collage:generator:configuration_saving_error": "Error during configuration saving",
"collage:generator:final_height": "Collage height",
"collage:generator:final_width": "Collage width",
"collage:generator:general_settings": "General settings",
"collage:generator:image_height": "Image height",
"collage:generator:image_rotation": "Image rotation",
"collage:generator:image_width": "Image width",
"collage:generator:load_current_configuration": "Load current configuration",
"collage:generator:placeholder_settings": "Placeholder settings",
"collage:generator:please_enable_write": "In order to save the collage.json file automatically you need to enable the write on that file.",
"collage:generator:portrait": "Portrait",
"collage:generator:rotate_after_creation": "Rotate after creation",
"collage:generator:save_config_manually": "The json is saved but please go to the admin panel and save the configuration",
"collage:generator:show_background": "Show background",
"collage:generator:show_frame": "Show frame",
"collage:generator:show_single_frame": "Toggle frame",
"collage:generator:text_settings": "Text settings",
"collage:generator:x_position": "X position",
"collage:generator:y_position": "Y position",
"collage:layout_generator": "Collage layout generator",
"collage:textoncollage_enabled": "Text on collage",
"collage:textoncollage_font": "Font",
"collage:textoncollage_font_color": "Font color",
"collage:textoncollage_font_size": "Font size",
"collage:textoncollage_line1": "Text for line 1",
"collage:textoncollage_line2": "Text for line 2",
"collage:textoncollage_line3": "Text for line 3",
"collage:textoncollage_linespace": "Line spacing",
"collage:textoncollage_locationx": "X Coordinate",
"collage:textoncollage_locationy": "Y Coordinate",
"collage:textoncollage_rotation": "Text rotation",
"collageTest": "Collage test",
"commands": "Commands",
"commands:exiftool_cmd": "EXIFtool command",
"commands:nodebin_cmd": "Node.js Executable Path",
"commands:post_photo_cmd": "Post-photo script / command",
"commands:pre_photo_cmd": "Pre-photo script / command",
"commands:preview_bsm": "Execute start command for preview on take picture/collage",
"commands:preview_cmd": "Command to generate a live preview",
"commands:preview_killcmd": "Command to kill live preview",
"commands:preview_simpleExec": "Execute preview commands without validation",
"commands:print_cmd": "Print command",
"commands:reboot_cmd": "Reboot command",
"commands:shutdown_cmd": "Shutdown command",
"commands:take_collage_cmd": "Take collage image command",
"commands:take_picture_cmd": "Take picture command",
"commands:take_video_cmd": "Command to take a video",
"confirm": "confirm",
"current_version": "Installed:",
"currentPhpVersion": "Current PHP version:",
"custom": "Custom",
"custom:custom_btn_text": "Custom button text",
"custom:custom_cntdwn_time": "Custom action countdown timer:",
"custom:custom_enabled": "Allow custom photo action",
"custom:custom_key": "Key code which triggers a custom picture",
"custom:get_request_custom": "GET request for custom picture at countdown",
"custom:icons_take_custom": "Take custom picture icon",
"custom:take_custom_cmd": "Take custom picture command",
"database_rebuild": "Rebuild",
"debugpanel": "Debug Panel",
"debugpanel:autorefresh": "Auto-Refresh",
"degrees": "°",
"delete": "Delete",
"deleted_successfully": "deleted successfully.",
"dev_debugpanel": "Debug panel",
"devlog": "Photobooth log",
"disk_usage": "Disk Usage",
"dot": ".",
"download": "Download",
"download_confirmation_images": "%s images will be downloaded. Do you want to proceed?",
"download_zip": "Download data folder as zip",
"enjoyPhotobooth": "Enjoy your Photobooth!",
"error": "Something went wrong. Please try it again.",
"error_path_noFonts": "The path does not contain any fonts",
"error_path_noImages": "The path does not contain any images",
"error_path_noVideos": "The path does not contain any videos",
"event": "Event",
"file_upload_max_size": "Maximum single file size: ",
"file_upload:error_cant_write": "Failed to write file to disk.",
"file_upload:error_extension": "A PHP extension stopped the file upload.",
"file_upload:error_form_size": "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.",
"file_upload:error_ini_size": "The uploaded file exceeds the upload_max_filesize directive in php.ini.",
"file_upload:error_no_file": "No file was uploaded.",
"file_upload:error_no_tmp_dir": "Missing a temporary folder.",
"file_upload:error_partial": "The uploaded file was only partially uploaded.",
"file_upload:no_error": "There is no error, the file uploaded with success.",
"filecount": "File count:",
"files_upload": "Upload files",
"foldersize": "Foldersize:",
"fonts": "Fonts",
"fonts:fonts_button_buzzer_message_font": "Buzzer message font",
"fonts:fonts_button_buzzer_message_font_bold": "Buzzer message bold",
"fonts:fonts_button_buzzer_message_font_color": "Buzzer message color",
"fonts:fonts_button_buzzer_message_font_italic": "Buzzer message italic",
"fonts:fonts_button_font": "Button font",
"fonts:fonts_button_font_bold": "Button bold",
"fonts:fonts_button_font_color": "Button color",
"fonts:fonts_button_font_italic": "Button italic",
"fonts:fonts_countdown_text": "Countdown font",
"fonts:fonts_countdown_text_bold": "Countdown bold",
"fonts:fonts_countdown_text_color": "Countdown color",
"fonts:fonts_countdown_text_italic": "Countdown italic",
"fonts:fonts_default": "Default font",
"fonts:fonts_default_bold": "Default bold",
"fonts:fonts_default_color": "Default color",
"fonts:fonts_default_italic": "Default italic",
"fonts:fonts_event_text": "Event font",
"fonts:fonts_event_text_bold": "Event bold",
"fonts:fonts_event_text_color": "Event color",
"fonts:fonts_event_text_italic": "Event italic",
"fonts:fonts_gallery_title": "Gallery font",
"fonts:fonts_gallery_title_bold": "Gallery bold",
"fonts:fonts_gallery_title_color": "Gallery color",
"fonts:fonts_gallery_title_italic": "Gallery italic",
"fonts:fonts_screensaver_text": "Screensaver font",
"fonts:fonts_screensaver_text_bold": "Screensaver bold",
"fonts:fonts_screensaver_text_color": "Screensaver color",
"fonts:fonts_screensaver_text_italic": "Screensaver italic",
"fonts:fonts_start_screen_title": "Start font",
"fonts:fonts_start_screen_title_bold": "Start bold",
"fonts:fonts_start_screen_title_color": "Start color",
"fonts:fonts_start_screen_title_italic": "Start italic",
"frontpage": "Frontpage",
"frontpage:button_buzzer_message": "Message on hidden trigger buttons",
"frontpage:button_force_buzzer": "Hide trigger button",
"frontpage:event_enabled": "Event",
"frontpage:event_symbol": "Choose a symbol",
"frontpage:event_textLeft": "Text left",
"frontpage:event_textRight": "Text right",
"frontpage:logo_enabled": "Show logo",
"frontpage:logo_path": "Logo path",
"frontpage:logo_position": "Logo position",
"frontpage:ui_admin_shortcut": "Show Admin Shortcut",
"frontpage:ui_admin_shortcut_position": "Admin Shortcut position",
"frontpage:ui_show_fork": "Show Fork Badge",
"frontpage:ui_skip_welcome": "Skip welcome screen",
"ftp": "FTP Server",
"ftp:baseFolder": "Base folder",
"ftp:baseURL": "Server URL",
"ftp:connected": "Successfully connected to the FTP server.",
"ftp:create_webpage": "Create webpage on ftp folder",
"ftp:delete": "Delete image on ftp server if deleted on photobooth",
"ftp:enabled": "Enable server FTP",
"ftp:folder": "Folder",
"ftp:missing_parameters": "Missing parameters! Fill all required input.",
"ftp:no_connection": "Unable to connect to the FTP server!",
"ftp:password": "Password",
"ftp:port": "FTP-Server port",
"ftp:template_location": "Template file location",
"ftp:test_connection": "Test connection",
"ftp:title": "Title",
"ftp:type": "Connection",
"ftp:urlTemplate": "Url template for qr generation",
"ftp:useForQr": "Use the output from the FTP server as input to generate the QR code",
"ftp:username": "Username",
"ftp:website": "Website",
"gallery": "Gallery",
"gallery_no_image": "The gallery is still empty. Take some pictures!",
"gallery:gallery_allow_delete": "Allow deletion of images from gallery",
"gallery:gallery_bottom_bar": "Show button bar inside gallery on bottom",
"gallery:gallery_date_format": "Date style",
"gallery:gallery_db_check_enabled": "Continuously check for new pictures in standalone gallery",
"gallery:gallery_db_check_time": "Interval at which the database is checked for new images (in seconds):",
"gallery:gallery_enabled": "Show Gallery",
"gallery:gallery_figcaption": "Show figure caption",
"gallery:gallery_newest_first": "Show latest images first",
"gallery:gallery_picture_height": "Max height for images",
"gallery:gallery_picture_width": "Max width for images",
"gallery:gallery_pictureTime": "Milliseconds an image is displayed at slideshow",
"gallery:gallery_scrollbar": "Show scrollbar in Gallery",
"gallery:gallery_show_date": "Show date below images in Gallery",
"gallery:gallery_use_slideshow": "Allow slideshow in gallery",
"gallery:gallery_use_thumb": "Use thumbnails in gallery",
"gallery:pswp_bgClickAction": "Action while click on area around image (background), with mouse",
"gallery:pswp_bgOpacity": "Background opacity",
"gallery:pswp_caption": "Show image name while image is opened",
"gallery:pswp_clickToCloseNonZoomable": "Mouse click on image should close the gallery",
"gallery:pswp_closeOnVerticalDrag": "Close gallery when dragging vertically and when image is not zoomed",
"gallery:pswp_counterEl": "Show image counter",
"gallery:pswp_doubleTapAction": "Action while double tap on anything",
"gallery:pswp_imageClickAction": "Action while click on image with mouse",
"gallery:pswp_loop": "Loop images when using swipe gesture",
"gallery:pswp_pinchToClose": "Pinch to close gallery",
"gallery:pswp_tapAction": "Action while tap on Gallery viewport content (excluding buttons)",
"gallery:pswp_zoomEl": "Show PhotoSwipe zoom button",
"general": "General",
"general:adminpanel_experimental_settings": "Show Experimental Settings",
"general:adminpanel_view": "Admin Options",
"general:database_enabled": "Use database for images",
"general:database_file": "Database file name",
"general:database_rebuild": "Rebuild image database",
"general:delete_no_request": "Delete images without confirm request",
"general:dev_debugpanel": "Debug Panel",
"general:dev_demo_images": "Use Demo Images",
"general:dev_loglevel": "Loglevel",
"general:dev_reload_on_error": "Automatically reload Photobooth on error",
"general:diskusage_button": "Show disk space utilization",
"general:download_enabled": "Allow downloads",
"general:download_thumbs": "Use thumbnails for download",
"general:files_upload": "Open Photobooth files uploader",
"general:local_timezone": "Timezone",
"general:picture_preview_before_processing": "Preload and show image during filter processing",
"general:picture_retry_on_error": "Retry taking a picture",
"general:picture_retry_timeout": "Retry timeout",
"general:picture_thumb_size": "Thumbnail size",
"general:picture_time_to_live": "Show image after capture:",
"general:reload_key": "Key code which triggers a reload",
"general:start_screen_subtitle": "Start screen (subtitle)",
"general:start_screen_subtitle_visible": "Show subtitle on start screen",
"general:start_screen_title": "Start screen (title)",
"general:start_screen_title_visible": "Show title on start screen",
"general:theme_manager": "Themes",
"general:translate": "Translation missing?",
"general:ui_language": "Choose Language",
"general:ui_notification_timeout": "Notification time",
"general:ui_selfie_mode": "Selfie mode",
"general:webserver_ssid": "Wireless network name (SSID) used to access the photobooth",
"general:webserver_url": "Webserver URL",
"get_request": "GET request",
"get_request:get_request_collage": "GET request for collage at countdown",
"get_request:get_request_countdown": "Send GET request to server at countdown",
"get_request:get_request_picture": "GET request for picture at countdown",
"get_request:get_request_processed": "Send \"Photostyle\" GET request to server after processing",
"get_request:get_request_server": "GET request server",
"get_request:get_request_video": "GET request for video at countdown",
"githead": "Latest changes",
"healthCheck": "Health check",
"healthError": "ERROR: Please fix mentioned errors to enjoy your Photobooth!",
"healthGood": "No errors found.",
"healthStatus": "Health Status",
"hideFrame": "Hide Frames",
"home": "Home",
"image_height": "Image height",
"image_rotation": "Image rotation",
"image_width": "Image width",
"insertMail": "Enter your e-mail address to receive the photo.",
"insertMailToDB": "Enter your e-mail address to add it to a database. A link to all pictures will be sent to you in the next few days.",
"installlog": "Installation log",
"jpeg_quality": "JPEG quality",
"jpeg_quality:jpeg_quality_chroma": "JPEG quality chroma-keying:",
"jpeg_quality:jpeg_quality_image": "JPEG quality images:",
"jpeg_quality:jpeg_quality_thumb": "JPEG quality thumbnails:",
"keying": "Chroma keying",
"keying:chromaCapture_enabled": "Use chroma capture as start page",
"keying:keying_enabled": "Allow chroma keying",
"keying:keying_private_backgrounds": "Use private background images",
"keying:keying_seriouslyjs_color": "Seriously.js keying color",
"keying:keying_show_all": "Show original and keyed image inside gallery while using chroma capture.",
"keying:keying_size": "Chromakeying size",
"keying:keying_variant": "Keying algorithm",
"keyingerror": "Chroma keying not possible!",
"layout_generator": "Open layout generator",
"login_invalid": "Username or password is invalid!",
"login_password": "Password",
"login_pin_request": "Please enter your PIN.",
"login_please": "Please log in to continue.",
"login_username": "Username",
"logout": "Logout",
"magic_greenscreen": "Magic Greenscreen",
"magic_greenscreen:rembg_alpha_matting": "Alpha matting",
"magic_greenscreen:rembg_alpha_matting_background_threshold": "Alpha matting background threshold",
"magic_greenscreen:rembg_alpha_matting_erode_size": "Alpha matting erode size",
"magic_greenscreen:rembg_alpha_matting_foreground_threshold": "Alpha matting foreground threshold",
"magic_greenscreen:rembg_background": "Background image",
"magic_greenscreen:rembg_backgroundMode": "Background scaling mode",
"magic_greenscreen:rembg_enabled": "Remove background",
"magic_greenscreen:rembg_model": "AI model",
"magic_greenscreen:rembg_post_processing": "Post-processing",
"mail": "E-Mail",
"mail:mail_alt_text": "Alternative text",
"mail:mail_enabled": "Use E-Mail",
"mail:mail_file": "File name e-mail addresses database",
"mail:mail_fromAddress": "Return address",
"mail:mail_fromName": "Sender name",
"mail:mail_host": "E-mail host address",
"mail:mail_is_html": "HTML E-Mail",
"mail:mail_password": "Password",
"mail:mail_port": "Port",
"mail:mail_secure": "Security",
"mail:mail_send_all_later": "Store e-mail addresses in file",
"mail:mail_subject": "Subject",
"mail:mail_text": "Text",
"mail:mail_username": "Username of the e-mail account",
"mail:mail_virtual_keyboardLayout": "Virtual keyboard layout",
"mail:mail_virtualKeyboard": "Show virtual keyboard",
"mail:sendPicture:subject": "Here is your picture",
"mail:sendPicture:text": "Hey, your picture is attached.",
"mailError": "Error sending e-mail",
"mailSaved": "E-mail address saved successfully",
"mailSent": "E-mail sent",
"manual:authentication:login_enabled": "If enabled, a username and password will be needed to access the adminpage and/or start screen (depending on your setup).",
"manual:authentication:login_keypad": "Pincode for numeric login. (0-9) Must be 4 digits, otherwise numeric login will not be enabled.",
"manual:authentication:login_password": "Define your password used for login. Please note: after saving your password will only be visible as a hash inside adminpanel. For login don't enter the hash, enter the password you have set.",
"manual:authentication:login_pin": "Pin for numeric keypad login. (0-9) Pin must be set to 4-digits otherwise the code will be reset and keypad can not be enabled.",
"manual:authentication:login_rental_keypad": "Keypad for Rental-Login. After Login the Info- and some Admin-Buttons are available.",
"manual:authentication:login_rental_pin": "Pin for Rental-Login. (0-9) Pin must be set to 4-digits otherwise the code will be reset and Rental-Login can not be enabled.",
"manual:authentication:login_username": "Define the username used to login into Photobooth.",
"manual:authentication:protect_admin": "If enabled, admin panel can only be accessed if a username and password is entered.",
"manual:authentication:protect_index": "If enabled, start screen can only be accessed if a username and password is entered.",
"manual:authentication:protect_index_redirect": "Sets the page where the user is redirected to, if protect index is enabled and user is not logged in.",
"manual:authentication:protect_ip_whitelist": "IP addresses added to the whitelist can access the start screen without authentication.",
"manual:authentication:protect_localhost_admin": "If disabled, admin panel can be accessed without username and password from localhost.",
"manual:authentication:protect_localhost_index": "If disabled, start screen can be accessed without username and password from localhost.",
"manual:authentication:protect_localhost_manual": "If disabled, manual and FAQ can be accessed without username and password from localhost.",
"manual:authentication:protect_manual": "If enabled, manual and FAQ can only be accessed if a username and password is entered.",
"manual:collage:collage_allow_selection": "If enabled, a button is visible on the start page to choose an collage layout.",
"manual:collage:collage_background": "Enter the path of the background which is applied to your collage after taking it.",
"manual:collage:collage_background_color": "Color used behind collage images when no background image is set.",
"manual:collage:collage_cntdwn_time": "Set your countdown time between pictures while taking a collage.",
"manual:collage:collage_continuous": "Take collage without interrupption.",
"manual:collage:collage_continuous_time": "Controll the time a picture is visible on continuous collage before the next picture is taken.",
"manual:collage:collage_dashedline_color": "Cutting line color for 2x4 collage layouts to guide trimming.",
"manual:collage:collage_enabled": "If enabled, user can take a collage. A collage consists of 4 pictures. Optional you can take a collage with or without interruption.",
"manual:collage:collage_frame": "Enter the path of the frame which is applied to your collage after taking it.",
"manual:collage:collage_keep_single_images": "If enabled, single images from collage will be added to the gallery. Please note that single images are not visible if you access the gallery at the result screen!",
"manual:collage:collage_key": "Specify the key id to use that key to take a collage (e.g. 13 is the enter key). For example use <a href=\"https://keycode.info\" target=\"_blank\">https://keycode.info</a> to find out the key id.",
"manual:collage:collage_layout": "Choose between different collage layouts.",
"manual:collage:collage_layouts_enabled": "Selected layouts will be available for the layout selection visible on the start screen.",
"manual:collage:collage_limit": "Internal limit for number of collages; leave the default.",
"manual:collage:collage_orientation": "Define the orientation of captured images. Defined orientation is used to pick the right collage file for the defined collage layout.",
"manual:collage:collage_placeholder": "If enabled, the image of the collage at the specified position will be replaced by a custom image from the placeholder path",
"manual:collage:collage_placeholderpath": "Specify the path to the placeholder image. The image should be a .jpg.",
"manual:collage:collage_placeholderposition": "Define the collage position which should be replaced by a custom image. Please specify a value between 1 and the maximum collage image number depending on the layout.",
"manual:collage:collage_polaroid_effect": "If enabled, a polaroid effect is applied to the pictures of the collage after it was taken.",
"manual:collage:collage_polaroid_rotation": "Enter a value which is used as degrees a picture gets rotated with polaroid effect.",
"manual:collage:collage_take_frame": "If enabled, defined frame will be applied to your collage after taking it.",
"manual:collage:generator:add_image": "Add another placeholder image block to the collage layout preview.",
"manual:collage:generator:configuration_saved": "Shown when the generated layout JSON was written successfully.",
"manual:collage:generator:configuration_saving_error": "Shown when the layout JSON could not be written (check write permissions).",
"manual:collage:generator:final_height": "The height of the collage expressed in pixels",
"manual:collage:generator:final_width": "The width of the collage expressed in pixels",
"manual:collage:generator:general_settings": "Common settings for generated collage layout size and rotation.",
"manual:collage:generator:image_height": "The height of the image. You can use simple math (+, -, *, /) and 'x' and 'y' as if they are the width and the height of the collage.",
"manual:collage:generator:image_rotation": "The rotation of the image",
"manual:collage:generator:image_width": "The width of the image. You can use simple math (+, -, *, /) and 'x' and 'y' as if they are the width and the height of the collage.",
"manual:collage:generator:load_current_configuration": "Loads your current collage config into the generator form.",
"manual:collage:generator:placeholder_settings": "Position/size settings for the selected placeholder image.",
"manual:collage:generator:please_enable_write": "Appears when the generator cannot write the config file—enable write access.",
"manual:collage:generator:portrait": "If enabled the image is rotated before adding the images.",
"manual:collage:generator:rotate_after_creation": "If enabled the image is rotated after adding the images.",
"manual:collage:generator:save_config_manually": "Save the generated layout JSON manually if auto-save fails.",
"manual:collage:generator:show_background": "If enabled the background is shown in the generator. This checkbox does not affect the configuration.",
"manual:collage:generator:show_frame": "If enabled the frame is shown, based on others rules, in the generator. This checkbox does not affect the configuration.",
"manual:collage:generator:show_single_frame": "If enabled, the frame will be applied to this image. This work if the frame is applied always, otherwise is ignored.",
"manual:collage:generator:text_settings": "Text overlay settings for generated layouts.",
"manual:collage:generator:x_position": "The distance of the image from the left border of the collage. You can use simple math (+, -, *, /) and 'x' and 'y' as if they are the width and the height of the collage.",
"manual:collage:generator:y_position": "The distance of the image from the top border of the collage. You can use simple math (+, -, *, /) and 'x' and 'y' as if they are the width and the height of the collage.",
"manual:collage:layout_generator": "Open layout generator to create a custom collage design.",
"manual:collage:textoncollage_enabled": "If enabled, you can add some text onto your collage.",
"manual:collage:textoncollage_font": "Enter the path to the font used to apply text onto your collage.",
"manual:collage:textoncollage_font_color": "Choose the font color used to apply text to your collage.",
"manual:collage:textoncollage_font_size": "Choose the font size used to apply text to your collage.",
"manual:collage:textoncollage_line1": "Text used for 1. Line which gets applyed to your collage.",
"manual:collage:textoncollage_line2": "Text used for 2. Line which gets applyed to your collage.",
"manual:collage:textoncollage_line3": "Text used for 3. Line which gets applyed to your collage.",
"manual:collage:textoncollage_linespace": "Enter used linespace while adding text to your collage.",
"manual:collage:textoncollage_locationx": "X-Coordinates of the text while adding text to your collage.",
"manual:collage:textoncollage_locationy": "Y-Coordinates of the text while adding text to your collage.",
"manual:collage:textoncollage_rotation": "Enter a value which is used as degrees the text on your collage gets rotated.",
"manual:commands:exiftool_cmd": "EXIFtool command line which is executed after taking a picture if \"Preserve EXIF data\" is enabled.",
"manual:commands:nodebin_cmd": "Path to executable for node.js - example <code>/usr/bin/node</code>",
"manual:commands:post_photo_cmd": "Enter a command line which is executed after the picture is taken and processing is complete. Executing is async / non-blocking. For collage this is executed only once after the whole collage is completed",
"manual:commands:pre_photo_cmd": "Enter a command line which is executed directly once you trigger taking a picture / collage. Executing is async / non-blocking. For collage this is executed for every single photo in the collage",
"manual:commands:preview_bsm": "Depends on \"Command to generate a live preview\". If enabled, the \"Command to generate a live preview\" is executed once a photo get triggered. This results in a delay of ~3 seconds until the preview is visible at countdown. If disabled, a preview is generated in background which results in a high battery usage and also a general slowdown. The camera is always active which might generate some heat and damage the camera sensor.",
"manual:commands:preview_cmd": "Command line which is executed to generate a live preview. Executed only if defined.",
"manual:commands:preview_killcmd": "Command line which is executed to kill the live preview. Executed only if defined.",
"manual:commands:preview_simpleExec": "If enabled, photbooth won't check if the preview application is running while executing the start/stop preview command. Only enable this option if really needed.",
"manual:commands:print_cmd": "Command line which is executed while pressing the \"Print\" button.",
"manual:commands:reboot_cmd": "Command used to initiate reboot via button - example <code>/sbin/shutdown -r now</code>.",
"manual:commands:shutdown_cmd": "Command used to initiate shutdown via button - example <code>/sbin/shutdown -h now</code>.",
"manual:commands:take_collage_cmd": "Command line which is executed while pressing the \"Take Collage\" button. On Linux you can for example use <a href=\"http://www.gphoto.org\" target=\"_blank\">gphoto2</a> to take pictures, on Windows you can use <a href=\"http://digicamcontrol.com\" target=\"_blank\">digiCamControl</a>. If empty, the take picture command is used for collage image capture too.",
"manual:commands:take_picture_cmd": "Command line which is executed while pressing the \"Take Pic\" button. On Linux you can for example use <a href=\"http://www.gphoto.org\" target=\"_blank\">gphoto2</a> to take pictures, on Windows you can use <a href=\"http://digicamcontrol.com\" target=\"_blank\">digiCamControl</a>.",
"manual:commands:take_video_cmd": "Command line which is executed while pressing the \"Take Video\" button.",
"manual:custom:custom_btn_text": "Enter a text which is visible on the custom picture button.",
"manual:custom:custom_cntdwn_time": "Set your countdown time taking a custom picture.",
"manual:custom:custom_enabled": "If enabled, a custom photo action button will be visible which acts like the take photo button with some own settings (e.g. own countdown time, own command which is executed).",
"manual:custom:custom_key": "Specify the key id to use that key to take a custom picture (e.g. 13 is the enter key). For example use <a href=\"https://keycode.info\" target=\"_blank\">https://keycode.info</a> to find out the key id.",
"manual:custom:get_request_custom": "Define GET request at countdown while taking a custom picture.",
"manual:custom:icons_take_custom": "Define the icon used for the custom action button.",
"manual:custom:take_custom_cmd": "Command line which is executed while pressing the custom picture button.",
"manual:fonts:fonts_button_buzzer_message_font": "Path for the buzzer message.",
"manual:fonts:fonts_button_buzzer_message_font_bold": "Use bold for the buzzer message.",
"manual:fonts:fonts_button_buzzer_message_font_color": "Buzzer message text color.",
"manual:fonts:fonts_button_buzzer_message_font_italic": "Use italic for the buzzer message.",
"manual:fonts:fonts_button_font": "Path for buttons.",
"manual:fonts:fonts_button_font_bold": "Use bold for buttons.",
"manual:fonts:fonts_button_font_color": "Button text color.",
"manual:fonts:fonts_button_font_italic": "Use italic for buttons.",
"manual:fonts:fonts_countdown_text": "Path for countdown text.",
"manual:fonts:fonts_countdown_text_bold": "Use bold for countdown text.",
"manual:fonts:fonts_countdown_text_color": "Color for countdown text.",
"manual:fonts:fonts_countdown_text_italic": "Use italic for countdown text.",
"manual:fonts:fonts_default": "Global default UI font.",
"manual:fonts:fonts_default_bold": "Use bold for default font.",
"manual:fonts:fonts_default_color": "Default text color.",
"manual:fonts:fonts_default_italic": "Use italic for default font.",
"manual:fonts:fonts_event_text": "Path for event text.",
"manual:fonts:fonts_event_text_bold": "Use bold for event text.",
"manual:fonts:fonts_event_text_color": "Color for event text.",
"manual:fonts:fonts_event_text_italic": "Use italic for event text.",
"manual:fonts:fonts_gallery_title": "Path for gallery title.",
"manual:fonts:fonts_gallery_title_bold": "Use bold for gallery title.",
"manual:fonts:fonts_gallery_title_color": "Color for gallery title.",
"manual:fonts:fonts_gallery_title_italic": "Use italic for gallery title.",
"manual:fonts:fonts_screensaver_text": "Path for screensaver text.",
"manual:fonts:fonts_screensaver_text_bold": "Use bold for screensaver text.",
"manual:fonts:fonts_screensaver_text_color": "Color for screensaver text.",
"manual:fonts:fonts_screensaver_text_italic": "Use italic for screensaver text.",
"manual:fonts:fonts_start_screen_title": "Path for start title/subtitle.",
"manual:fonts:fonts_start_screen_title_bold": "Use bold for start title.",
"manual:fonts:fonts_start_screen_title_color": "Color for start title.",
"manual:fonts:fonts_start_screen_title_italic": "Use italic for start title.",
"manual:frontpage:button_buzzer_message": "Define a custom text visible instead of trigger buttons if those are hidden.",
"manual:frontpage:button_force_buzzer": "If enabled, the take picture and collage buttons disappear. Your defined custom text will be visible instead.",
"manual:frontpage:event_enabled": "If enabled, you can define a text and choose between different symbols which are visible on the start page.",
"manual:frontpage:event_symbol": "Choose a symbol which is shown between entered text.",
"manual:frontpage:event_textLeft": "Enter the text visible on the left side of the chosen symbol.",
"manual:frontpage:event_textRight": "Enter the text visible on the right side of the chosen symbol.",
"manual:frontpage:logo_enabled": "If enabled, the logo will be shown on the frontpage.",
"manual:frontpage:logo_path": "Path of the logo (default: private/logo.png).",
"manual:frontpage:logo_position": "Choose the position of the logo.",
"manual:frontpage:ui_admin_shortcut": "If enabled, a hidden button is added to defined corner of the start screen. Clicking it six times within 5 seconds will redirect you to the login panel for easy access of the admin page.",
"manual:frontpage:ui_admin_shortcut_position": "Choose the position of the admin shortcut.",
"manual:frontpage:ui_show_fork": "If enabled, a fork badge is shown on the right upper corner on the start screen.",
"manual:frontpage:ui_skip_welcome": "If enabled, the welcome screen won't be visible while accessing Photobooth the first time after installation / update.",
"manual:ftp:baseFolder": "FTP Server base folder (if you have multiple sites active on the same hosting).",
"manual:ftp:baseURL": "FTP Server base URL.",
"manual:ftp:create_webpage": "Create a webpage starting from the file index.php that function as a gallery on the base folder.",
"manual:ftp:delete": "If enabled, it will delete the image and the thumbnail on the ftp server if it is deleted on the Photobooth.",
"manual:ftp:enabled": "If enabled, after taking and processing the picture, it will be sent to the ftp server to store it.",
"manual:ftp:folder": "The /path/to/directory on the disk of the ftp server. If the folder does not exist it will be created (always check your ftp server configuration).",
"manual:ftp:password": "In combination with username to authenticate the user who send the file on the server.",
"manual:ftp:port": "FTP Server port.",
"manual:ftp:template_location": "Location of the index.php file. Choose another location to use a custom index.php file. REMEMBER: the file has to have a {title} placeholder.",
"manual:ftp:test_connection": "Will execute a test connection to the FTP server using the data passed.",
"manual:ftp:title": "Title of the sub-folder. It will be appended to folder. If website is enabled it will be used on the html title tag and in the page header.",
"manual:ftp:type": "Choose to use FTP or SFTP connection.",
"manual:ftp:urlTemplate": "Set the url template to generate the qr code. The placeholder are '%website', '%baseFolder', '%folder', '%title' (as slug) and '%date'. The filename is appended at the end.",
"manual:ftp:useForQr": "If enabled, the output received from the FTP server after storing the picture it will be used as input for the generation of the QR code (always check your ftp server configuration).",
"manual:ftp:username": "In combination with password to authenticate the user who send the file on the server.",
"manual:ftp:website": "The website accessible from the internet of the ftp server. To this website will be appended the folder structure and the file name of the picture to reach the file on the internet.",
"manual:gallery:gallery_allow_delete": "If enabled pictures can be deleted from the gallery at any time.",
"manual:gallery:gallery_bottom_bar": "If enabled, the button bar is shown in the gallery below.",
"manual:gallery:gallery_date_format": "Enter your date style.",
"manual:gallery:gallery_db_check_enabled": "If enabled, Photobooth continuously checks for new pictures in standalone gallery and reloads the page on inactivity (time of inactivity depends on \"Show image after capture:\" option).",
"manual:gallery:gallery_db_check_time": "Add the interval (in seconds) the database get checked for new images.",
"manual:gallery:gallery_enabled": "If enabled, user can access the gallery from start screen.",
"manual:gallery:gallery_figcaption": "If enabled, a figure caption is shown in the gallery view.",
"manual:gallery:gallery_newest_first": "If enabled, latest images will be shown first inside the gallery.",
"manual:gallery:gallery_picture_height": "Maximum height (in pixels) that will be used for scaled images in the gallery for portrait oriented images. Aspect ratio is preserved.",
"manual:gallery:gallery_picture_width": "Maximum width (in pixels) that PhotoSwipe will use for scaled images in the gallery for landscape oriented images. Aspect ratio is preserved.",
"manual:gallery:gallery_pictureTime": "Add a value which is used as milliseconds an image is displayed at slideshow inside the gallery.",
"manual:gallery:gallery_scrollbar": "If enabled, a scrollbar is visible in gallery.",
"manual:gallery:gallery_show_date": "If enabled, date and time is visible below the image inside the gallery and standalone slideshow (only works if dateformat images is used).",
"manual:gallery:gallery_use_slideshow": "If enabled, a slideshow button is visible inside the gallery to start/stop a slideshow.",
"manual:gallery:gallery_use_thumb": "If enabled, thumbnails are used in gallery views to improve loading performance.",
"manual:gallery:pswp_bgClickAction": "Choose an action which will be triggered while clicking on the area around the opened image (background), with mouse. Available options: </br> none: no action will be triggered </br> zoom: zooms current image </br> zoom or close: image will be closed if it can not be zoomed </br> toggle button bar: toggle visibility of controls </br> next: move to the next image </br> close: close the gallery",
"manual:gallery:pswp_bgOpacity": "Background opacity, low values make the background more transparent.",
"manual:gallery:pswp_caption": "If enabled, the current image name will be visible in the top/bottom left corner while the image is opened. The position of the image name depends on the position of the button bar.",
"manual:gallery:pswp_clickToCloseNonZoomable": "Mouse click on image should close the gallery, but only when image is smaller than size of the viewport.",
"manual:gallery:pswp_closeOnVerticalDrag": "If enabled, the gallery will close when the image is dragged vertically and the image is not zoomed.",
"manual:gallery:pswp_counterEl": "If enabled, a picture counter is visible inside the gallery.",
"manual:gallery:pswp_doubleTapAction": "Choose an action which will be triggered while double tap on anything if an image is opened inside the gallery. Available options: </br> none: no action will be triggered </br> zoom: zooms current image </br> zoom or close: image will be closed if it can not be zoomed </br> toggle button bar: toggle visibility of controls </br> next: move to the next image </br> close: close the gallery",
"manual:gallery:pswp_imageClickAction": "Choose an action which will be triggered by a click on an opened image with a mouse. Available options </br> none: no action will be triggered </br> zoom: zooms current image </br> zoom or close: image will be closed if it can not be zoomed </br> toggle button bar: toggle visibility of controls </br> next: move to the next image </br> close: close the gallery",
"manual:gallery:pswp_loop": "Loop images when using swipe gesture. If enabled you'll be able to swipe from last to first image. Option is always disabled when there are less than 3 images. PhotoSwipe history module needs to be enabled.",
"manual:gallery:pswp_pinchToClose": "Pinch to close gallery gesture. The gallery’s background will gradually fade out as the user zooms out. When the gesture is complete, the gallery will close.",
"manual:gallery:pswp_tapAction": "Choose an action which will be triggered by a tap on the Gallery viewport content (excluding buttons) if an image is opened. Available options </br> none: no action will be triggered </br> zoom: zooms current image </br> zoom or close: image will be closed if it can not be zoomed </br> toggle button bar: toggle visibility of controls </br> next: move to the next image </br> close: close the gallery",
"manual:gallery:pswp_zoomEl": "If enabled, PhotoSwipe zoom button is visible inside gallery.",
"manual:general:adminpanel_experimental_settings": "Show not sufficiently tested and experimental options.",
"manual:general:adminpanel_view": "Allows to set different views in the admin panel with more (Expert View) or less (Basic View) options accessible.",
"manual:general:database_enabled": "If enabled, images will be added to a database which is used by the gallery. If disabled, gallery will read the images folder for images - this could reduce the performance.",
"manual:general:database_file": "Name of the database file.",
"manual:general:database_rebuild": "Rebuild the images database. Normally not required but can be used to fix a corrupted database file.",
"manual:general:delete_no_request": "If enabled, images will be deleted without a confirm request. Delete of images can't be undone!",
"manual:general:dev_debugpanel": "Opens the debug panel in a separate window. Make sure you set the loglevel to 1 (or above) for more information.",
"manual:general:dev_demo_images": "If enabled, sample pictures will be used instead taking a picture.",
"manual:general:dev_loglevel": "Define the loglevel. 0 = minimal logging, 1 = advanced logging, 2 = expert logging",
"manual:general:dev_reload_on_error": "If an error occurs while taking a picture, Photobooth will reload automatically after 5 seconds.",
"manual:general:diskusage_button": "This will show the actual disk space utilization through Photobooth data files (pictures, database, etc.).",
"manual:general:download_enabled": "If enabled, a download button is visible on each picture inside the gallery.",
"manual:general:download_thumbs": "If enabled, thumbnails will be used at download (if exist) instead the full sized image.",
"manual:general:files_upload": "Open the Photobooth files uploader to upload images and fonts inside \"private/\" folder of your Photobooth installation.",
"manual:general:local_timezone": "Choose your timezone. Your local timezone is needed to use the right date on image names.",
"manual:general:picture_preview_before_processing": "If enabled, images are preloaded and shown during filter processing.",
"manual:general:picture_retry_on_error": "Set how often the system will try to take a picture in the event of an error. 0 = disabled.",
"manual:general:picture_retry_timeout": "Set a time after which the photo recording will be tried again. A notification is visible for defined time. Countdown will be used as defined for picture / next collage image. \"Retry taking a picture\" needs to be set to a value > 0.",
"manual:general:picture_thumb_size": "Choose thumbnail size: XS = max 360px, S = max 540px, M = max 900px, L = max 1080px, XL = max 1260px",
"manual:general:picture_time_to_live": "Choose a time between 1 and 90 seconds. Your picture is visible for that time on the result screen after taking it. Select 0 to disable automatic reloading.",
"manual:general:reload_key": "Specify the key id to use that key to reload the page (e.g. 82 is the \"R\" key). For example use <a href=\"https://keycode.info\" target=\"_blank\">https://keycode.info</a> to find out the key id.",
"manual:general:start_screen_subtitle": "Enter the subtitle visible on startpage.",
"manual:general:start_screen_subtitle_visible": "If enabled, entered subtitle is visible on start screen.",
"manual:general:start_screen_title": "Enter the title visible on startpage.",
"manual:general:start_screen_title_visible": "If enabled, entered title is visible on start screen.",
"manual:general:theme_manager": "Theme management: save, load, export or import themes.",
"manual:general:translate": "Open Photobooth Project on Crowdin. With Crowdin and your help translating we're able to get high-quality translations for all supported languages.",
"manual:general:ui_language": "Choose interface language.<p>If you're missing a language or like to help improving translations visit the <a href=\"https://photoboothproject.github.io/FAQ#how-to-update-or-add-translations\" target=\"_blank\">\"How to update or add translations?\"</a> inside the Photobooth FAQ for instructions.</p>",
"manual:general:ui_notification_timeout": "Define the time a notification on success or error (delete, print) is visible. On delete Photobooth reloads after defined time.",
"manual:general:ui_selfie_mode": "If enabled, a button which opens the device's camera to capture a selfie will be visible. Other actions like taking a picture or collage aren't available. There's no post-processing besides creating the thumbnail and rotating (depending on the exif orientation).",
"manual:general:webserver_ssid": "Please define the wireless network name (SSID) to be used to access the Photobooth. The wireless network name (SSID) is displayed on the results page when the QR code is called up.",
"manual:general:webserver_url": "Base URL for the built-in webserver; managed automatically.",
"manual:get_request:get_request_collage": "Define GET request at countdown while taking a collage.",
"manual:get_request:get_request_countdown": "If enabled, a GET request will be made to defined Server at countdown. GET request needs to be defined for picture and collage.",
"manual:get_request:get_request_picture": "Define GET request at countdown while taking a picture.",
"manual:get_request:get_request_processed": "If enabled, a GET request will be made to defined Server after processing the picture. \"Photostyle\" (\"photo\", \"collage\" or \"chroma\") is used for the GET request.",
"manual:get_request:get_request_server": "Define the server for a GET request.",
"manual:get_request:get_request_video": "Define GET request at countdown while taking a video.",
"manual:jpeg_quality:jpeg_quality_chroma": "Picture quality used for chromakeying pictures.",
"manual:jpeg_quality:jpeg_quality_image": "Picture quality used for taking pictures. Value of 100 means the original file from the camera will be retained, if there is no other mods i.e. filters active.",
"manual:jpeg_quality:jpeg_quality_thumb": "Picture quality used for thumbnails.",
"manual:keying:chromaCapture_enabled": "Redirect from index to chroma to use chroma capture, default start page can't be accessed!",
"manual:keying:keying_enabled": "If enabled, chromakeying can be accessed from gallery for your pictures.",
"manual:keying:keying_private_backgrounds": "If enabled, private background images are used for selection. Private background images get used from \"private/images/keyingBackgrounds\" path of your Photobooth installation. Please use the file uploader to add your own background images.",
"manual:keying:keying_seriouslyjs_color": "Color used for the chroma key overlay when using seriously.js effects.",
"manual:keying:keying_show_all": "If enabled, the original image and the keyed image get added to the gallery.",
"manual:keying:keying_size": "Choose chromakeying size: S = max 1000px, M = max 1500px, L = max 2000px, XL = max 2500px",
"manual:keying:keying_variant": "Choose between different chromakeying algorithms. <b>Please note:</b> Seriously.js requires a browser that supports WebGL.",
"manual:magic_greenscreen:rembg_alpha_matting": "Enable alpha matting for better edge quality.",
"manual:magic_greenscreen:rembg_alpha_matting_background_threshold": "Background threshold for alpha matting.",
"manual:magic_greenscreen:rembg_alpha_matting_erode_size": "Erode size for alpha matting.",
"manual:magic_greenscreen:rembg_alpha_matting_foreground_threshold": "Foreground threshold for alpha matting.",
"manual:magic_greenscreen:rembg_background": "Path to the background image that will be used to replace the removed background.",
"manual:magic_greenscreen:rembg_backgroundMode": "Determines how the background image is scaled or cropped. <b>Scale Fill</b> (recommended) covers the entire canvas without distortion. <b>Scale Fit</b> preserves aspect ratio (may have black bars). <b>Crop Center</b> cuts from center. <b>Stretch</b> distorts the image. <b>None</b> copies without scaling.",
"manual:magic_greenscreen:rembg_enabled": "If enabled, the background will be removed using AI.",
"manual:magic_greenscreen:rembg_model": "AI model to use for background removal.",
"manual:magic_greenscreen:rembg_post_processing": "Enable post-processing to improve the result.",
"manual:mail:mail_alt_text": "If the HTML e-mail option is enabled, the content of this field will become the mail text if the email client of the receiver cannot display HTML emails.",
"manual:mail:mail_enabled": "If enabled, an e-mail button is visible on each picture inside the gallery. Depending on your setup you can send pictures via e-mail directly or collect entered e-mail addresses inside a database.",
"manual:mail:mail_file": "File name for the e-mail addresses database.",
"manual:mail:mail_fromAddress": "Enter your return address which is used while sending pictures via email.",
"manual:mail:mail_fromName": "Enter your sender name which is used while sending pictures via email.",
"manual:mail:mail_host": "Enter your e-mail host address.",
"manual:mail:mail_is_html": "If enabled, the mail text field supports HTML formatting and semantic markup.",
"manual:mail:mail_password": "Enter the password used to log in to your e-mail account.",
"manual:mail:mail_port": "Enter the port used for email.",
"manual:mail:mail_secure": "Enter the protocol used for the transport encryption between the email client and the mail server (ssl or tls).",
"manual:mail:mail_send_all_later": "If enabled, entered e-mail addresses are stored inside a database instead of sending the chosen picture directly.",
"manual:mail:mail_subject": "Enter the subject used while sending pictures via email.",
"manual:mail:mail_text": "Enter the mail text which is used while sending pictures via email.",
"manual:mail:mail_username": "Enter the username used to log in to your e-mail account.",
"manual:mail:mail_virtual_keyboardLayout": "Choose the layout of the virtual keyboard.",
"manual:mail:mail_virtualKeyboard": "If enabled, a virtual keyboard is visible to enter email addresses.",
"manual:pictures:filters_defaults": "Choose an image filter which is applied by default after taking a picture.",
"manual:pictures:filters_disabled": "Choose filters which get removed from the available image filters.",
"manual:pictures:filters_enabled": "If enabled, users can choose an image filter after taking a picture.",
"manual:pictures:filters_process_size": "Downscale images to this maximum width/height before applying filters to speed up processing. Set to 0 to disable.",
"manual:pictures:picture_allow_delete": "If enabled pictures can be deleted on result page directly after they have been taken.",
"manual:pictures:picture_cheese_time": "Set a time to display \"Cheeeeeeeese!\" after the countdown.",
"manual:pictures:picture_cntdwn_time": "Set your countdown time.",
"manual:pictures:picture_enabled": "If enabled, the take picture button is visible and it's possible to take a picture.",
"manual:pictures:picture_extend_by_frame": "If enabled, the applied frame is not added as an overlay but the picture is extended by the frame",
"manual:pictures:picture_flip": "Choose if your picture is flipped after taken.",
"manual:pictures:picture_frame": "Enter the path of the frame which is applied to your picture after taking it.",
"manual:pictures:picture_frame_bottom_percentage": "The percentage of the bottom border of the frame of the total height",
"manual:pictures:picture_frame_left_percentage": "The percentage of the left border of the frame of the total width",
"manual:pictures:picture_frame_right_percentage": "The percentage of the right border of the frame of the total width",
"manual:pictures:picture_frame_top_percentage": "The percentage of the top border of the frame of the total height",
"manual:pictures:picture_keep_original": "If enabled, original images will be kept inside tmp folder.",
"manual:pictures:picture_key": "Specify the key id to use that key to take a picture (e.g. 13 is the enter key). For example use <a href=\"https://keycode.info\" target=\"_blank\">https://keycode.info</a> to find out the key id.",
"manual:pictures:picture_naming": "Choose between date formatted or random named images. For date formatted images, you can display the image with the date and time inside the gallery.",
"manual:pictures:picture_permissions": "Change taken picture permissions with \"chmod\" command. Please only change this value if you are familiar with file permissions in Linux/Unix.",
"manual:pictures:picture_polaroid_effect": "If enabled, a polaroid effect is applied to your picture after it was taken.",
"manual:pictures:picture_polaroid_rotation": "Enter a value which is used as degrees a picture gets rotated with polaroid effect.",
"manual:pictures:picture_preserve_exif_data": "If enabled, EXIF data is preserved while taking pictures. Please setup \"Preserve EXIF data\" inside the \"Commands\" tab.",
"manual:pictures:picture_rotation": "Enter a value which will set the degrees a picture is rotated after taking it.",
"manual:pictures:picture_take_frame": "If enabled, defined frame will be applied to your picture after taking it.",
"manual:pictures:textonpicture_enabled": "If enabled, you can apply some text onto your pictures.",
"manual:pictures:textonpicture_font": "Enter the path to the font used to apply text onto your image.",
"manual:pictures:textonpicture_font_color": "Choose the font color used to apply text to your picture.",
"manual:pictures:textonpicture_font_size": "Choose the font size used to apply text to your image.",
"manual:pictures:textonpicture_line1": "Text used for line 1 which gets applied to your picture.",
"manual:pictures:textonpicture_line2": "Text used for line 2 which gets applied to your picture.",
"manual:pictures:textonpicture_line3": "Text used for line 3 which gets applied to your picture.",
"manual:pictures:textonpicture_linespace": "Enter used linespace while adding text to your picture.",
"manual:pictures:textonpicture_locationx": "X-Coordinates of the text while adding text to your picture.",
"manual:pictures:textonpicture_locationy": "Y-Coordinates of the text while adding text to your picture.",
"manual:pictures:textonpicture_rotation": "Enter a value in degrees by which the text on your picture is rotated.",
"manual:power:reboot_button": "Button to initiate a reboot.",
"manual:power:shutdown_button": "Button to initiate a shutdown.",
"manual:preview:preview_asBackground": "Depends on \"Preview from device cam\". If enabled, a stream from your device cam is used as background on the start screen.",
"manual:preview:preview_camera_mode": "Choose between front- or back facing camera mode of your device cam.",
"manual:preview:preview_camTakesPic": "If enabled, a screenshot is taken from the preview canvas instead of executing the \"Take picture command\". Please note that the resolution depends on the given / available height and width.",
"manual:preview:preview_extend_by_frame": "If enabled, reduce and position the preview according to the percentages set in the \"Extend by frame\" property of the pictures.",
"manual:preview:preview_flip": "Choose to flip the preview from device cam.",
"manual:preview:preview_mode": "Choose a live preview mode. By default live preview is disabled, you can choose between a preview at countdown by your device cam and a preview from a URL. Preview \"from device cam\" will always use the camera of the device where Photobooth get opened in a Browser (e.g. on a tablet it will always show the tablet camera while on a smartphone it will always show the smartphone camera instead)! A secure origin or exception is required! You can find out how to set an exception <a href=\"https://medium.com/@Carmichaelize/enabling-the-microphone-camera-in-chrome-for-local-unsecure-origins-9c90c3149339\" target=\"_blank\">here</a>. \"Preview from device cam\" with a defined start- (and stop) command is not recommended for a Raspberry Pi as it requires faster hardware. \"Execute start command for preview on take picture/collage\" might need to be enabled as well.",
"manual:preview:preview_rotation": "Choose to rotate the preview.",
"manual:preview:preview_showFrame": "If enabled, the selected frame is show on top of the preview to allow guests to positionate themselves according to the frame.",
"manual:preview:preview_stop_time": "Define the time, the \"Command to kill live preview\" gets executed before the (collage-) countdown ends. The value must be lower than the (collage-) countdown.",
"manual:preview:preview_style": "This setting uses the css object-fit property which is used to specify how the preview should be resized to fit.</br></br>The following options are available:</br><b>fill</b> - The image is resized to fill the given dimension. If necessary, the image will be stretched or squished to fit.</br></br><b>contain</b> - The image keeps its aspect ratio, but is resized to fit within the given dimension.</br></br><b>cover</b> - The image keeps its aspect ratio and fills the given dimension. The image will be clipped to fit.</br></br><b>none</b> - The image is not resized.</br></br><b>scale-down</b> - the image is scaled down to the smallest version of none or contain.</br></br>Note: preview from URL only supports the cover and contain options, all other options apply the contain setting and won't harm.",
"manual:preview:preview_url": "CSS style to use a stream from an URL for preview while countdown. <p>Example: <code>url(../img/bg_bluegray.jpg)</code></p>",
"manual:preview:preview_url_delay": "Define a time to delay the visibility of the preview from URL. This might be needed if the preview URL is not ready early enough.",
"manual:preview:preview_videoHeight": "Enter a value which is used as height for preview by device cam.",
"manual:preview:preview_videoHeight_collage": "Enter a value which is used as height for preview by device cam while taking a collage.",
"manual:preview:preview_videoWidth": "Enter a value which is used as width for preview by device cam.",
"manual:preview:preview_videoWidth_collage": "Enter a value which is used as width for preview by device cam while taking a collage.",
"manual:print:button_show_cups": "Show a button on startpage to easily access CUPS (Common Unix Printing System).",
"manual:print:button_show_printUnlock": "Show a button on start page to unlock print once print got locked.",
"manual:print:max_multiple_prints": "If greater than 1 a dialog will appear showing the user how many copies to print. This settings define the maximum number of copies can be printed each time the button is pressed.",
"manual:print:print_auto": "If enabled, the picture will immediately printed after it was taken.",
"manual:print:print_auto_delay": "Enter in milliseconds by which the automatic printing of the image is delayed.",
"manual:print:print_crop": "If enabled, pictures are cropped at print by given height and width (px).",
"manual:print:print_crop_height": "Enter a value for the height which is used for the picture if \"Crop picture at print\" is enabled.",
"manual:print:print_crop_width": "Enter a value for the width which is used for the picture if \"Crop picture at print\" is enabled.",
"manual:print:print_frame": "Enter the path of the frame which is applied to your picture at print.",
"manual:print:print_from_chromakeying": "If enabled, a print button is visible on chromakeying page.",
"manual:print:print_from_gallery": "If enabled, a print button is visible inside the gallery.",
"manual:print:print_from_result": "If enabled, a print button is visible on result screen.",
"manual:print:print_key": "Specify the key id to use that key to print a picture (e.g. 13 is the enter key). For example use <a href=\"https://keycode.info\" target=\"_blank\">https://keycode.info</a> to find out the key id.",
"manual:print:print_limit": "Define how many prints are allowed until print get locked. Once the limit is reached printing need to be unlocked to print again. Define 0 for unlimited prints.",
"manual:print:print_limit_msg": "Define a message which will be visible while printing is locked. This message will be visible as error every time while trying to print until printing was unlocked.",
"manual:print:print_locking_msg": "Define a message which will be visible while printing gets locked. This message will be visible as warning once the limit is reached.",
"manual:print:print_no_rotate": "If enabled, images won't be rotated from portrait to landscape before the print command is executed.",
"manual:print:print_print_frame": "If enabled, a frame is applied on your picture at print.",
"manual:print:print_qrBgColor": "Define the background color of the qrcode (will replace the default white background).",
"manual:print:print_qrcode": "If enabled, a QR Code is printed onto the right side of the picture while printing.",
"manual:print:print_qrMargin": "Define the margin size outside the qrcode (4 is recommended).",
"manual:print:print_qrOffset": "Define an offset value the QR Code is placed away from the edges of the picture.",
"manual:print:print_qrPosition": "QR Code position",
"manual:print:print_qrSize": "Define the size of the QR Code. 4 = small, 10 = extra large.",
"manual:print:print_reset_lock": "Remove the lock file to allow printing again once the limit is reached.",
"manual:print:print_time": "Enter in milliseconds, how long \"Started printing! Please wait....\" is displayed after a print job has started.",
"manual:print:textonprint_enabled": "If enabled, you can print some text onto your pictures.",
"manual:print:textonprint_font": "Enter the path to the font used to print text onto your image.",
"manual:print:textonprint_font_color": "Choose the font color used to print text on your image.",
"manual:print:textonprint_font_size": "Enter the font size used to print text on your image.",
"manual:print:textonprint_line1": "Text used for 1. Line which gets printed on your picture.",
"manual:print:textonprint_line2": "Text used for 2. Line which gets printed on your picture.",
"manual:print:textonprint_line3": "Text used for 3. Line which gets printed on your picture.",
"manual:print:textonprint_linespace": "Enter used linespace while printing text on your picture.",
"manual:print:textonprint_locationx": "X-Coordinates of the text while printing text on your picture.",
"manual:print:textonprint_locationy": "Y-Coordinates of the text while printing text on your picture.",
"manual:print:textonprint_rotation": "Enter a value which is used as degrees the text gets rotated at print.",
"manual:qr:qr_append_filename": "If enabled, the image name will be added to the QR URL.",
"manual:qr:qr_custom_text": "If enabled, own defined help text will be visible below the QR Code.",
"manual:qr:qr_ecLevel": "QR Code error correction capability to restore data:</br> Level L – up to 7%</br> Level M – up to 15%</br> Level Q – up to 25%</br> Level H – up to 30%</br>",
"manual:qr:qr_enabled": "If enabled, a QR-Button is visible on the result screen and inside gallery. User can download a picture while scanning the QR Code. If you're accessing Photobooth via \"localhost\", \"127.0.0.1\" or if you have Photobooth installed inside a subfolder, please define IP address of the Photobooth web server to make the QR Code working. <p>Example if Photobooth can be accessed directly: <code>192.168.0.50</code>.</p><p>Example if Photobooth is installed inside a subfolder: <code>192.168.0.50/photobooth</code>.</p>",
"manual:qr:qr_pswp": "Choose a position to show the QR Code inside the gallery aside the image. QR Code must be enabled. Choose \"hidden\" to hide the QR Code. Selecting a position hides the qr button inside the gallery.",
"manual:qr:qr_result": "Choose a position to show the QR Code on the result screen directly after taking a picture. QR Code must be enabled. Choose \"hidden\" to hide the QR Code.",
"manual:qr:qr_short_text": "Optional short caption shown directly under the QR code (result screen & gallery). Leave empty to use the default \"Scan to download\" text.",
"manual:qr:qr_text": "Define own help text which will be visible below the QR Code.",
"manual:qr:qr_url": "Define a URL to point at via QR Code.",
"manual:remotebuzzer:remotebuzzer_collagebutton": "If enabled, collage can be triggered via HTTP request.",
"manual:remotebuzzer:remotebuzzer_custombutton": "If enabled, custom button action can be triggered via HTTP request.",
"manual:remotebuzzer:remotebuzzer_enable_standalonegallery": "Controls whether the rotary encoder HTTP endpoints are active on the standalone gallery view.",
"manual:remotebuzzer:remotebuzzer_input_device": "Linux input device for hardware triggers (e.g. /dev/input/by-id/...). Uses the per-action key codes (picture/collage/custom/print/video) to map incoming key events.",
"manual:remotebuzzer:remotebuzzer_move2usbbutton": "If enabled, Move2USB can be triggered via HTTP request.",
"manual:remotebuzzer:remotebuzzer_picturebutton": "If enabled, picrure can be triggered via HTTP request.",
"manual:remotebuzzer:remotebuzzer_port": "Server TCP Port - example 14711.",
"manual:remotebuzzer:remotebuzzer_printbutton": "If enabled, print can be triggered via HTTP request.",
"manual:remotebuzzer:remotebuzzer_rebootbutton": "If enabled, reboot can be triggered via HTTP request.",
"manual:remotebuzzer:remotebuzzer_serverip": "Please define the IP address of the Remote buzzer Server.",
"manual:remotebuzzer:remotebuzzer_shutdownbutton": "If enabled, shutdown can be triggered via HTTP request.",
"manual:remotebuzzer:remotebuzzer_startserver": "If enabled, the Remote buzzer Server is started while accessing Photobooth, If disabled, Photobooth can still connect as client to a different located remote buzzer server depending on enabled remote buzzer options. <b>Note:</b>If connected as client only the Move2USB, Reboot and Shutdown functions won't be executed on Photobooth - instead those will be triggered on the remote buzzer server directly!",
"manual:remotebuzzer:remotebuzzer_usebuttons": "This feature enables HTTP endpoints for button support. IMPORTANT: For WLAN connected screens you must make sure to configure the IP address of the remote buzzer server, for this feature to work properly.",
"manual:remotebuzzer:remotebuzzer_userotary": "Enable Rotary Encoder HTTP endpoints to navigate the screen. IMPORTANT: For WLAN connected screens you must make sure to configure the IP address of the remote buzzer server, for this feature to work properly.",
"manual:remotebuzzer:remotebuzzer_videobutton": "If enabled, video can.be triggered via HTTP request.",
"manual:reset:reset_button": "Will execute reset for selected options.",
"manual:reset:reset_remove_config": "If enabled, personal config gets removed on reset.",
"manual:reset:reset_remove_mailtxt": "If enabled, mail database gets removed on reset.",
"manual:reset:reset_remove_media": "If enabled, all captured images and videos gets removed on reset. Note: Uploaded private files (e.g. backgrounds, frames,...) won't be removed! Delete those files manually if needed.",
"manual:reset:reset_remove_print_db": "If enabled, print database gets removed on reset.",
"manual:screensaver:screensaver_enabled": "Enable or disable the screensaver.",
"manual:screensaver:screensaver_gallery_width": "Pixel width for gallery-mode images; height stays auto.",
"manual:screensaver:screensaver_image_source": "Pick the image used when screensaver mode is image or as fallback for gallery.",
"manual:screensaver:screensaver_mode": "Select what the screensaver shows: single image, single video, images from the screensavers folder, or gallery images.",
"manual:screensaver:screensaver_preview": "Open a new tab and show the screensaver immediately with the current settings.",
"manual:screensaver:screensaver_switch_seconds": "Seconds between image/video changes in the screensaver.",
"manual:screensaver:screensaver_text": "Optional text shown on screensaver; alternates with event text if set.",
"manual:screensaver:screensaver_text_backdrop_color": "Backdrop base color behind screensaver text.",
"manual:screensaver:screensaver_text_backdrop_opacity": "Backdrop opacity (0 = transparent, 1 = solid).",
"manual:screensaver:screensaver_text_color": "Color of the screensaver text.",
"manual:screensaver:screensaver_text_font": "Font used for screensaver text (deprecated, configure in Fonts section).",
"manual:screensaver:screensaver_text_position": "Select where the screensaver text is placed.",
"manual:screensaver:screensaver_timeout_minutes": "Minutes of inactivity before the screensaver starts.",
"manual:screensaver:screensaver_video_source": "Pick the video used when screensaver mode is video.",
"manual:slideshow:slideshow_pictureTime": "Add a value which is used as milliseconds an image is displayed at standalone slideshow.",
"manual:slideshow:slideshow_randomPicture": "If enabled, random pictures will be shown at standalone gallery.",
"manual:slideshow:slideshow_refreshTime": "Refresh standalone slideshow after entered seconds.",
"manual:slideshow:slideshow_use_thumbs": "If enabled, thumbnails are used for standalone gallery. This will improve the performance slightly.",
"manual:sound:sound_cheese_enabled": "Enable cheese sound. This sound will be played when the cheese text is shown",
"manual:sound:sound_countdown_enabled": "Enable countdown sounds. Every second of the countdown will play a sound",
"manual:sound:sound_enabled": "Global toggle for all UI sounds.",
"manual:sound:sound_fallback_enabled": "Use EN sounds as fallback if the current language is not supported yet",
"manual:sound:sound_test": "Play a random test sound",
"manual:sound:sound_voice": "Which voice to use for sounds",
"manual:synctodrive:synctodrive_enabled": "Enable automatic syncing of new pictures to USB device using rsync",
"manual:synctodrive:synctodrive_interval": "Seconds to trigger syncing as interval",
"manual:synctodrive:synctodrive_target": "Pattern to identify USB device either by USB stick name (e.g. <code>photobooth</code>), device full path (e.g <code>/dev/sda1</code>) or device subsystem (e.g. <code>sda</code>).",
"manual:theme_title": "Use the Themes box to save current theme fields, load another, export a ZIP (config + referenced images), or import that ZIP to install a theme. Import or save will overwrite an existing theme with the same name.",
"manual:userinterface:background_admin": "Enter the path to the admin panel background image.",
"manual:userinterface:background_chroma": "Enter the path to the chroma keying background image.",
"manual:userinterface:background_defaults": "Enter the path to the default background image.",
"manual:userinterface:background_type": "Choose whether to use an image or video background.",
"manual:userinterface:background_video": "Enter the path to the background video.",
"manual:userinterface:button_homescreen": "If disabled, the home button on the results screen will be hidden.",
"manual:userinterface:button_reload": "If enabled, a button to reload the page will be added to the start screen.",
"manual:userinterface:colors_background_countdown": "Background color of the countdown screen.",
"manual:userinterface:colors_border": "Border color used for UI elements.",
"manual:userinterface:colors_box": "Box/panel color.",
"manual:userinterface:colors_button_font": "Font color of buttons.",
"manual:userinterface:colors_cheese": "Color of the “cheese” prompt.",
"manual:userinterface:colors_countdown": "Color of the countdown numbers.",
"manual:userinterface:colors_font": "Primary font color.",
"manual:userinterface:colors_font_secondary": "Secondary font color (e.g., subtitles).",
"manual:userinterface:colors_gallery_button": "Button color in the gallery.",
"manual:userinterface:colors_highlight": "Highlight color for modern buttons.",
"manual:userinterface:colors_panel": "Background color of admin/login panels.",
"manual:userinterface:colors_primary": "Primary accent color.",
"manual:userinterface:colors_primary_light": "Light variant of the primary color.",
"manual:userinterface:colors_secondary": "Secondary accent color.",
"manual:userinterface:colors_start_font": "Font color on the start screen.",
"manual:userinterface:colors_status_bar": "Color used for the browser/status bar (theme-color) on mobile.",
"manual:userinterface:icons_admin": "Defines the icon class used for the admin button.",
"manual:userinterface:icons_admin_back": "Defines the icon class used for the back button in the admin panel.",
"manual:userinterface:icons_admin_back_short": "Defines the icon class used for the short back button in the admin panel.",
"manual:userinterface:icons_admin_menutoggle": "Defines the icon class used for the menu toggle in the admin panel.",
"manual:userinterface:icons_admin_save": "Defines the icon class used for the save button in the admin panel.",
"manual:userinterface:icons_admin_save_error": "Defines the icon class used for the save-error icon in the admin panel.",
"manual:userinterface:icons_admin_save_success": "Defines the icon class used for the save-success icon in the admin panel.",
"manual:userinterface:icons_admin_signout": "Defines the icon class used for the sign-out button in the admin panel.",
"manual:userinterface:icons_chroma": "Defines the icon class used for the chroma keying button.",
"manual:userinterface:icons_chromaCapture": "Defines the icon class used for the chroma capture button.",
"manual:userinterface:icons_close": "Defines the icon class used for the close button.",
"manual:userinterface:icons_cups": "Defines the icon class used for the CUPS button.",
"manual:userinterface:icons_date": "Defines the icon class used for displaying dates.",
"manual:userinterface:icons_delete": "Defines the icon class used for delete actions.",
"manual:userinterface:icons_dependencies": "Defines the icon class used for the dependencies button.",
"manual:userinterface:icons_download": "Defines the icon class used for download actions.",
"manual:userinterface:icons_faq": "Defines the icon class used for the FAQ button.",
"manual:userinterface:icons_filter": "Defines the icon class used for the image filter button.",
"manual:userinterface:icons_fullscreen": "Defines the icon class used for the fullscreen button.",
"manual:userinterface:icons_gallery": "Defines the icon class used for the gallery button.",
"manual:userinterface:icons_home": "Defines the icon class used for the home button.",
"manual:userinterface:icons_logout": "Defines the icon class used for the logout button.",
"manual:userinterface:icons_mail": "Defines the icon class used for the mail button.",
"manual:userinterface:icons_mail_close": "Defines the icon class used for closing the mail dialog.",
"manual:userinterface:icons_mail_submit": "Defines the icon class used for sending mails.",
"manual:userinterface:icons_manual": "Defines the icon class used for the manual button.",
"manual:userinterface:icons_password_toggle": "Define the icon classes used to toggle password visibility.",
"manual:userinterface:icons_password_visibility": "Define the icon class used to show password visibility.",
"manual:userinterface:icons_print": "Defines the icon class used for the print button.",
"manual:userinterface:icons_qr": "Defines the icon class used for the QR code button.",
"manual:userinterface:icons_refresh": "Defines the icon class used for the refresh button.",
"manual:userinterface:icons_save": "Defines the icon class used for save actions.",
"manual:userinterface:icons_share": "Defines the icon class used for share actions.",
"manual:userinterface:icons_slideshow": "Defines the icon class used for the slideshow button.",
"manual:userinterface:icons_slideshow_play": "Defines the icon class used for the slideshow play button.",
"manual:userinterface:icons_slideshow_toggle": "Defines the icon classes used to toggle the slideshow.",
"manual:userinterface:icons_spinner": "Defines the icon class used for the loading spinner.",
"manual:userinterface:icons_take_collage": "Defines the icon class used for the collage button.",
"manual:userinterface:icons_take_picture": "Defines the icon class used for the take-picture button.",
"manual:userinterface:icons_take_video": "Defines the icon class used for the take-video button.",
"manual:userinterface:icons_telegram": "Defines the icon class used for the Telegram button.",
"manual:userinterface:icons_update": "Defines the icon class used for the update button.",
"manual:userinterface:icons_update_git": "Defines the icon class used for the Git update button.",
"manual:userinterface:icons_zoom": "Defines the icon class used for the zoom button.",
"manual:userinterface:ui_button": "Choose your desired button style.",
"manual:userinterface:ui_decore_lines": "If enabled, decorate lines will be visible on start page.",
"manual:userinterface:ui_result_buttons": "If enabled, post-processing buttons will be visible on the on result screen. If disabled the whole button bar will be hidden.",
"manual:userinterface:ui_scale": "Scaling of the Interface.",
"manual:userinterface:ui_scale_resultImage": "Height of the image visible on the result screen.",
"manual:userinterface:ui_shutter_animation": "If enabled, a shutter animation will be visible while taking a picture.",
"manual:userinterface:ui_shutter_cheese_img": "If shutter animation is enabled and this is not none the UI will display an image instead of the shutter text. The image stays visible until the photo is received from the camera.",
"manual:userinterface:ui_style": "Choose a start page styling.",
"manual:version:check_version": "Displays the currently installed Photobooth version.",
"manual:video:video_animation": "Play an Animation that while the video is recording.",
"manual:video:video_cheese": "Set the cheese message for video recording.",
"manual:video:video_cntdwn_time": "Set your countdown time before video recording starts.",
"manual:video:video_collage": "If the video command saves 4 images from the video, create a collage from these.",
"manual:video:video_collage_keep_images": "Keep the images the video collage was created from. If not active the images are deleted. Note: These images are just video captures and thus not of the highest quality.",
"manual:video:video_collage_only": "Video will not be handled and only the collage will be created.",
"manual:video:video_effects": "Video effect that should be applied on the video.",
"manual:video:video_enabled": "Enable taking a short video that can be processed to a simple collage.",
"manual:video:video_gif": "Convert video to an animated gif. (Longer rendering time, larger file, worse quality)",
"manual:video:video_qr": "Show QR code for video on screen.",
"menu": "menu",
"milliseconds": "ms",
"multiplied": "x",
"myconfig": "My Config",
"newCollage": "New Collage",
"newPhoto": "New Picture",
"newVideo": "New Video",
"next_element": "Next",
"nextPhoto": "Next Picture",
"no_preview": "No preview available.",
"no_printing": "File type can't be printed.",
"path": "Path:",
"percent": "%",
"php-extension-disabled": "PHP Extension: %s must be enabled!",
"php-extension-enabled": "PHP Extension: %s enabled!",
"phpinfo": "PHP Info",
"phpUpdateRequired": "Please update your PHP Version.",
"phpVersionError": "PHP does not match our requirements!",
"phpVersionOk": "PHP machtes our requirements",
"phpVersionWarning": "WARNING: Polyfill might be used.",
"pictures": "Pictures",
"pictures:filters_defaults": "Default image filter",
"pictures:filters_disabled": "Disabled image filters",
"pictures:filters_enabled": "Allow image filter",
"pictures:filters_process_size": "Filter processing size",
"pictures:picture_allow_delete": "Allow deletion of the image",
"pictures:picture_cheese_time": "Cheese timer:",
"pictures:picture_cntdwn_time": "Countdown timer:",
"pictures:picture_enabled": "Allow photo",
"pictures:picture_extend_by_frame": "Extend the picture by the frame",
"pictures:picture_flip": "Flip image:",
"pictures:picture_frame": "Frame",
"pictures:picture_frame_bottom_percentage": "Bottom border size of the frame (percentage)",
"pictures:picture_frame_left_percentage": "Left border size of the frame (percentage)",
"pictures:picture_frame_right_percentage": "Right border size of the frame (percentage)",
"pictures:picture_frame_top_percentage": "Top border size of the frame (percentage)",
"pictures:picture_keep_original": "Keep original images in tmp folder",
"pictures:picture_key": "Key code which triggers a photo",
"pictures:picture_naming": "File naming",
"pictures:picture_permissions": "Picture permissions",
"pictures:picture_polaroid_effect": "Polaroid effect",
"pictures:picture_polaroid_rotation": "Polaroid picture rotation",
"pictures:picture_preserve_exif_data": "Preserve EXIF data",
"pictures:picture_rotation": "Rotate photo after taking (in degrees)",
"pictures:picture_take_frame": "Take picture with frame",
"pictures:textonpicture_enabled": "Text on image",
"pictures:textonpicture_font": "Font",
"pictures:textonpicture_font_color": "Font color",
"pictures:textonpicture_font_size": "Font size",
"pictures:textonpicture_line1": "Text for line 1",
"pictures:textonpicture_line2": "Text for line 2",
"pictures:textonpicture_line3": "Text for line 3",
"pictures:textonpicture_linespace": "Line spacing",
"pictures:textonpicture_locationx": "X Coordinate",
"pictures:textonpicture_locationy": "Y Coordinate",
"pictures:textonpicture_rotation": "Text rotation",
"pictureTest": "Picture test",
"power": "Power",
"power:reboot_button": "Reboot",
"power:shutdown_button": "Shutdown",
"preview": "Live preview",
"preview:preview_asBackground": "Use preview from device cam as background",
"preview:preview_camera_mode": "Camera facing mode",
"preview:preview_camTakesPic": "Capture screenshot (preview \"from device cam\" only)",
"preview:preview_extend_by_frame": "Extend the preview by the frame",
"preview:preview_flip": "Flip preview from device cam:",
"preview:preview_mode": "Preview mode",
"preview:preview_rotation": "Rotate preview",
"preview:preview_showFrame": "Show frame over the preview",
"preview:preview_stop_time": "Time before the countdown ends to execute the preview stop command:",
"preview:preview_style": "Preview style",
"preview:preview_url": "Preview-URL",
"preview:preview_url_delay": "Delay visibility of preview from URL",
"preview:preview_videoHeight": "Device cam picture height",
"preview:preview_videoHeight_collage": "Device cam picture height while taking a collage",
"preview:preview_videoWidth": "Device cam picture width",
"preview:preview_videoWidth_collage": "Device cam picture width while taking a collage",
"previewTest": "Preview test",
"previous_element": "Previous",
"print": "Print",
"print_queued": "Image added to print queue.",
"print:button_show_cups": "Show CUPS button",
"print:button_show_printUnlock": "Show print unlock button",
"print:choose_copies": "Choose how many copies of this image to print",
"print:max_multiple_prints": "Choose the maximum number of copies to print each time",
"print:print_auto": "Print picture immediately after taken",
"print:print_auto_delay": "Delay printing of the image",
"print:print_crop": "Crop picture at print",
"print:print_crop_height": "New height at print (px)",
"print:print_crop_width": "New width at print (px)",
"print:print_frame": "Frame",
"print:print_from_chromakeying": "Allow printing from chromakeying",
"print:print_from_gallery": "Allow printing from gallery",
"print:print_from_result": "Allow printing from result page",
"print:print_key": "Key code which triggers printing",
"print:print_limit": "Print limit",
"print:print_limit_msg": "Notification if print is locked",
"print:print_locking_msg": "Notification if print gets locked",
"print:print_no_rotate": "Don't rotate image for print",
"print:print_print_frame": "Print frame on picture",
"print:print_qrBgColor": "QR Code background color",
"print:print_qrcode": "QR Code on the picture while printing",
"print:print_qrMargin": "QR Code margin",
"print:print_qrOffset": "QR Code offset",
"print:print_qrPosition": "QR Code position",
"print:print_qrSize": "QR Code size (4 = small, 10 = extra large)",
"print:print_reset_lock": "Unlock print",
"print:print_time": "Printing time",
"print:textonprint_enabled": "Print text on image",
"print:textonprint_font": "Font",
"print:textonprint_font_color": "Font color",
"print:textonprint_font_size": "Font size",
"print:textonprint_line1": "Text for line 1",
"print:textonprint_line2": "Text for line 2",
"print:textonprint_line3": "Text for line 3",
"print:textonprint_linespace": "Line spacing",
"print:textonprint_locationx": "X Coordinate",
"print:textonprint_locationy": "Y Coordinate",
"print:textonprint_rotation": "Text rotation",
"printdb": "Print database",
"printed": "Printed:",
"printing": "Started printing! Please wait...",
"processPhoto": "Process Collage",
"px": "px",
"qr": "QR Code",
"qr:qr_append_filename": "Append filename to URL",
"qr:qr_custom_text": "Use own help text on QR",
"qr:qr_ecLevel": "QR Code error correction",
"qr:qr_enabled": "Use QR Codes",
"qr:qr_pswp": "QR Code position inside the gallery:",
"qr:qr_result": "QR Code position on result screen:",
"qr:qr_short_text": "Short QR caption (below code)",
"qr:qr_text": "Own help text",
"qr:qr_url": "URL for QR Code",
"qrHelp": "To download the picture to your smartphone, connect to the WiFi:",
"really_delete": "Really reset according to your settings? This cannot be undone!",
"really_delete_image": "will be deleted! This cannot be undone! Really delete picture?",
"reboot_button": "Reboot",
"reload": "Reload",
"rembglog": "Magic Greenscreen Log",
"remotebuzzer": "Hardware buttons",
"remotebuzzer:remotebuzzer_collagebutton": "Collage Button",
"remotebuzzer:remotebuzzer_custombutton": "Custom Button",
"remotebuzzer:remotebuzzer_enable_standalonegallery": "Rotary for standalone gallery",
"remotebuzzer:remotebuzzer_input_device": "Input device",
"remotebuzzer:remotebuzzer_move2usbbutton": "Move2USB mode",
"remotebuzzer:remotebuzzer_picturebutton": "Picture Button",
"remotebuzzer:remotebuzzer_port": "Server Port",
"remotebuzzer:remotebuzzer_printbutton": "Print Button",
"remotebuzzer:remotebuzzer_rebootbutton": "Reboot Button",