-
Notifications
You must be signed in to change notification settings - Fork 690
Expand file tree
/
Copy pathapp.php
More file actions
2342 lines (2341 loc) · 153 KB
/
app.php
File metadata and controls
2342 lines (2341 loc) · 153 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
<?php
return [
'(blank)' => '(blank)',
'(included)' => '(included)',
'({currencyCode}) {currencySymbol}' => '({currencyCode}) {currencySymbol}',
'({period} days)' => '({period} days)',
'/path/to/folder' => '/path/to/folder',
'1 job' => '1 job',
'<a>Renew now</a> for another year of updates.' => '<a>Renew now</a> for another year of updates.',
'<span class="visually-hidden">Characters left:</span> {chars, number}' => '<span class="visually-hidden">Characters left:</span> {chars, number}',
'<strong>Your license has expired!</strong> Renew your {name} license for another year of amazing updates.' => '<strong>Your license has expired!</strong> Renew your {name} license for another year of amazing updates.',
'<strong>You’ve reached a breakpoint!</strong> More updates will become available after you install {update}.' => '<strong>You’ve reached a breakpoint!</strong> More updates will become available after you install {update}.',
'A critical update is available.' => 'A critical update is available.',
'A fatal error has occurred:' => 'A fatal error has occurred:',
'A file with the name “{filename}” already exists.' => 'A file with the name “{filename}” already exists.',
'A folder with the name “{folderName}” already exists in the folder.' => 'A folder with the name “{folderName}” already exists in the folder.',
'A folder with the name “{folderName}” already exists in the volume.' => 'A folder with the name “{folderName}” already exists in the volume.',
'A license key is required.' => 'A license key is required.',
'A server error occurred.' => 'A server error occurred.',
'A subpath is required for this filesystem.' => 'A subpath is required for this filesystem.',
'A template name cannot contain NUL bytes.' => 'A template name cannot contain NUL bytes.',
'ARIA Label' => 'ARIA Label',
'Abandoned' => 'Abandoned',
'Abort the update' => 'Abort the update',
'Access the control panel when the system is offline' => 'Access the control panel when the system is offline',
'Access the control panel' => 'Access the control panel',
'Access the site when the system is off' => 'Access the site when the system is off',
'Access {plugin}' => 'Access {plugin}',
'Accessibility' => 'Accessibility',
'Account Security' => 'Account Security',
'Account Type' => 'Account Type',
'Account has not been activated.' => 'Account has not been activated.',
'Account locked. Try again in {time}.' => 'Account locked. Try again in {time}.',
'Account locked.' => 'Account locked.',
'Account suspended.' => 'Account suspended.',
'Account' => 'Account',
'Accounts with this permission could use it to escalate their own permissions.' => 'Accounts with this permission could use it to escalate their own permissions.',
'Action' => 'Action',
'Actions' => 'Actions',
'Activate account' => 'Activate account',
'Activation email sent.' => 'Activation email sent.',
'Active Installs' => 'Active Installs',
'Active Trials' => 'Active Trials',
'Active trials added to the cart.' => 'Active trials added to the cart.',
'Active' => 'Active',
'Activity' => 'Activity',
'Add Group' => 'Add Group',
'Add Row Label' => 'Add Row Label',
'Add a category' => 'Add a category',
'Add a color' => 'Add a color',
'Add a column' => 'Add a column',
'Add a filter' => 'Add a filter',
'Add a passkey' => 'Add a passkey',
'Add a row' => 'Add a row',
'Add a rule' => 'Add a rule',
'Add a tag' => 'Add a tag',
'Add a token' => 'Add a token',
'Add a user' => 'Add a user',
'Add all to cart' => 'Add all to cart',
'Add an asset' => 'Add an asset',
'Add an entry' => 'Add an entry',
'Add an option' => 'Add an option',
'Add option' => 'Add option',
'Add to cart' => 'Add to cart',
'Add {type} above' => 'Add {type} above',
'Add' => 'Add',
'Added to cart' => 'Added to cart',
'Address Fields' => 'Address Fields',
'Address Line 1' => 'Address Line 1',
'Address Line 2' => 'Address Line 2',
'Address Line 3' => 'Address Line 3',
'Address fields saved.' => 'Address fields saved.',
'Address' => 'Address',
'Addresses' => 'Addresses',
'Add…' => 'Add…',
'Admin' => 'Admin',
'Administrate users' => 'Administrate users',
'Administrative Area' => 'Administrative Area',
'Admins' => 'Admins',
'Advanced Fields' => 'Advanced Fields',
'Advanced' => 'Advanced',
'Affiliated Site' => 'Affiliated Site',
'After other {type}' => 'After other {type}',
'After…' => 'After…',
'Aliases' => 'Aliases',
'All Sites' => 'All Sites',
'All color values must be valid.' => 'All color values must be valid.',
'All done!' => 'All done!',
'All done' => 'All done',
'All elements' => 'All elements',
'All entries' => 'All entries',
'All jobs released.' => 'All jobs released.',
'All option labels must be unique.' => 'All option labels must be unique.',
'All option values must be unique.' => 'All option values must be unique.',
'All plugins must be compatible with Craft {version} before you can upgrade.' => 'All plugins must be compatible with Craft {version} before you can upgrade.',
'All reviews' => 'All Reviews',
'All targets must have a label.' => 'All targets must have a label.',
'All users' => 'All users',
'All' => 'All',
'Allow Upscaling' => 'Allow Upscaling',
'Allow anchors' => 'Allow anchors',
'Allow custom URL schemes' => 'Allow custom URL schemes',
'Allow custom colors' => 'Allow custom colors',
'Allow custom options' => 'Allow custom options',
'Allow line breaks' => 'Allow line breaks',
'Allow public registration' => 'Allow public registration',
'Allow root-relative URLs' => 'Allow root-relative URLs',
'Allow self relations' => 'Allow self relations',
'Allow subfolders' => 'Allow subfolders',
'Allow uploading directly to the field' => 'Allow uploading directly to the field',
'Allowed File Types' => 'Allowed File Types',
'Allowed Link Types' => 'Allowed Link Types',
'Allows creating drafts of new {type}.' => 'Allows creating drafts of new {type}.',
'Allows deleting other users’ {type} for all sites.' => 'Allows deleting other users’ {type} for all sites.',
'Allows deleting other users’ {type} for individual sites, provided the user has access to them.' => 'Allows deleting other users’ {type} for individual sites, provided the user has access to them.',
'Allows deleting {type} for all sites.' => 'Allows deleting {type} for all sites.',
'Allows deleting {type} for individual sites, provided the user has access to them.' => 'Allows deleting {type} for individual sites, provided the user has access to them.',
'Allows fully saving canonical {type} (directly or by applying drafts).' => 'Allows fully saving canonical {type} (directly or by applying drafts).',
'Allows viewing existing {type} and creating drafts for them.' => 'Allows viewing existing {type} and creating drafts for them.',
'Already in your cart' => 'Already in your cart',
'Alternative Text' => 'Alternative Text',
'Amber' => 'Amber',
'An error occurred when duplicating the category.' => 'An error occurred when duplicating the category.',
'An error occurred when duplicating the entry.' => 'An error occurred when duplicating the entry.',
'An error occurred when installing {name}.' => 'An error occurred when installing {name}.',
'An error occurred while processing your request.' => 'An error occurred while processing your request.',
'Ancestors' => 'Ancestors',
'Announcements' => 'Announcements',
'Any changes will be lost if you leave this page.' => 'Any changes will be lost if you leave this page.',
'Anything cached with `Craft::$app->cache->set()`' => 'Anything cached with `Craft::$app->cache->set()`',
'Application Info' => 'Application Info',
'Applied new migrations successfully.' => 'Applied new migrations successfully.',
'Applied “{name}”' => 'Applied “{name}”',
'Applied' => 'Applied',
'Apply Time' => 'Apply Time',
'Apply YAML Changes' => 'Apply YAML Changes',
'Apply YAML changes' => 'Apply YAML changes',
'Apply changes in your project config YAML files to the loaded project config.' => 'Apply changes in your project config YAML files to the loaded project config.',
'Apply changes only' => 'Apply changes only',
'Apply draft' => 'Apply draft',
'Apply new migrations' => 'Apply new migrations',
'Apply this to the {number} remaining conflicts?' => 'Apply this to the {number} remaining conflicts?',
'Apply' => 'Apply',
'Applying changes from the project config YAML files…' => 'Applying changes from the project config YAML files…',
'Applying new propagation method to elements' => 'Applying new propagation method to elements',
'Applying new propagation method to {name} entries' => 'Applying new propagation method to {name} entries',
'Applying this change to existing entries can take some time.' => 'Applying this change to existing entries can take some time.',
'Are you sure you want to close the editor? Any changes will be lost.' => 'Are you sure you want to close the editor? Any changes will be lost.',
'Are you sure you want to close this screen? Any changes will be lost.' => 'Are you sure you want to close this screen? Any changes will be lost.',
'Are you sure you want to delete the logo?' => 'Are you sure you want to delete the logo?',
'Are you sure you want to delete the selected entries?' => 'Are you sure you want to delete the selected entries?',
'Are you sure you want to delete the selected {type} along with their descendants?' => 'Are you sure you want to delete the selected {type} along with their descendants?',
'Are you sure you want to delete the selected {type} for this site?' => 'Are you sure you want to delete the selected {type} for this site?',
'Are you sure you want to delete the selected {type}?' => 'Are you sure you want to delete the selected {type}?',
'Are you sure you want to delete the {type} for this site?' => 'Are you sure you want to delete the {type} for this site?',
'Are you sure you want to delete the “{name}” passkey?' => 'Are you sure you want to delete the “{name}” passkey?',
'Are you sure you want to delete this group?' => 'Are you sure you want to delete this group?',
'Are you sure you want to delete this image?' => 'Are you sure you want to delete this image?',
'Are you sure you want to delete this route?' => 'Are you sure you want to delete this route?',
'Are you sure you want to delete this {type}?' => 'Are you sure you want to delete this {type}?',
'Are you sure you want to delete “{name}” and all entries of that type?' => 'Are you sure you want to delete “{name}” and all entries of that type?',
'Are you sure you want to delete “{name}” and all its entries?' => 'Are you sure you want to delete “{name}” and all its entries?',
'Are you sure you want to delete “{name}”?' => 'Are you sure you want to delete “{name}”?',
'Are you sure you want to discard the pending project config YAML changes?' => 'Are you sure you want to discard the pending project config YAML changes?',
'Are you sure you want to discard your changes?' => 'Are you sure you want to discard your changes?',
'Are you sure you want to move the selected items?' => 'Are you sure you want to move the selected items?',
'Are you sure you want to permanently delete the selected {type}?' => 'Are you sure you want to permanently delete the selected {type}?',
'Are you sure you want to release all jobs in the queue?' => 'Are you sure you want to release all jobs in the queue?',
'Are you sure you want to release the job “{description}”?' => 'Are you sure you want to release the job “{description}”?',
'Are you sure you want to remove {name} verification?' => 'Are you sure you want to remove {name} verification?',
'Are you sure you want to restart the job “{description}”? Any progress could be lost.' => 'Are you sure you want to restart the job “{description}”? Any progress could be lost.',
'Are you sure you want to transfer your license to this domain?' => 'Are you sure you want to transfer your license to this domain?',
'Are you sure you want to undo the move?' => 'Are you sure you want to undo the move?',
'Are you sure you want to uninstall {plugin}? You will lose all of its associated data.' => 'Are you sure you want to uninstall {plugin}? You will lose all of its associated data.',
'Area' => 'Area',
'As an element index' => 'As an element index',
'As cards' => 'As cards',
'As currency values' => 'As currency values',
'As decimal numbers' => 'As decimal numbers',
'As inline-editable blocks' => 'As inline-editable blocks',
'Ascending' => 'Ascending',
'Ask on Stack Exchange' => 'Ask on Stack Exchange',
'Asset Filesystem' => 'Asset Filesystem',
'Asset Indexes' => 'Asset Indexes',
'Asset Location' => 'Asset Location',
'Asset Settings' => 'Asset Settings',
'Asset caches' => 'Asset caches',
'Asset indexing data' => 'Asset indexing data',
'Asset not found with that id' => 'Asset not found with that id',
'Asset transform index' => 'Asset transform index',
'Asset' => 'Asset',
'Assets' => 'Assets',
'Assign user permissions' => 'Assign user permissions',
'Assign users to this group' => 'Assign users to this group',
'Assign users to “{group}”' => 'Assign users to “{group}”',
'At least one currently-enabled site must remain enabled.' => 'At least one currently-enabled site must remain enabled.',
'Attach a database backup' => 'Attach a database backup',
'Attach an additional file' => 'Attach an additional file',
'Attach error logs' => 'Attach error logs',
'Attachment' => 'Attachment',
'Attributes' => 'Attributes',
'Audio' => 'Audio',
'Auth error' => 'Auth error',
'Authentication method removed.' => 'Authentication method removed.',
'Authenticator App' => 'Authenticator App',
'Author Group' => 'Author Group',
'Author' => 'Author',
'Authorization Header' => 'Authorization Header',
'Authors' => 'Authors',
'Auto' => 'Auto',
'Auto-refresh' => 'Auto-refresh',
'Auto-renew for {price} annually, starting on {date}.' => 'Auto-renew for {price} annually, starting on {date}.',
'Back to sign in' => 'Back to sign in',
'Back to the queue index' => 'Back to the queue index',
'Back' => 'Back',
'Backing-up database…' => 'Backing-up database…',
'Backup' => 'Backup',
'Bad Request' => 'Bad Request',
'Base Path' => 'Base Path',
'Base URL' => 'Base URL',
'Before other {type}' => 'Before other {type}',
'Before…' => 'Before…',
'Blank values will default to the settings above.' => 'Blank values will default to the settings above.',
'Blue' => 'Blue',
'Body' => 'Body',
'Bottom Handle' => 'Bottom Handle',
'Bottom-Center' => 'Bottom-Center',
'Bottom-Left Handle' => 'Bottom-Left Handle',
'Bottom-Left' => 'Bottom-Left',
'Bottom-Right Handle' => 'Bottom-Right Handle',
'Bottom-Right' => 'Bottom-Right',
'Branch Limit' => 'Branch Limit',
'Breadcrumbs' => 'Breadcrumbs',
'Briefly describe your issue or idea.' => 'Briefly describe your issue or idea.',
'Briefly describe your question.' => 'Briefly describe your question.',
'Bug reports and feature requests' => 'Bug reports and feature requests',
'Button Group' => 'Button Group',
'Buy now' => 'Buy now',
'Buy {name}' => 'Buy {name}',
'Bytes' => 'Bytes',
'Cache remote images' => 'Cache remote images',
'Caches' => 'Caches',
'Can be dismissed?' => 'Can be dismissed?',
'Can contain Markdown formatting.' => 'Can contain Markdown formatting.',
'Cancel' => 'Cancel',
'Cannot find the indexing session, or there’s nothing to review.' => 'Cannot find the indexing session, or there’s nothing to review.',
'Canton' => 'Canton',
'Can’t run Craft CMS' => 'Can’t run Craft CMS',
'Captions/Subtitles' => 'Captions/Subtitles',
'Card Attributes' => 'Card Attributes',
'Card Layout Editor' => 'Card Layout Editor',
'Card Layout Preview' => 'Card Layout Preview',
'Cards' => 'Cards',
'Cart' => 'Cart',
'Categories' => 'Categories',
'Category Group - {name}' => 'Category Group - {name}',
'Category Group' => 'Category Group',
'Category Groups' => 'Category Groups',
'Category URI Format' => 'Category URI Format',
'Category group saved.' => 'Category group saved.',
'Category' => 'Category',
'Center-Center' => 'Center-Center',
'Center-Left' => 'Center-Left',
'Center-Right' => 'Center-Right',
'Change icon' => 'Change icon',
'Change logo' => 'Change logo',
'Change photo' => 'Change photo',
'Change your Password' => 'Change your Password',
'Change' => 'Change',
'Changelog' => 'Changelog',
'Changes discarded.' => 'Changes discarded.',
'Changes saved.' => 'Changes saved.',
'Changes to these settings aren’t permitted in this environment.' => 'Changes to these settings aren’t permitted in this environment.',
'Changing this may result in data loss.' => 'Changing this may result in data loss.',
'Channel' => 'Channel',
'Channels' => 'Channels',
'Characters' => 'Characters',
'Charts' => 'Charts',
'Check again' => 'Check again',
'Check for {onLabel}.' => 'Check for {onLabel}.',
'Check your email for instructions to reset your password.' => 'Check your email for instructions to reset your password.',
'Checkbox Options' => 'Checkbox Options',
'Checkbox' => 'Checkbox',
'Checkboxes' => 'Checkboxes',
'Checking environment…' => 'Checking environment…',
'Checking for updates…' => 'Checking for updates…',
'Checking server requirements…' => 'Checking server requirements…',
'Checking…' => 'Checking…',
'Checkout' => 'Checkout',
'Choose a currency…' => 'Choose a currency…',
'Choose a new password' => 'Choose a new password',
'Choose a page' => 'Choose a page',
'Choose a password' => 'Choose a password',
'Choose a site' => 'Choose a site',
'Choose a user group that publicly-registered members will be added to by default.' => 'Choose a user group that publicly-registered members will be added to by default.',
'Choose a user' => 'Choose a user',
'Choose how nested {type} should be presented to authors.' => 'Choose how nested {type} should be presented to authors.',
'Choose how the field should look for authors.' => 'Choose how the field should look for authors.',
'Choose the available content for querying with this schema:' => 'Choose the available content for querying with this schema:',
'Choose the available mutations for this schema:' => 'Choose the available mutations for this schema:',
'Choose the site-specific settings for nested entries.' => 'Choose the site-specific settings for nested entries.',
'Choose the types of entries that can be created in this field.' => 'Choose the types of entries that can be created in this field.',
'Choose the types of entries that can be included in this section.' => 'Choose the types of entries that can be included in this section.',
'Choose which filesystem assets should be stored in.' => 'Choose which filesystem assets should be stored in.',
'Choose which filesystem image transforms should be stored in.' => 'Choose which filesystem image transforms should be stored in.',
'Choose which sites this section should be available in, and configure the site-specific settings.' => 'Choose which sites this section should be available in, and configure the site-specific settings.',
'Choose which sites this source should be visible for.' => 'Choose which sites this source should be visible for.',
'Choose which table columns should be visible by default.' => 'Choose which table columns should be visible by default.',
'Choose which table columns should be visible for this source by default.' => 'Choose which table columns should be visible for this source by default.',
'Choose which user groups should have access to this source.' => 'Choose which user groups should have access to this source.',
'Choose which users must use two-step verification when accessing the control panel.' => 'Choose which users must use two-step verification when accessing the control panel.',
'Choose' => 'Choose',
'City' => 'City',
'City/Town' => 'City/Town',
'Class Name' => 'Class Name',
'Class' => 'Class',
'Clear Caches' => 'Clear Caches',
'Clear all' => 'Clear all',
'Clear caches' => 'Clear caches',
'Clear search' => 'Clear search',
'Clear' => 'Clear',
'Clearing cache:' => 'Clearing cache:',
'Close Preview' => 'Close Preview',
'Close' => 'Close',
'Closed Issues' => 'Closed Issues',
'Collapse all blocks' => 'Collapse all blocks',
'Collapse' => 'Collapse',
'Color hex value' => 'Color hex value',
'Color picker' => 'Color picker',
'Color' => 'Color',
'Column Heading' => 'Column Heading',
'Column handles can’t be in the format “{format}”.' => 'Column handles can’t be in the format “{format}”.',
'Column headers with buttons are sortable' => 'Column headers with buttons are sortable',
'Compatibility' => 'Compatibility',
'Compiled classes' => 'Compiled classes',
'Compiled templates' => 'Compiled templates',
'Complete the Update' => 'Complete the Update',
'Completed job' => 'Completed job',
'Composer output:' => 'Composer output:',
'Composer was unable to install the updates due to a dependency conflict.' => 'Composer was unable to install the updates due to a dependency conflict.',
'Composer was unable to install the updates.' => 'Composer was unable to install the updates.',
'Composer was unable to remove the plugin.' => 'Composer was unable to remove the plugin.',
'Composer was unable to revert the updates.' => 'Composer was unable to revert the updates.',
'Compressed' => 'Compressed',
'Condition {num, number}' => 'Condition {num, number}',
'Configure the category group’s site-specific settings.' => 'Configure the category group’s site-specific settings.',
'Confirm your identity.' => 'Confirm your identity.',
'Congrats! You’re up to date.' => 'Congrats! You’re up to date.',
'Connect the database' => 'Connect the database',
'Connecting to CraftCMS.com…' => 'Connecting to CraftCMS.com…',
'Constraints' => 'Constraints',
'Contact Developer Support' => 'Contact Developer Support',
'Content Block' => 'Content Block',
'Content Blocks' => 'Content Blocks',
'Content' => 'Content',
'Contents of {path}' => 'Contents of {path}',
'Context' => 'Context',
'Continue anyway' => 'Continue anyway',
'Continue shopping' => 'Continue shopping',
'Continue to the control panel in {num, number} {num, plural, =1{second} other{seconds}}' => 'Continue to the control panel in {num, number} {num, plural, =1{second} other{seconds}}',
'Continue to the control panel' => 'Continue to the control panel',
'Continue' => 'Continue',
'Control panel resources' => 'Control panel resources',
'Cookies must be enabled to access the Craft CMS control panel.' => 'Cookies must be enabled to access the Craft CMS control panel.',
'Cooldown Time Remaining' => 'Cooldown Time Remaining',
'Copied to clipboard.' => 'Copied to clipboard.',
'Copy URL' => 'Copy URL',
'Copy activation URL…' => 'Copy activation URL…',
'Copy all {type}' => 'Copy all {type}',
'Copy field handle' => 'Copy field handle',
'Copy from' => 'Copy from',
'Copy impersonation URL…' => 'Copy impersonation URL…',
'Copy package name' => 'Copy package name',
'Copy password reset URL…' => 'Copy password reset URL…',
'Copy plugin handle' => 'Copy plugin handle',
'Copy reference tag' => 'Copy reference tag',
'Copy the URL' => 'Copy the URL',
'Copy the activation URL' => 'Copy the activation URL',
'Copy the impersonation URL, and open it in a new private window.' => 'Copy the impersonation URL, and open it in a new private window.',
'Copy the reference tag' => 'Copy the reference tag',
'Copy to clipboard' => 'Copy to clipboard',
'Copy value from site…' => 'Copy value from site…',
'Copy {type}' => 'Copy {type}',
'Copy “{name}” value' => 'Copy “{name}” value',
'Copy' => 'Copy',
'Could not create a preview token.' => 'Could not create a preview token.',
'Could not create the group:' => 'Could not create the group:',
'Could not duplicate all elements due to validation errors.' => 'Could not duplicate all elements due to validation errors.',
'Could not duplicate elements due to validation errors.' => 'Could not duplicate elements due to validation errors.',
'Could not find a suitable replacement filename for “{filename}”.' => 'Could not find a suitable replacement filename for “{filename}”.',
'Could not generate a unique URI based on the URI format.' => 'Could not generate a unique URI based on the URI format.',
'Could not open file for streaming at {path}' => 'Could not open file for streaming at {path}',
'Could not read SVG contents.' => 'Could not read SVG contents.',
'Could not rename the group:' => 'Could not rename the group:',
'Could not save due to validation errors.' => 'Could not save due to validation errors.',
'Could not update status due to a validation error.' => 'Could not update status due to a validation error.',
'Could not update statuses due to validation errors.' => 'Could not update statuses due to validation errors.',
'Could not write to the temporary upload folder.' => 'Could not write to the temporary upload folder.',
'Couldn’t add all items to the cart.' => 'Couldn’t add all items to the cart.',
'Couldn’t apply changes.' => 'Couldn’t apply changes.',
'Couldn’t apply draft.' => 'Couldn’t apply draft.',
'Couldn’t apply new migrations.' => 'Couldn’t apply new migrations.',
'Couldn’t backup the database. How would you like to proceed?' => 'Couldn’t backup the database. How would you like to proceed?',
'Couldn’t change Craft CMS edition.' => 'Couldn’t change Craft CMS edition.',
'Couldn’t create {type}.' => 'Couldn’t create {type}.',
'Couldn’t delete all {type}.' => 'Couldn’t delete all {type}.',
'Couldn’t delete {type}.' => 'Couldn’t delete {type}.',
'Couldn’t delete “{name}”.' => 'Couldn’t delete “{name}”.',
'Couldn’t disable plugin.' => 'Couldn’t disable plugin.',
'Couldn’t duplicate {type}.' => 'Couldn’t duplicate {type}.',
'Couldn’t enable plugin.' => 'Couldn’t enable plugin.',
'Couldn’t find any sections that all selected elements could be moved to.' => 'Couldn’t find any sections that all selected elements could be moved to.',
'Couldn’t generate a password reset URL: {error}' => 'Couldn’t generate a password reset URL: {error}',
'Couldn’t generate an activation URL: {error}' => 'Couldn’t generate an activation URL: {error}',
'Couldn’t install plugin.' => 'Couldn’t install plugin.',
'Couldn’t load CMS editions.' => 'Couldn’t load CMS editions.',
'Couldn’t load active trials.' => 'Couldn’t load active trials.',
'Couldn’t move entries to the “{name}” section.' => 'Couldn’t move entries to the “{name}” section.',
'Couldn’t reorder items.' => 'Couldn’t reorder items.',
'Couldn’t save address fields.' => 'Couldn’t save address fields.',
'Couldn’t save email settings.' => 'Couldn’t save email settings.',
'Couldn’t save entry type.' => 'Couldn’t save entry type.',
'Couldn’t save entry.' => 'Couldn’t save entry.',
'Couldn’t save field.' => 'Couldn’t save field.',
'Couldn’t save filesystem.' => 'Couldn’t save filesystem.',
'Couldn’t save group.' => 'Couldn’t save group.',
'Couldn’t save message.' => 'Couldn’t save message.',
'Couldn’t save new order.' => 'Couldn’t save new order.',
'Couldn’t save new route order.' => 'Couldn’t save new route order.',
'Couldn’t save password.' => 'Couldn’t save password.',
'Couldn’t save plugin settings.' => 'Couldn’t save plugin settings.',
'Couldn’t save public schema settings.' => 'Couldn’t save public schema settings.',
'Couldn’t save route.' => 'Couldn’t save route.',
'Couldn’t save schema.' => 'Couldn’t save schema.',
'Couldn’t save section.' => 'Couldn’t save section.',
'Couldn’t save the category group.' => 'Couldn’t save the category group.',
'Couldn’t save the site.' => 'Couldn’t save the site.',
'Couldn’t save the tag group.' => 'Couldn’t save the tag group.',
'Couldn’t save token.' => 'Couldn’t save token.',
'Couldn’t save user fields.' => 'Couldn’t save user fields.',
'Couldn’t save volume.' => 'Couldn’t save volume.',
'Couldn’t save widget.' => 'Couldn’t save widget.',
'Couldn’t save {type}.' => 'Couldn’t save {type}.',
'Couldn’t send activation email. Check your email settings.' => 'Couldn’t send activation email. Check your email settings.',
'Couldn’t send the activation email: {error}' => 'Couldn’t send the activation email: {error}',
'Couldn’t suspend all users.' => 'Couldn’t suspend all users.',
'Couldn’t suspend user.' => 'Couldn’t suspend user.',
'Couldn’t uninstall plugin.' => 'Couldn’t uninstall plugin.',
'Couldn’t unsuspend all users.' => 'Couldn’t unsuspend all users.',
'Couldn’t unsuspend user.' => 'Couldn’t unsuspend user.',
'Couldn’t update cart’s email.' => 'Couldn’t update cart’s email.',
'Couldn’t update item in cart.' => 'Couldn’t update item in cart.',
'Couldn’t update password.' => 'Couldn’t update password.',
'Country' => 'Country',
'County' => 'County',
'Craft CMS does not support backtracking to this version. Please update to Craft CMS {version} or later.' => 'Craft CMS does not support backtracking to this version. Please update to Craft CMS {version} or later.',
'Craft CMS edition changed.' => 'Craft CMS edition changed.',
'Craft CMS is running in Dev Mode.' => '<span lang="en">Craft CMS</span> is running in Dev Mode.',
'Craft Support' => 'Craft Support',
'Craft isn’t installed yet.' => 'Craft isn’t installed yet.',
'Craft {version} Upgrade' => 'Craft {version} Upgrade',
'Create a draft' => 'Create a draft',
'Create a new GraphQL Schema' => 'Create a new GraphQL Schema',
'Create a new GraphQL token' => 'Create a new GraphQL token',
'Create a new asset volume' => 'Create a new asset volume',
'Create a new category group' => 'Create a new category group',
'Create a new child {type}' => 'Create a new child {type}',
'Create a new entry type' => 'Create a new entry type',
'Create a new field' => 'Create a new field',
'Create a new filesystem' => 'Create a new filesystem',
'Create a new filesystem…' => 'Create a new filesystem…',
'Create a new image transform' => 'Create a new image transform',
'Create a new route' => 'Create a new route',
'Create a new section' => 'Create a new section',
'Create a new site' => 'Create a new site',
'Create a new tag group' => 'Create a new tag group',
'Create a new user group' => 'Create a new user group',
'Create a new volume…' => 'Create a new volume…',
'Create a new {section} entry' => 'Create a new {section} entry',
'Create a new {type} after' => 'Create a new {type} after',
'Create a new {type} before' => 'Create a new {type} before',
'Create a new {type}' => 'Create a new {type}',
'Create a one-time password.' => 'Create a one-time password.',
'Create and add another' => 'Create and add another',
'Create and continue editing' => 'Create and continue editing',
'Create and set permissions' => 'Create and set permissions',
'Create assets in the “{volume}” volume' => 'Create assets in the “{volume}” volume',
'Create entries in the “{section}” section' => 'Create entries in the “{section}” section',
'Create entries in the “{section}” {type} field' => 'Create entries in the “{section}” {type} field',
'Create subfolders' => 'Create subfolders',
'Create your account' => 'Create your account',
'Create {type}' => 'Create {type}',
'Create' => 'Create',
'Created at' => 'Created at',
'Created by' => 'Created by',
'Credentialed' => 'Credentialed',
'Critical' => 'Critical',
'Crop' => 'Crop',
'Cropping Rectangle' => 'Cropping Rectangle',
'Currency' => 'Currency',
'Current Password' => 'Current Password',
'Current User Condition' => 'Current User Condition',
'Current' => 'Current',
'Custom Fields' => 'Custom Fields',
'Custom color:' => 'Custom color:',
'Custom' => 'Custom',
'Custom:' => 'Custom:',
'Customize sources' => 'Customize sources',
'Custom…' => 'Custom…',
'Cyan' => 'Cyan',
'Dashboard' => 'Dashboard',
'Data caches' => 'Data caches',
'Database Backup' => 'Database Backup',
'Database Name' => 'Database Name',
'Date Created' => 'Date Created',
'Date Range' => 'Date Range',
'Date Updated' => 'Date Updated',
'Date Uploaded' => 'Date Uploaded',
'Date' => 'Date',
'Days' => 'Days',
'Deactivate users by default' => 'Deactivate users by default',
'Deactivate' => 'Deactivate',
'Deactivating a user revokes their ability to sign in. Are you sure you want to continue?' => 'Deactivating a user revokes their ability to sign in. Are you sure you want to continue?',
'Debug Toolbar' => 'Debug Toolbar',
'Decimal Points' => 'Decimal Points',
'Default Focal Point' => 'Default Focal Point',
'Default Instructions' => 'Default Instructions',
'Default Sort' => 'Default Sort',
'Default Status' => 'Default Status',
'Default Table Columns' => 'Default Table Columns',
'Default Title Format' => 'Default Title Format',
'Default Upload Location' => 'Default Upload Location',
'Default User Group' => 'Default User Group',
'Default Value' => 'Default Value',
'Default Values' => 'Default Values',
'Default View Mode' => 'Default View Mode',
'Default {type} Placement' => 'Default {type} Placement',
'Default' => 'Default',
'Default?' => 'Default?',
'Define any additional values that should be saved on your elements.' => 'Define any additional values that should be saved on your elements.',
'Define the available colors to choose from.' => 'Define the available colors to choose from.',
'Define the available options.' => 'Define the available options.',
'Define the columns your table should have.' => 'Define the columns your table should have.',
'Define the default values for the field.' => 'Define the default values for the field.',
'Delayed' => 'Delayed',
'Delete (with descendants)' => 'Delete (with descendants)',
'Delete assets from the “{volume}” volume' => 'Delete assets from the “{volume}” volume',
'Delete categories from the “{categoryGroup}” category group' => 'Delete categories from the “{categoryGroup}” category group',
'Delete custom source' => 'Delete custom source',
'Delete entries in the “{section}” section' => 'Delete entries in the “{section}” section',
'Delete entries in the “{section}” {type} field' => 'Delete entries in the “{section}” {type} field',
'Delete folder' => 'Delete folder',
'Delete for site' => 'Delete for site',
'Delete heading' => 'Delete heading',
'Delete icon' => 'Delete icon',
'Delete it' => 'Delete it',
'Delete logo' => 'Delete logo',
'Delete other users’ {type} for site' => 'Delete other users’ {type} for site',
'Delete other users’ {type}' => 'Delete other users’ {type}',
'Delete permanently' => 'Delete permanently',
'Delete photo' => 'Delete photo',
'Delete row {index}' => 'Delete row {index}',
'Delete selected group' => 'Delete selected group',
'Delete tags from the “{tagGroup}” tag group' => 'Delete tags from the “{tagGroup}” tag group',
'Delete their content' => 'Delete their content',
'Delete them' => 'Delete them',
'Delete users' => 'Delete users',
'Delete {num, plural, =1{user} other{users}} and content' => 'Delete {num, plural, =1{user} other{users}} and content',
'Delete {num, plural, =1{user} other{users}}' => 'Delete {num, plural, =1{user} other{users}}',
'Delete {site}' => 'Delete {site}',
'Delete {type} for site' => 'Delete {type} for site',
'Delete {type} for this site' => 'Delete {type} for this site',
'Delete {type}' => 'Delete {type}',
'Delete' => 'Delete',
'Delete…' => 'Delete…',
'Department' => 'Department',
'Dependent Locality' => 'Dependent Locality',
'Deprecation Warnings' => 'Deprecation Warnings',
'Descending' => 'Descending',
'Description' => 'Description',
'Deselect All' => 'Deselect All',
'Desktop' => 'Desktop',
'Determines which site the user will receive emails from, when sent via the control panel.' => 'Determines which site the user will receive emails from, when sent via the control panel.',
'Developer Response' => 'Developer Response',
'Development Settings' => 'Development Settings',
'Development' => 'Development',
'Device type' => 'Device type',
'Dimensions' => 'Dimensions',
'Direction' => 'Direction',
'Directories cannot be deleted while moving assets.' => 'Directories cannot be deleted while moving assets.',
'Disable autofocus' => 'Disable autofocus',
'Disable focal point' => 'Disable focal point',
'Disable' => 'Disable',
'Disabled' => 'Disabled',
'Discard changes' => 'Discard changes',
'Discard' => 'Discard',
'Discover' => 'Discover',
'Dismiss' => 'Dismiss',
'Display Settings' => 'Display Settings',
'Display as cards' => 'Display as cards',
'Display as thumbnails' => 'Display as thumbnails',
'Display content in a pane' => 'Display content in a pane',
'Display hierarchically' => 'Display hierarchically',
'Display in a structured table' => 'Display in a structured table',
'Display in a table' => 'Display in a table',
'District' => 'District',
'Do Si' => 'Do Si',
'Documentation' => 'Documentation',
'Done' => 'Done',
'Don’t require a password reset on next login' => 'Don’t require a password reset on next login',
'Don’t show in element cards' => 'Don’t show in element cards',
'Don’t use for element thumbnails' => 'Don’t use for element thumbnails',
'Download backup' => 'Download backup',
'Download codes' => 'Download codes',
'Download' => 'Download',
'Draft Name' => 'Draft Name',
'Draft applied.' => 'Draft applied.',
'Draft {num}' => 'Draft {num}',
'Draft' => 'Draft',
'Drafts' => 'Drafts',
'Driver' => 'Driver',
'Dropdown Options' => 'Dropdown Options',
'Dropdown' => 'Dropdown',
'Duplicate (with descendants)' => 'Duplicate (with descendants)',
'Duplicate' => 'Duplicate',
'Edit Category Group' => 'Edit Category Group',
'Edit Entry Type' => 'Edit Entry Type',
'Edit Field' => 'Edit Field',
'Edit Filesystem' => 'Edit Filesystem',
'Edit GraphQL Schema' => 'Edit GraphQL Schema',
'Edit GraphQL Token' => 'Edit GraphQL Token',
'Edit Image Transform' => 'Edit Image Transform',
'Edit Image' => 'Edit Image',
'Edit Message' => 'Edit Message',
'Edit Route' => 'Edit Route',
'Edit Section' => 'Edit Section',
'Edit Site' => 'Edit Site',
'Edit Tag Group' => 'Edit Tag Group',
'Edit User Group' => 'Edit User Group',
'Edit Volume' => 'Edit Volume',
'Edit assets in the “{volume}” volume' => 'Edit assets in the “{volume}” volume',
'Edit categories in the “{categoryGroup}” category group' => 'Edit categories in the “{categoryGroup}” category group',
'Edit draft settings' => 'Edit draft settings',
'Edit entries in the “{name}” section' => 'Edit entries in the “{name}” section',
'Edit entries in the “{name}” {type} field' => 'Edit entries in the “{name}” {type} field',
'Edit entry type' => 'Edit entry type',
'Edit entry types ({count})' => 'Edit entry types ({count})',
'Edit entry types' => 'Edit entry types',
'Edit images uploaded by other users' => 'Edit images uploaded by other users',
'Edit images' => 'Edit images',
'Edit tags in the “{tagGroup}” tag group' => 'Edit tags in the “{tagGroup}” tag group',
'Edit the public GraphQL schema' => 'Edit the public GraphQL schema',
'Edit the “{globalSet}” global set.' => 'Edit the “{globalSet}” global set.',
'Edit {type}' => 'Edit {type}',
'Edit “{title}”' => 'Edit “{title}”',
'Edit' => 'Edit',
'Editability Conditions' => 'Editability Conditions',
'Edited {updated}' => 'Edited {updated}',
'Edited' => 'Edited',
'Eircode' => 'Eircode',
'Element' => 'Element',
'Elements duplicated.' => 'Elements duplicated.',
'Elements' => 'Elements',
'Email Settings' => 'Email Settings',
'Email is required.' => 'Email is required.',
'Email sent successfully! Check your inbox.' => 'Email sent successfully! Check your inbox.',
'Email settings saved.' => 'Email settings saved.',
'Email verified' => 'Email verified',
'Email' => 'Email',
'Emerald' => 'Emerald',
'Emirate' => 'Emirate',
'Enable focal point' => 'Enable focal point',
'Enable versioning for entries in this field' => 'Enable versioning for entries in this field',
'Enable versioning for entries in this section' => 'Enable versioning for entries in this section',
'Enable' => 'Enable',
'Enabled for all sites' => 'Enabled for all sites',
'Enabled' => 'Enabled',
'Enabling the plugin…' => 'Enabling the plugin…',
'Enlarged' => 'Enlarged',
'Enter a name for the passkey.' => 'Enter a name for the passkey.',
'Enter the authentication code provided by the app to verify that everything has been set up correctly.' => 'Enter the authentication code provided by the app to verify that everything has been set up correctly.',
'Enter the name of the folder' => 'Enter the name of the folder',
'Enter the new filename' => 'Enter the new filename',
'Enter your password to log back in.' => 'Enter your password to log back in.',
'Entries have been moved to the “{name}” section.' => 'Entries have been moved to the “{name}” section.',
'Entries' => 'Entries',
'Entry Type' => 'Entry Type',
'Entry Types' => 'Entry Types',
'Entry URI Format' => 'Entry URI Format',
'Entry could not be added. Maximum number of entries reached.' => 'Entry could not be added. Maximum number of entries reached.',
'Entry type saved.' => 'Entry type saved.',
'Entry type settings' => 'Entry type settings',
'Entry' => 'Entry',
'Environment Variables' => 'Environment Variables',
'Error' => 'Error',
'Error:' => 'Error:',
'Everything in {edition}, plus…' => 'Everything in {edition}, plus…',
'Existing {type}' => 'Existing {type}',
'Expand all blocks' => 'Expand all blocks',
'Expand {heading} sources' => 'Expand {heading} sources',
'Expand' => 'Expand',
'Expanded' => 'Expanded',
'Expired' => 'Expired',
'Expires' => 'Expires',
'Expiry Date' => 'Expiry Date',
'Explore the GraphQL API' => 'Explore the GraphQL API',
'Explorer' => 'Explorer',
'Export Type' => 'Export Type',
'Export' => 'Export',
'Export…' => 'Export…',
'External project config changes discarded.' => 'External project config changes discarded.',
'Failed to generate transform with id of {id}.' => 'Failed to generate transform with id of {id}.',
'Failed to load plugin reviews. Please try again' => 'Failed to load plugin reviews. Please try again',
'Failed to load the SVG string.' => 'Failed to load the SVG string.',
'Failed to save the image.' => 'Failed to save the image.',
'Failed' => 'Failed',
'Feed' => 'Feed',
'Fetching upgrade info…' => 'Fetching upgrade info…',
'Field Layout' => 'Field Layout',
'Field Limit' => 'Field Limit',
'Field Type' => 'Field Type',
'Field saved.' => 'Field saved.',
'Field settings' => 'Field settings',
'Field value copied.' => 'Field value copied.',
'Field' => 'Field',
'Fields' => 'Fields',
'File Kind' => 'File Kind',
'File Modification Date' => 'File Modification Date',
'File Modified Date' => 'File Modified Date',
'File Size' => 'File Size',
'File Type' => 'File Type',
'File size' => 'File size',
'Filename' => 'Filename',
'Files in this filesystem have public URLs' => 'Files in this filesystem have public URLs',
'Filesystem Type' => 'Filesystem Type',
'Filesystem saved.' => 'Filesystem saved.',
'Filesystems' => 'Filesystems',
'Fill Color' => 'Fill Color',
'Filter results' => 'Filter results',
'Find Text' => 'Find Text',
'Find an official Craft Partner' => 'Find an official Craft Partner',
'Find and Replace' => 'Find and Replace',
'Finish up' => 'Finish up',
'Finished' => 'Finished',
'Finishing up…' => 'Finishing up…',
'First Name' => 'First Name',
'First draft' => 'First draft',
'Fit' => 'Fit',
'Flip Horizontal' => 'Flip Horizontal',
'Flip Vertical' => 'Flip Vertical',
'Focal Point' => 'Focal Point',
'Folder actions' => 'Folder actions',
'Folder created.' => 'Folder created.',
'Folder deleted.' => 'Folder deleted.',
'Folder renamed.' => 'Folder renamed.',
'Folder “{folder}” already exists at target location' => 'Folder “{folder}” already exists at target location',
'Folder' => 'Folder',
'For everything else.' => 'For everything else.',
'For marketing sites managed by small teams.' => 'For marketing sites managed by small teams.',
'For personal sites built for yourself or a friend.' => 'For personal sites built for yourself or a friend.',
'Forgot password?' => 'Forgot password?',
'Forgot your password?' => 'Forgot your password?',
'Format' => 'Format',
'Formatting Locale' => 'Formatting Locale',
'Found {num, number} {num, plural, =1{error} other{errors}} in this tab.' => 'Found {num, number} {num, plural, =1{error} other{errors}} in this tab.',
'Found {num, number} {num, plural, =1{error} other{errors}}' => 'Found {num, number} {num, plural, =1{error} other{errors}}',
'Free' => 'Free',
'From {date}' => 'From {date}',
'From' => 'From',
'Fuchsia' => 'Fuchsia',
'Full Name' => 'Full Name',
'Full Schema' => 'Full Schema',
'Full data' => 'Full data',
'General Settings' => 'General Settings',
'General settings saved.' => 'General settings saved.',
'General' => 'General',
'Generate YAML Files' => 'Generate YAML Files',
'Generate recovery codes that can be used as a backup.' => 'Generate recovery codes that can be used as a backup.',
'Generate recovery codes' => 'Generate recovery codes',
'Generate' => 'Generate',
'Generated Fields' => 'Generated Fields',
'Generating image transform' => 'Generating image transform',
'Generating pending image transforms' => 'Generating pending image transforms',
'Get help' => 'Get help',
'Give feedback' => 'Give feedback',
'Give your tab a name.' => 'Give your tab a name.',
'Global Set Name' => 'Global Set Name',
'Global Sets' => 'Global Sets',
'Global set' => 'Global set',
'Global sets' => 'Global sets',
'Global' => 'Global',
'Globals' => 'Globals',
'Go to Craft CMS' => 'Go to Craft CMS',
'Go to Updates' => 'Go to Updates',
'Go' => 'Go',
'Got it' => 'Got it',
'GraphQL Mode' => 'GraphQL Mode',
'GraphQL Schemas' => 'GraphQL Schemas',
'GraphQL Tokens' => 'GraphQL Tokens',
'GraphQL queries' => 'GraphQL queries',
'Green' => 'Green',
'Group Name' => 'Group Name',
'Group deleted.' => 'Group deleted.',
'Group renamed.' => 'Group renamed.',
'Group saved.' => 'Group saved.',
'Group' => 'Group',
'Grouped' => 'Grouped',
'Groups' => 'Groups',
'Guest Required' => 'Guest Required',
'HTML Email Template' => 'HTML Email Template',
'Handle' => 'Handle',
'Has Descendants' => 'Has Descendants',
'Has URL' => 'Has URL',
'Has alternative text' => 'Has alternative text',
'Heading' => 'Heading',
'Height unit' => 'Height unit',
'Height' => 'Height',
'Helper text to guide the author.' => 'Helper text to guide the author.',
'Hide sidebar' => 'Hide sidebar',
'Hide' => 'Hide',
'High' => 'High',
'History' => 'History',
'Homepage' => 'Homepage',
'Horizontal Rule' => 'Horizontal Rule',
'Hostname' => 'Hostname',
'Hours' => 'Hours',
'How field values will be formatted within element indexes.' => 'How field values will be formatted within element indexes.',
'How long notifications should be shown before they disappear automatically.' => 'How long notifications should be shown before they disappear automatically.',
'How should Craft CMS send the emails?' => 'How should Craft CMS send the emails?',
'How should this field’s values be translated?' => 'How should this field’s values be translated?',
'How should {name} values be translated?' => 'How should {name} values be translated?',
'How the field should be presented in the control panel.' => 'How the field should be presented in the control panel.',
'How the related {type} should be displayed within element indexes.' => 'How the related {type} should be displayed within element indexes.',
'How you’ll refer to this category group in the templates.' => 'How you’ll refer to this category group in the templates.',
'How you’ll refer to this entry type in the templates.' => 'How you’ll refer to this entry type in the templates.',
'How you’ll refer to this field in the templates.' => 'How you’ll refer to this field in the templates.',
'How you’ll refer to this global set in the templates.' => 'How you’ll refer to this global set in the templates.',
'How you’ll refer to this section in the templates.' => 'How you’ll refer to this section in the templates.',
'How you’ll refer to this site in the templates.' => 'How you’ll refer to this site in the templates.',
'How you’ll refer to this tag group in the templates.' => 'How you’ll refer to this tag group in the templates.',
'How-to’s and other questions' => 'How-to’s and other questions',
'ID' => 'ID',
'Icon' => 'Icon',
'Icons only' => 'Icons only',
'If the URI looks like this' => 'If the URI looks like this',
'Image Format' => 'Image Format',
'Image Height' => 'Image Height',
'Image Position' => 'Image Position',
'Image Transforms' => 'Image Transforms',
'Image Width' => 'Image Width',
'Image transformer' => 'Image transformer',
'Image' => 'Image',
'Impersonate users' => 'Impersonate users',
'Improve your account’s security by adding a second verification step when signing in.' => 'Improve your account’s security by adding a second verification step when signing in.',
'In a pane' => 'In a pane',
'Inactive' => 'Inactive',
'Include Pro icons' => 'Include Pro icons',
'Include Table View' => 'Include Table View',
'Include your template files' => 'Include your template files',
'Includes activating/deactivating user accounts, resetting passwords, and changing email addresses.' => 'Includes activating/deactivating user accounts, resetting passwords, and changing email addresses.',
'Includes read-only access to user data and most content, via element selector modals and other means.' => 'Includes read-only access to user data and most content, via element selector modals and other means.',
'Includes suspending, unsuspending, and unlocking user accounts.' => 'Includes suspending, unsuspending, and unlocking user accounts.',
'Including a Content Block field recursively is not allowed.' => 'Including a Content Block field recursively is not allowed.',
'Incorrect current password.' => 'Incorrect current password.',
'Incorrect password.' => 'Incorrect password.',
'Indexing assets: {progress}' => 'Indexing assets: {progress}',
'Indigo' => 'Indigo',
'Information' => 'Information',
'Initial Rows' => 'Initial Rows',
'Inline' => 'Inline',
'Insert the button label for adding a new row to the table.' => 'Insert the button label for adding a new row to the table.',
'Install Craft CMS' => 'Install Craft CMS',
'Install an authenticator app, such as:' => 'Install an authenticator app, such as:',
'Install an authenticator app.' => 'Install an authenticator app.',
'Install with Composer' => 'Install with Composer',
'Install' => 'Install',
'Installation Instructions' => 'Installation Instructions',
'Installed as a trial' => 'Installed as a trial',
'Installed' => 'Installed',
'Installing Craft CMS…' => 'Installing Craft CMS…',
'Installing the plugin…' => 'Installing the plugin…',
'Installing {name}' => 'Installing {name}',
'Instructions' => 'Instructions',
'Interlace' => 'Interlace',
'Interlacing' => 'Interlacing',
'Internal Server Error' => 'Internal Server Error',
'Invalid email or password.' => 'Invalid email or password.',
'Invalid email.' => 'Invalid email.',
'Invalid password.' => 'Invalid password.',
'Invalid recovery code.' => 'Invalid recovery code.',
'Invalid transform handle: {handle}' => 'Invalid transform handle: {handle}',
'Invalid username or email.' => 'Invalid username or email.',
'Invalid username or password.' => 'Invalid username or password.',
'Invalid value “{value}”.' => 'Invalid value “{value}”.',
'Invalid verification code.' => 'Invalid verification code.',
'Invalidate Data Caches' => 'Invalidate Data Caches',
'Invalidate caches' => 'Invalidate caches',
'Invalidating cache tag:' => 'Invalidating cache tag:',
'Island' => 'Island',
'It looks like someone is currently performing a system update.<br>Only continue if you’re sure that’s not the case.' => 'It looks like someone is currently performing a system update.<br>Only continue if you’re sure that’s not the case.',
'It looks like these settings are being overridden by {paths}.' => 'It looks like these settings are being overridden by {paths}.',
'Item' => 'Item',
'Items in your cart' => 'Items in your cart',
'Items reordered.' => 'Items reordered.',
'It’s not possible to rename the top folder of a Volume.' => 'It’s not possible to rename the top folder of a Volume.',
'JavaScript must be enabled to access the Craft CMS control panel.' => 'JavaScript must be enabled to access the Craft CMS control panel.',
'Job Data' => 'Job Data',
'Job released.' => 'Job released.',
'Job restarted.' => 'Job restarted.',
'Job retried.' => 'Job retried.',
'Job' => 'Job',
'Keep both' => 'Keep both',
'Keep me signed in for {duration}' => 'Keep me signed in for {duration}',
'Keep me signed in' => 'Keep me signed in',
'Keep them' => 'Keep them',
'Knowledge Base' => 'Knowledge Base',
'Label' => 'Label',
'Landscape' => 'Landscape',
'Language' => 'Language',
'Large Thumbnails' => 'Large Thumbnails',
'Last Edited By' => 'Last Edited By',
'Last Login Date' => 'Last Login Date',
'Last Login' => 'Last Login',
'Last Month' => 'Last Month',
'Last Name' => 'Last Name',
'Last Occurrence' => 'Last Occurrence',
'Last Update' => 'Last Update',
'Last Used' => 'Last Used',
'Last Week' => 'Last Week',
'Last login fail' => 'Last login fail',
'Last login' => 'Last login',
'Last release' => 'Last release',
'Last saved {timestamp}' => 'Last saved {timestamp}',
'Last {num, number} {num, plural, =1{day} other{days}}' => 'Last {num, number} {num, plural, =1{day} other{days}}',
'Latitude' => 'Latitude',
'Latitude/Longitude' => 'Latitude/Longitude',
'Layout element types' => 'Layout element types',
'Learn how' => 'Learn how',
'Learn more' => 'Learn more',
'Leave a review' => 'Leave a review',
'Leave blank if categories don’t have URLs' => 'Leave blank if categories don’t have URLs',
'Leave blank if entries don’t have URLs' => 'Leave blank if entries don’t have URLs',
'Leave blank if the entry doesn’t have a URL' => 'Leave blank if the entry doesn’t have a URL',
'Leave it uninstalled' => 'Leave it uninstalled',
'Left Handle' => 'Left Handle',
'Left' => 'Left',
'Let each entry choose which sites it should be saved to' => 'Let each entry choose which sites it should be saved to',
'Letterbox' => 'Letterbox',
'Level {num}' => 'Level {num}',
'Level' => 'Level',
'License purchase required.' => 'License purchase required.',
'License transferred.' => 'License transferred.',
'License' => 'License',
'Licensed' => 'Licensed',
'Lightswitch' => 'Lightswitch',
'Lime' => 'Lime',
'Limit the number of selectable category branches.' => 'Limit the number of selectable category branches.',
'Limit the number of selectable {type} branches.' => 'Limit the number of selectable {type} branches.',
'Limit' => 'Limit',
'Line Break' => 'Line Break',
'Line' => 'Line',
'Link' => 'Link',
'List all tabs' => 'List all tabs',
'List empty folders' => 'List empty folders',
'List' => 'List',
'Live' => 'Live',
'Load this template' => 'Load this template',
'Loaded Project Config Data' => 'Loaded Project Config Data',
'Loading Plugin Store…' => 'Loading Plugin Store…',
'Loading complete' => 'Loading complete',
'Loading' => 'Loading',
'Local Folder' => 'Local Folder',
'Local copies of remote images, generated thumbnails' => 'Local copies of remote images, generated thumbnails',
'Local filesystems cannot be located within or above system directories.' => 'Local filesystems cannot be located within or above system directories.',
'Locality' => 'Locality',
'Localizing relations' => 'Localizing relations',
'Location' => 'Location',
'Locations that should be available for previewing entries in this section.' => 'Locations that should be available for previewing entries in this section.',
'Locked' => 'Locked',
'Login Page Logo' => 'Login Page Logo',
'Login fail count' => 'Login fail count',
'Longitude' => 'Longitude',
'Looks like you are trying to load a template outside the template folder.' => 'Looks like you are trying to load a template outside the template folder.',
'Low' => 'Low',
'Maintain hierarchy' => 'Maintain hierarchy',
'Make not required' => 'Make not required',
'Make optional' => 'Make optional',
'Make required' => 'Make required',
'Make sure you’re not overwriting changes in the YAML files that were made on another environment.' => 'Make sure you’re not overwriting changes in the YAML files that were made on another environment.',
'Make sure you’ve followed the <a href="{url}" target="_blank">Environment Setup</a> instructions before applying project config YAML changes.' => 'Make sure you’ve followed the <a href="{url}" target="_blank">Environment Setup</a> instructions before applying project config YAML changes.',
'Make this the primary site' => 'Make this the primary site',
'Manage categories' => 'Manage categories',
'Manage element thumbnails' => 'Manage element thumbnails',
'Manage your Craft Console account' => 'Manage your Craft Console account',
'Manipulated SVG image rasterizing is unreliable. See \\craft\\services\\Images::loadImage()' => 'Manipulated SVG image rasterizing is unreliable. See \\craft\\services\\Images::loadImage()',
'Matrix' => 'Matrix',
'Max Authors' => 'Max Authors',
'Max Date' => 'Max Date',
'Max Length' => 'Max Length',