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