forked from hebcal/hebcal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings_he.c
600 lines (590 loc) · 20.9 KB
/
strings_he.c
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
/* ANSI-C code produced by gperf version 3.1 */
/* Command-line: gperf strings_he.gperf */
/* Computed positions: -k'1,3,5,8-9,11' */
#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \
&& ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \
&& (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \
&& ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \
&& ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \
&& ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \
&& ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \
&& ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \
&& ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \
&& ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \
&& ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \
&& ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \
&& ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \
&& ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \
&& ('Z' == 90) && ('[' == 91) && ('\\' == 92) && (']' == 93) \
&& ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \
&& ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \
&& ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \
&& ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
&& ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \
&& ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \
&& ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \
&& ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))
/* The character set is not based on ISO-646. */
#error "gperf generated tables don't work with this execution character set. Please report a bug to <[email protected]>."
#endif
#line 4 "strings_he.gperf"
#include <string.h>
#line 7 "strings_he.gperf"
struct event_title { char *name; char *dest; };
#define TOTAL_KEYWORDS 189
#define MIN_WORD_LENGTH 2
#define MAX_WORD_LENGTH 25
#define MIN_HASH_VALUE 4
#define MAX_HASH_VALUE 460
/* maximum key range = 457, duplicates = 0 */
#ifdef __GNUC__
__inline
#else
#ifdef __cplusplus
inline
#endif
#endif
static unsigned int
hash (register const char *str, register size_t len)
{
static unsigned short asso_values[] =
{
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 0, 20, 461, 461, 461, 0, 461, 110,
0, 461, 461, 461, 461, 461, 5, 461, 461, 0,
45, 40, 35, 20, 15, 10, 0, 461, 461, 0,
461, 461, 461, 461, 461, 75, 55, 90, 135, 15,
5, 110, 45, 0, 0, 80, 5, 40, 140, 5,
5, 35, 70, 0, 0, 5, 10, 165, 461, 125,
10, 0, 461, 461, 461, 461, 461, 30, 10, 15,
0, 35, 65, 0, 80, 5, 80, 0, 75, 55,
65, 100, 0, 5, 0, 0, 20, 5, 0, 25,
461, 85, 110, 125, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
461, 461, 461, 461, 461, 461, 461
};
register unsigned int hval = len;
switch (hval)
{
default:
hval += asso_values[(unsigned char)str[10]];
/*FALLTHROUGH*/
case 10:
case 9:
hval += asso_values[(unsigned char)str[8]+1];
/*FALLTHROUGH*/
case 8:
hval += asso_values[(unsigned char)str[7]];
/*FALLTHROUGH*/
case 7:
case 6:
case 5:
hval += asso_values[(unsigned char)str[4]+1];
/*FALLTHROUGH*/
case 4:
case 3:
hval += asso_values[(unsigned char)str[2]];
/*FALLTHROUGH*/
case 2:
case 1:
hval += asso_values[(unsigned char)str[0]];
break;
}
return hval;
}
struct event_title *
hebcal_lookup_he (register const char *str, register size_t len)
{
static struct event_title wordlist[] =
{
{""}, {""}, {""}, {""},
#line 173 "strings_he.gperf"
{"Sigd","סיגד"},
{""},
#line 175 "strings_he.gperf"
{"Sukkot","סוּכּוֹת"},
#line 187 "strings_he.gperf"
{"Tu B'Av","טוּ בְּאָב"},
#line 176 "strings_he.gperf"
{"Sukkot I","סוּכּוֹת יוֹם א׳"},
#line 177 "strings_he.gperf"
{"Sukkot II","סוּכּוֹת יוֹם ב׳"},
#line 154 "strings_he.gperf"
{"Tevet","טֵבֵת"},
#line 128 "strings_he.gperf"
{"Pesach","פֶּסַח"},
{""},
#line 129 "strings_he.gperf"
{"Pesach I","פֶּסַח יוֹם א׳"},
#line 130 "strings_he.gperf"
{"Pesach II","פֶּסַח יוֹם ב׳"},
{""},
#line 15 "strings_he.gperf"
{"Sukkah","סוכה"},
#line 178 "strings_he.gperf"
{"Sukkot II (CH''M)","סוּכּוֹת יוֹם ב׳ (חוֹל הַמוֹעד)"},
#line 179 "strings_he.gperf"
{"Sukkot III (CH''M)","סוּכּוֹת יוֹם ג׳ (חוֹל הַמוֹעד)"},
{""},
#line 189 "strings_he.gperf"
{"Tu B'Shvat","טוּ בִּשְׁבָט"},
{""},
#line 131 "strings_he.gperf"
{"Pesach II (CH''M)","פֶּסַח יוֹם ב׳ (חוֹל הַמוֹעד)"},
#line 132 "strings_he.gperf"
{"Pesach III (CH''M)","פֶּסַח יוֹם ג׳ (חוֹל הַמוֹעד)"},
#line 147 "strings_he.gperf"
{"Elul","אֱלוּל"},
#line 137 "strings_he.gperf"
{"Pesach VII","פֶּסַח יוֹם ז׳"},
#line 138 "strings_he.gperf"
{"Pesach VIII","פֶּסַח יוֹם ח׳"},
#line 182 "strings_he.gperf"
{"Sukkot VI (CH''M)","סוּכּוֹת יוֹם ו׳ (חוֹל הַמוֹעד)"},
{""}, {""},
#line 25 "strings_he.gperf"
{"Sotah","סוטה"},
{""},
#line 136 "strings_he.gperf"
{"Pesach VI (CH''M)","פֶּסַח יוֹם ו׳ (חוֹל הַמוֹעד)"},
{""},
#line 90 "strings_he.gperf"
{"Tzav","צַו"},
#line 183 "strings_he.gperf"
{"Sukkot VII (Hoshana Raba)","סוּכּוֹת יוֹם ז׳ (הוֹשַׁעְנָא רַבָּה)"},
{""},
#line 168 "strings_he.gperf"
{"Shavuot","שָׁבוּעוֹת"},
{""},
#line 169 "strings_he.gperf"
{"Shavuot I","שָׁבוּעוֹת יוֹם א׳"},
#line 170 "strings_he.gperf"
{"Shavuot II","שָׁבוּעוֹת יוֹם ב׳"},
#line 83 "strings_he.gperf"
{"Shemot","שְׁמוֹת"},
#line 33 "strings_he.gperf"
{"Shevuot","שבועות"},
{""}, {""},
#line 62 "strings_he.gperf"
{"Eikev","עֵקֶב"},
#line 32 "strings_he.gperf"
{"Makkot","מכות"},
#line 79 "strings_he.gperf"
{"Pekudei","פְקוּדֵי"},
{""}, {""},
#line 46 "strings_he.gperf"
{"Midot","מדות"},
#line 74 "strings_he.gperf"
{"Miketz","מִקֵּץ"},
#line 10 "strings_he.gperf"
{"Shabbat","שבת"},
#line 49 "strings_he.gperf"
{"Parashat","פרשת"},
{""},
#line 70 "strings_he.gperf"
{"Lech-Lecha","לֶךְ־לְךָ"},
{""},
#line 58 "strings_he.gperf"
{"Bo","בֹּא"},
#line 172 "strings_he.gperf"
{"Shushan Purim","שׁוּשָׁן פּוּרִים"},
{""},
#line 91 "strings_he.gperf"
{"Vaera","וָאֵרָא"},
#line 43 "strings_he.gperf"
{"Meilah","מעילה"},
#line 41 "strings_he.gperf"
{"Temurah","תמורה"},
#line 166 "strings_he.gperf"
{"Shabbat Shuva","שַׁבָּת שׁוּבָה"},
{""},
#line 164 "strings_he.gperf"
{"Shabbat Rosh Chodesh","שבת ראש חודש"},
#line 186 "strings_he.gperf"
{"Tish'a B'Av","תִּשְׁעָה בְּאָב"},
#line 73 "strings_he.gperf"
{"Metzora","מְּצֹרָע"},
#line 12 "strings_he.gperf"
{"Pesachim","פסחים"},
{""},
#line 72 "strings_he.gperf"
{"Matot","מַּטּוֹת"},
{""},
#line 87 "strings_he.gperf"
{"Terumah","תְּרוּמָה"},
#line 36 "strings_he.gperf"
{"Zevachim","זבחים"},
#line 167 "strings_he.gperf"
{"Shabbat Zachor","שַׁבָּת זָכוֹר"},
#line 139 "strings_he.gperf"
{"Purim","פּוּרִים"},
{""},
#line 145 "strings_he.gperf"
{"Av","אָב"},
#line 174 "strings_he.gperf"
{"Simchat Torah","שִׂמְחַת תּוֹרָה"},
{""},
#line 162 "strings_he.gperf"
{"Shabbat Nachamu","שַׁבָּת נַחֲמוּ"},
#line 89 "strings_he.gperf"
{"Toldot","תּוֹלְדוֹת"},
#line 80 "strings_he.gperf"
{"Pinchas","פִּינְחָס"},
#line 9 "strings_he.gperf"
{"Berachot","ברכות"},
{""}, {""},
#line 69 "strings_he.gperf"
{"Korach","קוֹרַח"},
#line 134 "strings_he.gperf"
{"Pesach Sheni","פֶּסַח שני"},
{""}, {""},
#line 148 "strings_he.gperf"
{"Iyyar","אִיָיר"},
{""},
#line 42 "strings_he.gperf"
{"Keritot","כריתות"},
#line 163 "strings_he.gperf"
{"Shabbat Parah","שַׁבָּת פּרה"},
#line 57 "strings_he.gperf"
{"Beshalach","בְּשַׁלַּח"},
#line 45 "strings_he.gperf"
{"Tamid","תמיד"},
#line 165 "strings_he.gperf"
{"Shabbat Shekalim","שַׁבָּת שְׁקָלִים"},
#line 66 "strings_he.gperf"
{"Ki Tavo","כִּי־תָבוֹא"},
#line 39 "strings_he.gperf"
{"Bechorot","בכורות"},
{""},
#line 188 "strings_he.gperf"
{"Tu BiShvat","טוּ בִּשְׁבָט"},
#line 96 "strings_he.gperf"
{"Vayera","וַיֵּרָא"},
#line 94 "strings_he.gperf"
{"Vayechi","וַיְחִי"},
#line 56 "strings_he.gperf"
{"Bereshit","בְּרֵאשִׁית"},
{""},
#line 152 "strings_he.gperf"
{"Sivan","סִיוָן"},
#line 11 "strings_he.gperf"
{"Eruvin","עירובין"},
{""},
#line 13 "strings_he.gperf"
{"Shekalim","שקלים"},
#line 142 "strings_he.gperf"
{"Adar","אַדָר"},
#line 53 "strings_he.gperf"
{"Bechukotai","בְּחֻקֹּתַי"},
#line 60 "strings_he.gperf"
{"Chukat","חֻקַּת"},
#line 85 "strings_he.gperf"
{"Shoftim","שׁוֹפְטִים"},
#line 98 "strings_he.gperf"
{"Vayetzei","וַיֵּצֵא"},
{""},
#line 30 "strings_he.gperf"
{"Baba Batra","בבא בתרא"},
#line 17 "strings_he.gperf"
{"Taanit","תענית"},
#line 40 "strings_he.gperf"
{"Arachin","ערכין"},
#line 88 "strings_he.gperf"
{"Tetzaveh","תְּצַוֶּה"},
#line 63 "strings_he.gperf"
{"Emor","אֱמוֹר"},
{""},
#line 123 "strings_he.gperf"
{"Erev Tish'a B'Av","עֶרֶב תִּשְׁעָה בְּאָב"},
#line 22 "strings_he.gperf"
{"Ketubot","כתובות"},
#line 97 "strings_he.gperf"
{"Vayeshev","וַיֵּשֶׁב"},
#line 75 "strings_he.gperf"
{"Mishpatim","מִּשְׁפָּטִים"},
#line 71 "strings_he.gperf"
{"Masei","מַסְעֵי"},
#line 151 "strings_he.gperf"
{"Sh'vat","שְׁבָט"},
#line 82 "strings_he.gperf"
{"Sh'lach","שְׁלַח־לְךָ"},
{""}, {""},
#line 92 "strings_he.gperf"
{"Vaetchanan","וָאֶתְחַנַּן"},
#line 143 "strings_he.gperf"
{"Adar I","אַדָר א׳"},
#line 144 "strings_he.gperf"
{"Adar II","אַדָר ב׳"},
#line 37 "strings_he.gperf"
{"Menachot","מנחות"},
{""},
#line 19 "strings_he.gperf"
{"Moed Katan","מועד קטן"},
#line 181 "strings_he.gperf"
{"Sukkot V (CH''M)","סוּכּוֹת יוֹם ה׳ (חוֹל הַמוֹעד)"},
#line 119 "strings_he.gperf"
{"Erev Rosh Hashana","עֶרֶב רֹאשׁ הַשָּׁנָה"},
{""}, {""},
#line 55 "strings_he.gperf"
{"Behar","בְּהַר"},
#line 135 "strings_he.gperf"
{"Pesach V (CH''M)","פֶּסַח יוֹם ה׳ (חוֹל הַמוֹעד)"},
#line 61 "strings_he.gperf"
{"Devarim","דְּבָרִים"},
#line 125 "strings_he.gperf"
{"Havdalah","הַבדָלָה"},
{""},
#line 76 "strings_he.gperf"
{"Nasso","נָשׂא"},
{""},
#line 23 "strings_he.gperf"
{"Nedarim","נדרים"},
#line 190 "strings_he.gperf"
{"Tzom Gedaliah","צוֹם גְּדַלְיָה"},
{""},
#line 103 "strings_he.gperf"
{"Yitro","יִתְרוֹ"},
#line 149 "strings_he.gperf"
{"Kislev","כִּסְלֵו"},
#line 159 "strings_he.gperf"
{"Shabbat HaChodesh","שַׁבָּת הַחֹדֶשׁ"},
#line 52 "strings_he.gperf"
{"Bamidbar","בְּמִדְבַּר"},
{""},
#line 101 "strings_he.gperf"
{"Vayishlach","וַיִּשְׁלַח"},
#line 47 "strings_he.gperf"
{"Niddah","נדה"},
#line 38 "strings_he.gperf"
{"Chullin","חולין"},
{""}, {""},
#line 118 "strings_he.gperf"
{"Erev Purim","עֶרֶב פּוּרִים"},
#line 84 "strings_he.gperf"
{"Shmini","שְּׁמִינִי"},
#line 35 "strings_he.gperf"
{"Horayot","הוריות"},
#line 65 "strings_he.gperf"
{"Kedoshim","קְדשִׁים"},
{""},
#line 124 "strings_he.gperf"
{"Erev Yom Kippur","עֶרֶב יוֹם כִּפּוּר"},
{""},
#line 68 "strings_he.gperf"
{"Ki Tisa","כִּי תִשָּׂא"},
{""}, {""},
#line 160 "strings_he.gperf"
{"Shabbat HaGadol","שַׁבָּת הַגָּדוֹל"},
#line 117 "strings_he.gperf"
{"Erev Pesach","עֶרֶב פֶּסַח"},
#line 155 "strings_he.gperf"
{"Rosh Hashana","רֹאשׁ הַשָּׁנָה"},
#line 121 "strings_he.gperf"
{"Erev Simchat Torah","עֶרֶב שִׂמְחַת תּוֹרָה"},
#line 156 "strings_he.gperf"
{"Rosh Hashana I","רֹאשׁ הַשָּׁנָה יוֹם א׳"},
#line 157 "strings_he.gperf"
{"Rosh Hashana II","רֹאשׁ הַשָּׁנָה יוֹם ב׳"},
#line 122 "strings_he.gperf"
{"Erev Sukkot","עֶרֶב סוּכּוֹת"},
#line 100 "strings_he.gperf"
{"Vayikra","וַיִּקְרָא"},
{""}, {""},
#line 78 "strings_he.gperf"
{"Noach","נֹחַ"},
#line 140 "strings_he.gperf"
{"Purim Katan","פּוּרִים קָטָן"},
#line 180 "strings_he.gperf"
{"Sukkot IV (CH''M)","סוּכּוֹת יוֹם ד׳ (חוֹל הַמוֹעד)"},
#line 18 "strings_he.gperf"
{"Megillah","מגילה"},
#line 14 "strings_he.gperf"
{"Yoma","יומא"},
#line 153 "strings_he.gperf"
{"Tamuz","תָּמוּז"},
#line 102 "strings_he.gperf"
{"Vezot Haberakhah","וְזֹאת הַבְּרָכָה"},
#line 133 "strings_he.gperf"
{"Pesach IV (CH''M)","פֶּסַח יוֹם ד׳ (חוֹל הַמוֹעד)"},
{""}, {""},
#line 81 "strings_he.gperf"
{"Re'eh","רְאֵה"},
{""},
#line 16 "strings_he.gperf"
{"Beitzah","ביצה"},
{""},
#line 27 "strings_he.gperf"
{"Kiddushin","קידושין"},
#line 195 "strings_he.gperf"
{"Yom Kippur","יוֹם כִּפּוּר"},
#line 86 "strings_he.gperf"
{"Tazria","תַזְרִיעַ"},
#line 21 "strings_he.gperf"
{"Yevamot","יבמות"},
{""}, {""}, {""}, {""}, {""},
#line 146 "strings_he.gperf"
{"Cheshvan","חֶשְׁוָן"},
#line 95 "strings_he.gperf"
{"Vayeilech","וַיֵּלֶךְ"},
{""}, {""}, {""},
#line 106 "strings_he.gperf"
{"Chanukah","חֲנוּכָּה"},
{""},
#line 51 "strings_he.gperf"
{"Balak","בָּלָק"},
{""}, {""}, {""}, {""},
#line 28 "strings_he.gperf"
{"Baba Kamma","בבא קמא"},
{""},
#line 115 "strings_he.gperf"
{"Chanukah: 8th Day","חֲנוּכָּה: יוֹם ח׳"},
#line 107 "strings_he.gperf"
{"Chanukah: 1 Candle","חֲנוּכָּה: א׳ נֵר"},
#line 114 "strings_he.gperf"
{"Chanukah: 8 Candles","חֲנוּכָּה: ח׳ נֵרוֹת"},
{""}, {""},
#line 161 "strings_he.gperf"
{"Shabbat Machar Chodesh","שבת מחר חודש"},
{""},
#line 158 "strings_he.gperf"
{"Shabbat Chazon","שַׁבָּת חֲזוֹן"},
#line 126 "strings_he.gperf"
{"Lag BaOmer","ל״ג בְּעוֹמֶר"},
{""}, {""}, {""},
#line 113 "strings_he.gperf"
{"Chanukah: 7 Candles","חֲנוּכָּה: ז׳ נֵרוֹת"},
#line 48 "strings_he.gperf"
{"Daf Yomi: %s %d","דף יומי: %s %d"},
#line 44 "strings_he.gperf"
{"Kinnim","קינים"},
{""},
#line 77 "strings_he.gperf"
{"Nitzavim","נִצָּבִים"},
#line 112 "strings_he.gperf"
{"Chanukah: 6 Candles","חֲנוּכָּה: ו׳ נֵרוֹת"},
#line 26 "strings_he.gperf"
{"Gitin","גיטין"},
#line 59 "strings_he.gperf"
{"Chayei Sara","חַיֵּי שָֹרָה"},
#line 120 "strings_he.gperf"
{"Erev Shavuot","עֶרֶב שָׁבוּעוֹת"},
{""},
#line 111 "strings_he.gperf"
{"Chanukah: 5 Candles","חֲנוּכָּה: ה׳ נֵרוֹת"},
#line 141 "strings_he.gperf"
{"Rosh Chodesh %s","רֹאשׁ חודש %s"},
{""}, {""},
#line 104 "strings_he.gperf"
{"Asara B'Tevet","עֲשָׂרָה בְּטֵבֵת"},
#line 31 "strings_he.gperf"
{"Sanhedrin","סנהדרין"},
#line 150 "strings_he.gperf"
{"Nisan","נִיסָן"},
{""},
#line 34 "strings_he.gperf"
{"Avodah Zarah","עבודה זרה"},
{""},
#line 185 "strings_he.gperf"
{"Ta'anit Esther","תַּעֲנִית אֶסְתֵּר"},
{""}, {""}, {""},
#line 93 "strings_he.gperf"
{"Vayakhel","וַיַּקְהֵל"},
#line 110 "strings_he.gperf"
{"Chanukah: 4 Candles","חֲנוּכָּה: ד׳ נֵרוֹת"},
#line 24 "strings_he.gperf"
{"Nazir","נזיר"},
{""}, {""}, {""},
#line 109 "strings_he.gperf"
{"Chanukah: 3 Candles","חֲנוּכָּה: ג׳ נֵרוֹת"},
{""},
#line 196 "strings_he.gperf"
{"Yom Yerushalayim","יוֹם יְרוּשָׁלַיִם"},
{""},
#line 99 "strings_he.gperf"
{"Vayigash","וַיִּגַּשׁ"},
#line 108 "strings_he.gperf"
{"Chanukah: 2 Candles","חֲנוּכָּה: ב׳ נֵרוֹת"},
{""}, {""}, {""}, {""}, {""},
#line 50 "strings_he.gperf"
{"Achrei Mot","אַחֲרֵי מוֹת"},
#line 29 "strings_he.gperf"
{"Baba Metzia","בבא מציעא"},
{""},
#line 194 "strings_he.gperf"
{"Yom HaZikaron","יוֹם הַזִּכָּרוֹן"},
{""}, {""}, {""}, {""},
#line 127 "strings_he.gperf"
{"Leil Selichot","סליחות"},
{""}, {""}, {""}, {""}, {""},
#line 171 "strings_he.gperf"
{"Shmini Atzeret","שְׁמִינִי עֲצֶרֶת"},
{""}, {""}, {""},
#line 20 "strings_he.gperf"
{"Chagigah","חגיגה"},
{""}, {""}, {""}, {""},
#line 64 "strings_he.gperf"
{"Ha'Azinu","הַאֲזִינוּ"},
{""}, {""},
#line 116 "strings_he.gperf"
{"Days of the Omer","עוֹמֶר"},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""},
#line 67 "strings_he.gperf"
{"Ki Teitzei","כִּי־תֵצֵא"},
#line 184 "strings_he.gperf"
{"Ta'anit Bechorot","תַּעֲנִית בְּכוֹרוֹת"},
#line 54 "strings_he.gperf"
{"Beha'alotcha","בְּהַעֲלֹתְךָ"},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
#line 193 "strings_he.gperf"
{"Yom HaShoah","יוֹם הַשּׁוֹאָה"},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
#line 191 "strings_he.gperf"
{"Tzom Tammuz","צוֹם תָּמוּז"},
{""}, {""}, {""}, {""}, {""}, {""}, {""},
#line 192 "strings_he.gperf"
{"Yom HaAtzma'ut","יוֹם הָעַצְמָאוּת"},
{""}, {""}, {""}, {""}, {""}, {""}, {""},
#line 197 "strings_he.gperf"
{"Yom HaAliyah","יוֹם העלייה"},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
{""},
#line 105 "strings_he.gperf"
{"Candle lighting","הדלקת נרות"}
};
if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
{
register unsigned int key = hash (str, len);
if (key <= MAX_HASH_VALUE)
{
register const char *s = wordlist[key].name;
if (*str == *s && !strcmp (str + 1, s + 1))
return &wordlist[key];
}
}
return 0;
}