-
Notifications
You must be signed in to change notification settings - Fork 0
/
STRINGS.in
13285 lines (12887 loc) · 450 KB
/
STRINGS.in
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
#####
# (C) Copyright 2006-2015 Hewlett-Packard Development Company, L.P.
# (C) Copyright 2017-2019 Bittium Wireless Ltd.
#####
/* License footprints */
/* Indices of search strings for licenses */
/* _LT == License Text footprints */
/* _KW == License Keywords */
/* _CR == License Copyrights */
/* _MISC == Miscellany in licenses */
#####
# Never, never, NEVER put a wild-card in a KEY field! The resulting
# performance is unacceptable when the files-to-be-scanned get in the
# size-in-megabytes range. It's now coded in licenses.c to look for
# this case and DIE if it sees it.
#####
# If you MUST have a choice of strings in a key, either find a different
# search-key and search-strategy, or encompass EXPLICIT choices in (..|..)
#####
# ... look at the entry for realnetworks for an example.
#####
# Also, keep in mind that the %KEY% searches occur PRIOR to stripping
# out punctuation, etc.
#####
#####
# Keyword entries
#####
%ENTRY% _KW_acknowledgement
%KEY% =NULL=
%STR% "acknowledge?ment"
%ALIAS% _KW_first
#
%ENTRY% _KW_agreement
%KEY% "a(gree|ttribut|vailabl|uthor)"
%STR% "agreement"
#
%ENTRY% _KW_as_is
%KEY% =NULL=
%STR% "as[ -]is"
#
%ENTRY% _KW_copyright
%KEY% "(©|\(c\)|copyright|\<c\>[^+:]|©)"
%STR% "."
#
%ENTRY% _KW_damages
%KEY% =NULL=
%STR% "damages"
#
%ENTRY% _KW_deriva
%KEY% =NULL=
%STR% "deriva"
#
%ENTRY% _KW_distribut
%KEY% "distribut"
%STR% "."
#
%ENTRY% _KW_free_sw
%KEY% "(\<gnu|free\>|l?gpl)"
%STR% "free software"
#
%ENTRY% _KW_grant
%KEY% =NULL=
%STR% "grant"
#
%ENTRY% _KW_indemnify
%KEY% "in(demnif|tellect)"
%STR% "indemnif[iy]"
%ALIAS% _HOT_indemnif
#
%ENTRY% _KW_intellect_prop
%KEY% "in(demnif|tellect)"
%STR% "intellectual propert"
#####
# We're interesting in liability, but NOT reliability
#####
%ENTRY% _KW_liability
%KEY% =NULL=
%STR% "[^e]liability"
#
%ENTRY% _KW_license
%KEY% "licen[cs]"
%STR% "."
#
%ENTRY% _KW_misrepresent
%KEY% =NULL=
%STR% "mis-?represent"
#
%ENTRY% _KW_open_source
%KEY% "so(ftware|urce)"
%STR% "open source"
#
%ENTRY% _KW_patent
%KEY% "p(atent|roduc|rofit|roject|ublic)"
%STR% "patent"
%ALIAS% _HOT_patent
#
%ENTRY% _KW_permission
%KEY% "permi[st]"
%STR% "permission"
#
%ENTRY% _KW_public_domain
%KEY% "p(atent|roduc|rofit|roject|ublic)"
%STR% "public[ -]domain"
%ALIAS% _HOT_pubdom
#
%ENTRY% _KW_require
%KEY% =NULL=
%STR% "require"
#
%ENTRY% _KW_same_terms
%KEY% =NULL=
%STR% "same terms"
#
%ENTRY% _KW_source_binary
%KEY% "so(ftware|urce)"
%STR% "source and/?o?r? binary"
#
%ENTRY% _KW_source_code
%KEY% "so(ftware|urce)"
%STR% "source code"
#
%ENTRY% _KW_subject_to
%KEY% =NULL=
%STR% "subject \<to\>"
#
%ENTRY% _KW_terms_conditions
%KEY% "(condit|vers)ion"
%STR% "terms and conditions"
#
%ENTRY% _KW_warrant
%KEY% "(docume|warra)nt"
%STR% "warrant"
#
%ENTRY% _KW_without
%KEY% =NULL=
%STR% "without (fee|restrict|limit)"
%ALIAS% _KW_last
#
%ENTRY% _KW_severability
%KEY% =NULL=
%STR% "severability clause"
#####
# Filenames
#####
%ENTRY% _FN_DEBCPYRT
%KEY% =NULL=
%STR% "debian[^/]*/[^/]*copyright"
#
%ENTRY% _FN_LICENSEPATT
%KEY% =NULL=
%STR% "(licen[cs]e|copy(right|rite|left)|cpy(right|left)|cpyrt|legal|eula|agreement)"
#####
# License Text entries start here...
#####
#
%ENTRY% _LT_0BSD
%KEY% "permi[st]"
%STR% "copyright =SOME= permission to use copy modify and/or distribute this software for any purpose with or without fee is hereby granted the software is provided as is"
#
%ENTRY% _LT_389_exception
%KEY% "licen[cs]"
%STR% "as a special exception red hat =FEW= gives you the (additional )?right to link the code of this program with code not covered under the gnu general public license"
#
%ENTRY% _LT_3GPP
%KEY% "licen[cs]"
%STR% "3gpp organizational partners =SOME= permission to distribute modify and use this file under the standard license terms"
#
%ENTRY% _LT_Imlib2
%KEY% "distribut"
%STR% "available publicly means including the source for this software with the distribution or a method to get this software via some reasonable mechanism"
# Open Font License
%ENTRY% _LT_OPEN_FONT_V10
%KEY% "font"
%STR% "open font license(,|[[:space:]])* version 1\.?0"
#
%ENTRY% _LT_OPEN_FONT_V11
%KEY% "font"
%STR% "open font license(,|[[:space:]])* version 1\.?1"
#
%ENTRY% _LT_OPEN_FONT_V10_1
%KEY% "licen[cs]"
%STR% "licen[cs]ed under (sil open font license|sil ofl) =FEW= 1\.?0"
#
%ENTRY% _LT_OPEN_FONT_V11_1
%KEY% "licen[cs]"
%STR% "licen[cs]ed under (sil open font license|sil ofl) =FEW= 1\.?1"
#
%ENTRY% _LT_ABSTYLES_1
%KEY% "permi[st]"
%STR% "permission is granted to make and distribute verbatim copies of this document provided that the copyright notice and this permission notice are preserved"
#
%ENTRY% _LT_ABSTYLES_2
%KEY% "permi[st]"
%STR% "permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying"
#
%ENTRY% _LT_ACAA_RIGHTS
%KEY% "so(ftware|urce)"
%STR% "ada conformity assessment authority ACAA (obtained|holds) unlimited rights in the software and documentation contained herein"
#####
# DELETED: subject to all the terms and conditions of this licen[cs]e ...
# in any medium physical or electronic commercially or non-commercially
#####
%ENTRY% _LT_ACDL
%KEY% "distribut"
%STR% "you may use copy modify publicly display distribute and/?o?r? publish the document and your derivative works thereof"
%ALIAS% _LT_first
#
%ENTRY% _LT_ADAPTEC_GPL
%KEY% "licen[cs]"
%STR% "in whole or in part in conjunction with r?e?-?distribution of software governed by the general public licen[cs]e"
#
%ENTRY% _LT_ANT_BSD_RESTRICTION
%KEY% "distribut"
%STR% "following actions are prohibited =FEW= redistribution of source code containing the ANT\+ network key"
#
%ENTRY% _LT_ANTLR
%KEY% "so(ftware|urce)"
%STR% "ANTLR =SOME= software"
#####
# DELETED (below): ... only combine it with your software and distribute
# it directly to customers or through your distribution network
#####
%ENTRY% _LT_ADAPTEC_OBJ
%KEY% "licen[cs]"
%STR% "Adaptec grants to you a non-exclusive non-transferable worldwide licen[cs]e to copy the Software in object code form only"
#####
# DELETED (below): ... or another version of an adaptive public licen[cs]e
# should not be relied upon to determine your rights and obligations under
# this licen[cs]e
#####
%ENTRY% _LT_ADAPTIVE
%KEY% "licen[cs]"
%STR% "this licen[cs]e is adaptive and the generic version"
#####
# DELETED (below): comply with the terms of this end[ -]user licen[cs]e
# agreement =SOME= ... to use the software for the purposes described
#####
%ENTRY% _LT_ADOBE_1
%KEY% "licen[cs]"
%STR% "adobe grants to you a non-?exclusive licen[cs]e"
#
%ENTRY% _LT_ADOBE_2
%KEY% "permi[st]"
%STR% "permission to use copy modify distribute and/?o?r? (sell|sublicen[cs]e) this software and its documentation for any purpose =SOME= is hereby granted provided that the above copyright notices? =SOME= appear in all copies"
#####
# DELETED: the terms and conditions of the applicable licen[cs]e agreements
# below apply to you
#####
%ENTRY% _LT_ADOBE_3
%KEY% "distribut"
%STR% "unless you have another agreement directly with adobe that controls and alters your use or distribution of the adobe products"
#
%ENTRY% _LT_ADOBE_4
%KEY% "licen[cs]"
%STR% "this licen[cs]e agreement governs installation and/?o?r? use of the adobe software described herein by licen[cs]ees of such software"
#
%ENTRY% _LT_ADOBE_5
%KEY% "distribut"
%STR% "adobe permits you to use modify and distribute this file in accordance with the terms of the adobe licen[cs]e agreement accompanying it"
#
%ENTRY% _LT_ADOBE_6
%KEY% "(docume|warra)nt"
%STR% "this document includes warranty disclaimers part i and a licen[cs]e agreement governing the distribution of Adobe software"
#
%ENTRY% _LT_ADOBE_7
%KEY% "licen[cs]"
%STR% "subject to the terms of this agreement adobe hereby grants you the worldwide non-?exclusive nontransferable royalty-free licen[cs]e to use reproduce and publicly display the software"
#
%ENTRY% _LT_ADOBE_AFM
%KEY% "distribut"
%STR% "may be used copied and/?o?r? r?e?-?distributed for any purpose and without charge with or without modification provided that all copyright notices are retained"
#
%ENTRY% _LT_ADOBE_AFMPARSE_1
%KEY% "distribut"
%STR% "may be freely copied and redistributed as long as"
#
%ENTRY% _LT_ADOBE_AFMPARSE_2
%KEY% "notice"
%STR% "if the file has been modified in any way a notice of such modification is conspicuously indicated"
#####
# DELETED (below): ... provided this copyright notice is maintained intact
# and that the contents of this file are not altered in any way from its
# original form
#####
%ENTRY% _LT_ADOBE_DATA
%KEY% "permi[st]"
%STR% "permission is granted for r?e?-?distribution of this file"
#
%ENTRY% _LT_ADOBE_EULA
%KEY% "licen[cs]"
%STR% "and is subject to all restrictions on such code as contained in the end[ -]user licen[cs]e agreement accompanying this product"
#
%ENTRY% _LT_ADOBE_GLYPH_1
%KEY% =NULL=
%STR% "No modification, editing or other alteration of this document is allowed"
#
%ENTRY% _LT_ADOBE_GLYPH_2
%KEY% "permi[st]"
%STR% "permission is hereby granted free of charge to any person obtaining a copy of this documentation file to create their own derivative works"
#
%ENTRY% _LT_ADOBE_OTHER
%KEY% "distribut"
%STR% "adobe permits you to use modify and distribute this file in accordance with the terms of the licen[cs]e agreement accompanying it"
#####
# DELETED: ... prepare derivative works of publicly display publicly perform
# and distribute this source code and such derivative works in source or
# object code form without any attribution requirements
#####
%ENTRY% _LT_ADOBE_SRC
%KEY% "licen[cs]"
%STR% "adobe systems incorporated grants to you a perpetual worldwide non-?exclusive no-charge royalty-free irrevocable copyright licen[cs]e to reproduce"
#
%ENTRY% _LT_ADOBE_SUB
%KEY% "licen[cs]"
%STR% "adobe grants =FEW= a licen[cs]e under its copyrights to use reproduce display and distribute the Software for any purpose and without fee provided"
#
%ENTRY% _LT_ADSL
%KEY% "distribut"
%STR% "you may copy display modify and redistribute the software code either by itself or as incorporated into your code provided =FEW= you do not remove any proprietary notices"
#
%ENTRY% _LT_NOT_ADVERTISING
%KEY% "permi[st]"
%STR% "not be used in advertising =SOME= without =FEW= permission"
#####
# DELETED: ... that are embodied in the original work as furnished by
# the licen[cs]or to make use sell and offer for sale the original work
# and derivative works
#####
%ENTRY% _LT_AFL
%KEY% "licen[cs]"
%STR% "licen[cs]or hereby grants you a world-?wide royalty-free non-?exclusive perpetual sublicen[cs]e?able licen[cs]e under patent claims owned or controlled by the licen[cs]or"
#
%ENTRY% _LT_AFLref1
%KEY% "\<under\>"
%STR% "(distribu|develop|offere?d?|released?|licen[cs]ed?|available|protected|provided|subject|comes) =SOME= under =SOME= (afl|academic free licen[cs]e)"
#
%ENTRY% _LT_AFLref2
%KEY% "licen[cs]"
%STR% "(distribute|develop|offere?d?|available|protected|covered|provided|subject|comes|\<(and|or)\>) =SOME= academic free licen[cs]e"
#
%ENTRY% _LT_AFPL
%KEY% "licen[cs]"
%STR% "every copy of AFPL ghostscript must include a copy of the licen[cs]e"
#
%ENTRY% _LT_AGAINST_DRM
%KEY% "restrict"
%STR% "nothing in this licen[cs]e is intended to prevent or restrict the exercise of rights not treated in this licen[cs]e"
#
%ENTRY% _LT_AGE
%KEY% "distribut"
%STR% "permission to use copy modify distribute and sell this article for any purpose is hereby granted without fee"
#####
# DELETED: ... subject to the following terms and conditions
#####
%ENTRY% _LT_AGERE_EULA
%KEY% "distribut"
%STR% "Agere permits use and/?o?r? limited r?e?-?distribution of this licen[cs]ed software in source and binary forms with or without modification"
#####
# DELETED (below): fonts in this package are copyright =SOME= ... without
# permission from agfa monotype
#####
%ENTRY% _LT_AGFA
%KEY% "distribut"
%STR% "agfa monotype corporation and may not be modified or r?e?-?distributed"
#
%ENTRY% _LT_AGFA_EULA
%KEY% "\<(end[ -]user|eula)\>"
%STR% "this Agfa monotype corporation end user agreement the agreement becomes a binding contract between you and Agfa"
#
%ENTRY% _LT_AGPL1
%KEY% "so(ftware|urce)"
%STR% "affero (general p|p)ublic licen[cs]e is intended to guarantee your freedom to share and change free software"
#
%ENTRY% _LT_AGPL2
%KEY% "so(ftware|urce)"
%STR% "complete source code you must not remove that facility from your modified version of the program or work"
#
%ENTRY% _LT_AGPL3
%KEY% "so(ftware|urce)"
%STR% "designed specifically to ensure that in such cases the modified source code becomes available"
#
%ENTRY% _LT_AGPL_30
%KEY% "licen[cs]"
%STR% "affero general public licen[cs]e is a free copyleft licen[cs]e for software"
#
%ENTRY% _LT_AGPLref1
%KEY% "distribut"
%STR% "you (can|may) r?e?-?distribute (it a|a)nd/or modify it under the terms =SOME= affero =SOME= licen[cs]e"
#
%ENTRY% _LT_AGPLref2
%KEY% "\<under\>"
%STR% "(free|distribu|develop|offere?d?|covered|released?|licen[cs]ed?|available|protected|provided|subject|comes|used|software|\<is\>|code) =SOME= under =SOME= (agpl|affero gpl|(general a|a)ffero (general p|p)ublic licen[cs]e)"
#
%ENTRY% _LT_NOT_AGPLref1
%KEY% "licen[cs]"
%STR% "Use with the GNU Affero General Public License"
#
%ENTRY% _LT_ALGORITHMICS
%KEY% "permi[st]"
%STR% "Algorithmics gives permission for anyone to use and modify this file without any obligation or licen[cs]e condition except that you retain this copyright message in any source r?e?-?distribution in whole or part"
#####
# DELETED: ... under the terms of the licen[cs]e contained in the file
# LICEN[CS]E in this distribution
#####
%ENTRY% _LT_ALADDIN_RESTRICT
%KEY% "distribut"
%STR% "distributed under licen[cs]e and may not be copied modified or r?e?-?distributed except as expressly authori[sz]ed"
#####
# DELETED: This software is the ... software provided this notice is not
# removed or altered
#####
%ENTRY% _LT_AMD
%KEY% "distribut"
%STR% "property of Advanced Micro Devices Inc AMD which specifically grants the user the right to modify use and/?o?r? distribute this"
#
%ENTRY% _LT_AMD_EULA
%KEY% "distribut"
%STR% "regardless of the media upon which it is distributed the software is licen[cs]ed to you for use solely in conjunction with AMD hardware products"
#
%ENTRY% _LT_AMPAS
%KEY% "licen[cs]"
%STR% "nothing in this license shall be deemed to grant any rights to trademarks copyrights patents trade secrets or any other intellectual property of A\.?M\.?P\.?A\.?S\.?"
#
%ENTRY% _LT_AOL_EULA
%KEY% "a(gree|ttribut|vailabl|uthor)"
%STR% "constitutes your acceptance and agreement with america online inc aol as follows"
#
%ENTRY% _LT_Apache_1
%KEY% "permi[st]"
%STR% "permission to copy in any form is granted provided this notice is included in all copies permission to r?e?-?distribute is granted provided this file is r?e?-?distributed untouched in all its parts and included files"
#
%ENTRY% _LT_Apache_2
%KEY% "permi[st]"
%STR% "r?e?-?distribution of this document is permitted provided that the following conditions are met 1 r?e?-?distributions must retain the above copyright notice this list of conditions and the following disclaimer"
#
%ENTRY% _LT_Apache_20
%KEY% "licen[cs]"
%STR% "licen[cs]e each contributor hereby grants to you a perpetual world-?wide non-?exclusive no-charge royalt(ee|y)-free irrevo[ck]able"
#
%ENTRY% _LT_Apache_10_CLAUSE_4
%KEY% "\<ap(ache|ple)\>"
%STR% "names apache (server )?and apache (group|software foundation) must not be used"
#
%ENTRY% _LT_Apache_11_CLAUSE_3
%KEY% "distribut"
%STR% "documentation included with the r?e?distribution =FEW= must include the following acknowledge?ment"
#
%ENTRY% _LT_Apache_11_CLAUSE_4
%KEY% "software"
%STR% "endorse or promote products derived from this software without prior written permission"
#
%ENTRY% _LT_Apache_11_CLAUSE_5
%KEY% "software"
%STR% "products derived from this software may not be called"
#
%ENTRY% _LT_APACHESTYLEref
%KEY% "\<under\>"
%STR% "(free|distribu|develop|offere?d?|covered|released?|licen[cs]ed?|available|protected|provided|subject|comes|used|software|\<is\>|code) =SOME= under =SOME= (apache[ -]style|apache[ -]type|apache-?ish|apache[ -]like) licen[cs]e"
#####
# DELETED: ... =ANY= in consideration of your agreement to the following
# terms and your use installation modification or re-?distribution
#####
%ENTRY% _LT_APPLE_1
%KEY% "\<ap(ache|ple)\>"
%STR% "apple software is supplied to you by apple computer inc"
#
%ENTRY% _LT_APPLE_2
%KEY% "\<ap(ache|ple)\>"
%STR% "apple hereby grants permission to use"
#####
# DELETED: permitted uses and restrictions ... you may modify and create
# derivative works of the apple software modified software however you may
# not modify or create derivative works of the fonts provided by apple
#####
%ENTRY% _LT_APPLE_3
%KEY% "\<ap(ache|ple)\>"
%STR% "this licen[cs]e allows you to copy install and/?o?r? use the apple software on an unlimited number of computers under your direct control"
#####
# DELETED: ... and you may not make the apple software available over a
# network where it could be used by multiple computers at the same time
#####
%ENTRY% _LT_APPLE_4
%KEY% "licen[cs]"
%STR% "this licen[cs]e does not allow the apple software to exist on more than one computer at a time"
#
%ENTRY% _LT_APPLE_FONTFORGE
%KEY% "\<ap(ache|ple)\>"
%STR% "if you have a licen[cs]e from apple then you may enable the interpreter by setting the appropriate macro"
#####
# Here, the original text "program(s)" gets reduced to "program s"
%ENTRY% _LT_APPLE_SAMPLE
%KEY% "\<ap(ache|ple)\>"
%STR% "you may incorporate this Apple sample source code into your program s without restriction"
#####
# DELETED: original code =ANY= ...
#####
%ENTRY% _LT_APSLref1
%KEY% "licen[cs]"
%STR% "subject =SOME= apple public source licen[cs]e"
#####
# Heh, "apsl" is a substring of "capslock". :(
#####
%ENTRY% _LT_APSLref2
%KEY% "\<under\>"
%STR% "under =SOME= (apple public source licen[cs]e|\<apsl\>)"
#####
# DELETED: ... a non-exclusive worldwide royalty-free copyright licen[cs]e to
# reproduce prepare derivative works of install and execute the program in
# source code and object code form in each case solely for your internal use
#####
%ENTRY% _LT_APTANA
%KEY% "licen[cs]"
%STR% "subject to the terms and conditions of this licen[cs]e aptana hereby grants to you"
#####
# DELETED: ... provided that you give the recipients all the rights that we
# gave you and make sure they can get the modifications of this software
#####
%ENTRY% _LT_ARPHIC
%KEY% "licen[cs]"
%STR% "the arphic public licen[cs]e specifically permits and encourages you to use this software"
#
%ENTRY% _LT_ARJ
%KEY% "distribut"
%STR% "if you distribute this software to others you are required to distribute the entire package consisting"
#
%ENTRY% _LT_ARTIFEX
%KEY% "\<under\>"
%STR% "distributed under licen[cs]e and may not be copied modified or r?e?-?distributed except as expressly authori[zs]ed"
#
%ENTRY% _LT_ARTref1
%KEY% "licen[cs]"
%STR% "((can|may) r?e?-?distribute it under|derived from) the artistic licen[cs]e"
#
%ENTRY% _LT_ARTref2
%KEY% "licen[cs]"
%STR% "freely plagiari[sz]ed from the artistic licen[cs]e"
#####
# DELETED: free =SOME= ...
####
%ENTRY% _LT_ARTref3
%KEY% "distribut"
%STR% "you (can|may) r?e?-?distribute (it a|a)nd/or modify it under the terms =SOME= artistic licen[cs]e"
#####
# DELETED: free =SOME= ...
####
%ENTRY% _LT_ARTref4
%KEY% "distribut"
%STR% "r?e?-?distributed and/or modified =SOME= under the terms =SOME= artistic licen[cs]e"
#####
# This one REALLY is correct. I don't remember where, but some file with
# this text really mis-spells the word as "licencse"...
#####
%ENTRY% _LT_ARTref5
%KEY% "licen[cs]"
%STR% "(distribut(able|ed?)|released?|licen[cs]ed?|available|protected|provided|subject to|\<(and|or)\>) =SOME= artistic =FEW= licen[cs]"
#####
%ENTRY% _LT_ARTref6
%KEY% "licen[cs]"
%STR% "(\<(and|or)\>|under) =SOME= artistic licen[cs]e"
#####
# DELETED: ... of this package without restriction provided that you
# duplicate all of the original copyright notices and associated
# disclaimers
#####
%ENTRY% _LT_ART_1
%KEY% "(condit|vers)ion"
%STR% "you may make and/?o?r? give away verbatim copies of the source form of the standard version"
#####
# DELETED: ... in any medium without restriction either gratis or for a
# distribution fee provided that you duplicate all of the original copyright
# notices and associated disclaimers
#####
%ENTRY% _LT_ART_2
%KEY% "(condit|vers)ion"
%STR% "you may make available verbatim copies of the source code of the standard version of this package"
#
%ENTRY% _LT_ART_V2
%KEY% "distribut"
%STR% "any use modification and/?o?r? distribution of the standard or modified versions is governed by this artistic licen[cs]e"
#
%ENTRY% _LT_ASCENDER_EULA
%KEY% "licen[cs]"
%STR% "ascender grants =FEW= a non-exclusive world-wide licen[cs]e for the term i to use the deliverables to create Font Software ii to duplicate font software and iii to distribute Font Software embedded as part of"
#
%ENTRY% _LT_GOOGLE_SDK
%KEY% "legal"
%STR% "you agree that Google or third parties own all legal right =FEW= title and interest in and to the SDK =FEW= any Intellectual Property Rights that subsist in the SDK =SOME= means any and all rights under patent law =FEW= trade secret law =FEW= and any and all other proprietary rights =FEW= Google reserves all rights not expressly granted to you"
#
%ENTRY% _LT_ATI_EULA
%KEY% "licen[cs]"
%STR% "licen[cs]e terms above with respect to portions"
#####
# DELETED: ... is permitted provided that the following conditions are met
#####
%ENTRY% _LT_ATMEL
%KEY% "distribut"
%STR% "distribution and/?o?r? use of the microcode software firmware"
#####
# DELETED: and it may only be ...
#####
%ENTRY% _LT_ATT_1
%KEY% "licen[cs]"
%STR% "used by you under licen[cs]e from at&t corp"
#####
# DELETED: ... is hereby granted provided that this entire notice is
# included in all copies
#####
%ENTRY% _LT_ATT_2
%KEY% "permi[st]"
%STR% "permission to use copy modify and/?o?r? distribute this software for any purpose without fee"
#####
# DELETED: accessing and using the source code you ... if you do not
# wish to be bound by these terms and conditions do not access or use
# the source code
#####
%ENTRY% _LT_ATT_SRC_1
%KEY% "(condit|vers)ion"
%STR% "accept this agreement in its entirety and agree to only use the source code in accordance with the following terms and conditions"
#####
%ENTRY% _LT_ATT_SRC_2
%KEY% "distribut"
%STR% "unless otherwise permitted by the AT&T source code agreement licen[cs]ee shall only distribute any products licen[cs]ed pursuant to this agreement free of charge"
#
%ENTRY% _LT_ATT_NONCOMMERC1
%KEY% "commerc"
%STR% "accept the AT&T FSM library non-commercial binary code agreement"
#####
# DELETED: AT&T grants you a royalty-free non-exclusive ...
#####
%ENTRY% _LT_ATT_NONCOMMERC2
%KEY% "commerc"
%STR% "non-transferable personal right to use the software for a non-commercial purpose"
#
%ENTRY% _LT_ATTRIB
%KEY% "(condit|vers)ion"
%STR% "these conditions require a modest attribution"
#####
# DELETED: ... in whole or in part in any form by any means nor may you
# translate the software into any other natural or computer language
#####
#
%ENTRY% _LT_Autoconf_exception_1
%KEY% "(condit|vers)ion"
%STR% "versions? of (the )?autoconf"
#
%ENTRY% _LT_Autoconf_exception_2
%KEY% "configur"
%STR% "configur(e|ation) scripts? =FEW= Autoconf"
#
%ENTRY% _LT_Autoconf_exception_3
%KEY% "distribut"
%STR% "unlimited permission to copy distribute and modify the configure scripts that are the output of autoconf"
#
%ENTRY% _LT_Autoconf_exception_20
%KEY% "distribut"
%STR% "as a special exception the free software foundation gives unlimited permission to copy distribute and modify the configure scripts that are the output of autoconf"
#
%ENTRY% _LT_Autoconf_exception_30
%KEY% "distribut"
%STR% "purpose of this exception is to allow distribution of autoconf.s typical output under terms of the recipient.s choice"
#
%ENTRY% _LT_AVM_1
%KEY% "so(ftware|urce)"
%STR% "you may not transmit reproduce or alter this software"
#####
# DELETED: you ... you may only reverse engineer this software for
# debugging such permitted modifications
#####
%ENTRY% _LT_AVM_2
%KEY% "so(ftware|urce)"
%STR% "may only modify this software for own and personal use"
#####
# DELETED: to make and have made use import sell offer for sale or
# otherwise distribute any of your legal products or services containing
# portions of the AVM
#####
%ENTRY% _LT_AVM_3
%KEY% "legal"
%STR% "use import sell offer for sale or otherwise distribute any of your legal products or services"
#####
# DELETED: ... is hereby granted provided that both the copyright notice
# and this permission notice appear in all copies of the font derivative
# works or modified versions and that the following acknowledgement appear
# in supporting documentation
#####
%ENTRY% _LT_BAEKMUK_1
%KEY% "permi[st]"
%STR% "permission to use copy modify and/?o?r? distribute this font"
#
%ENTRY% _LT_BAEKMUK_2
%KEY% "permi[st]"
%STR% "granted permission under all hwan design propriety rights to use copy modify sublicen[cs]e sell and r?e?-?distribute =SOME= fonts"
#####
# DELETED: bea systems inc =SOME= grants you a non-?exclusive and
# non-?transferable ... development and production use of the
# accompanying software
#####
%ENTRY% _LT_BEA_1
%KEY% "licen[cs]"
%STR% "licen[cs]e for the internal evaluation testing"
#
%ENTRY% _LT_BEA_2
%KEY% "licen[cs]"
%STR% "you understand that although each contributor grants the licen[cs]es to the covered code prepared by it no assurances are provided by any contributor that the covered code does not infringe"
#####
# DELETED: ... if we meet some day and you think this stuff is worth it
# you can buy me a beer in return
#####
%ENTRY% _LT_BEERWARE
%KEY% "licen[cs]"
%STR% "the beer-ware licen[cs]e =ANY= as long as you retain this notice you (can|may) do whatever you want with this stuff =ANY= you can buy me a beer in return"
#####
# DELETED: ... for any purpose and without fee is hereby granted provided
# that the above copyright notice and this permission notice appear in all
# copies
#####
%ENTRY% _LT_BELLCORE
%KEY% "permi[st]"
%STR% "permission to use copy modify and/?o?r? distribute this material"
#####
# DELETED: ... including without limitation the rights to use copy merge
# publish distribute sublicen[cs]e and/or sell copies of the font software
#####
%ENTRY% _LT_BH_FONT
%KEY% "so(ftware|urce)"
%STR% "to deal in the font software"
#
%ENTRY% _LT_BISON
%KEY% "permi[st]"
%STR% "permitted to copy and/?o?r? distribute verbatim copies but changing it is not allowed"
#
%ENTRY% _LT_Bison_exception_1
%KEY% "bison"
%STR% "bison =SOME= without restriction =SOME= free software foundation"
#
%ENTRY% _LT_Bison_exception_2
%KEY% "bison"
%STR% "bison =FEW= distribute =FEW= under terms of your choice"
#
%ENTRY% _LT_Bison_exception_22
%KEY% "bison"
%STR% "special exception was added by the Free Software Foundation in version 2\.?2 of Bison"
#
%ENTRY% _LT_BISONref
%KEY% "licen[cs]"
%STR% "based on the bison general public licen[cs]e"
#####
# DELETED: ... or added to and in particular the designs of glyphs
# or characters in the fonts may be modified and additional glyphs or
# characters may be added to the fonts only if the fonts are renamed
#####
%ENTRY% _LT_BITSTREAM_1
%KEY% "so(ftware|urce)"
%STR% "font software ma(y|not) be modified altered"
#####
# DELETED: ... or added to and in particular the designs of glyphs
# or characters in the fonts may not be modified nor may additional
# glyphs or characters be added to the fonts
#####
%ENTRY% _LT_BITSTREAM_2
%KEY% "permi[st]"
%STR% "hereby granted permission under all Bitstream propriety rights to use copy modify sublicen[cs]e sell and r?e?-?distribute =FEW= Bitstream"
#####
# DELETED: ... products as well as any updates or maintenance releases of
# that software bittorrent products that are distributed by bittorrent inc
#####
%ENTRY% _LT_BITTORRENT
%KEY% "licen[cs]"
%STR% "this bittorrent open source licen[cs]e the licen[cs]e applies to the BitTorrent client and related software"
#
%ENTRY% _LT_BITTORRENTref
%KEY% "licen[cs]"
%STR% "subject to the bittorrent open source licen[cs]e"
#
%ENTRY% _LT_BITTORRENT_V11
%KEY% "licen[cs]"
%STR% "subject to the bittorrent open source licen[cs]e (v|version )1\.?1"
#
%ENTRY% _LT_BITTORRENT_V10
%KEY% "licen[cs]"
%STR% "subject to the bittorrent open source licen[cs]e (v|version )1\.?0"
#
%ENTRY% _LT_BIZNET
%KEY% "permi[st]"
%STR% "permission to use copy modify and distribute this software for any purpose is hereby granted without fee provided that the above copyright notice and this permission notice appear in all copies"
#
%ENTRY% _LT_BOGUSTMPL
%KEY% "licen[cs]"
%STR% "This file is r?e?-?distributed under the same licen[cs]e as the package PACKAGE"
#####
# DELETED: (require|must) =SOME= ...
#####
%ENTRY% _LT_BOOKPURCHASE
%KEY% "\<b(y|ook)\>"
%STR% "(must|require) =FEW= (possess|purchase|buy|own) =SOME= copy of =SOME= book"
#####
# DELETED: ... =ANY= to use reproduce display distribute execute and
# transmit the software
#####
%ENTRY% _LT_BOOST_1
%KEY% "so(ftware|urce)"
%STR% "software and accompanying documentation covered"
#
%ENTRY% _LT_BOOST_2
%KEY% "distribut"
%STR% "permission to copy use modify sell and distribute"
#
%ENTRY% _LT_BOOST_GRAPH
%KEY% "licen[cs]"
%STR% "received a copy of the licen[cs]e agreement for the boost graph library"
#
%ENTRY% _LT_BOOST_LAMBDA
%KEY% "so(ftware|urce)"
%STR% "boost lambda library is free software permission to copy use modify and distribute =SOME= is granted provided"
#
%ENTRY% _LT_BOOSTref1
%KEY% "licen[cs]"
%STR% "(free|distribu|develop|offere?d?|covered|released?|licen[cs]ed?|available|protected|provided|subject|comes|used|software|\<is\>|code) =SOME= boost software licen[cs]e"
#
%ENTRY% _LT_Bootloader_exception
%KEY% "restrict"
%STR% "link =FEW= bootloader =FEW= into combinations with other programs =SOME= without any restriction"
#
%ENTRY% _LT_BRAINSTORM_EULA
%KEY% "licen[cs]"
%STR% "this agreement the agreement is made between BrainStorm Inc BSI and the recipient party Licen[cs]ee"
#
%ENTRY% _LT_BROADCOM_EULA
%KEY% "licen[cs]"
%STR% "this software may only be used subject to an executed software licen[cs]e agreement between the user and broadcom"
#
%ENTRY% _LT_BSDref1
%KEY% "licen[cs]"
%STR% "(governed|consumed|licen[cs]ed) by =SOME= BSD =SOME= licen[cs]e"
#
%ENTRY% _LT_BSDref2
%KEY% "distribut"
%STR% "r?e?-?distribution and/?o?r? use in source and binary forms with or without modification are permitted under the terms =SOME= BSD licen[cs]e"
#####
# DELETED: free =SOME= ...
#####
%ENTRY% _LT_BSDref3
%KEY% "distribut"
%STR% "you (can|may) r?e?-?distribute (it a|a)nd/or modify it under the terms =SOME= (bsd|berkeley software distribution) licen[cs]e"
#
%ENTRY% _LT_BSDref4
%KEY% "licen[cs]"
%STR% "(BSD|berkeley software) licen[cs]e agreement specifies the terms and conditions for r?e?-?distribution"
#
%ENTRY% _LT_BSDref5
%KEY% "\<under\>"
%STR% "(free|distribu|develop|offere?d?|covered|released?|licen[cs]ed?|available|protected|provided|subject|comes|used|software|\<is\>|code) =SOME= under =SOME= (bsd|berkeley software distribution) licen[cs]e"
#
%ENTRY% _LT_BSDref6
%KEY% "distribut"
%STR% "r?e?-?distribution and/?o?r? use in source and binary forms with or without modification (are|is) permitted pursuant to =FEW= terms =FEW= BSD licen[cs]e"
#
%ENTRY% _LT_BSDref7
%KEY% "licen[cs]"
%STR% "modified (berkeley|bsd) software (distribution )?license"
#
%ENTRY% _LT_BSDref8
%KEY% "licen[cs]"
%STR% "available via =SOME= modified bsd license"
#
%ENTRY% _LT_BSDref9
%KEY% "licen[cs]"
%STR% "license\.? bsd"
#
%ENTRY% _LT_BSDref10
%KEY% "licen[cs]"
%STR% "(re)?distribution and (use|modifications) (is|are) (allowed|permitted) (according|subject) to =FEW= bsd license"
#
%ENTRY% _LT_BSDref11
%KEY% "licen[cs]"
%STR% "(dual|available via|distributed with) =FEW= BSD license"
#
%ENTRY% _LT_BSDref12
%KEY% "\<under\>"
%STR% "r?e?licensed? =FEW= under the (more )?permissive =SOME= 3-clause( |-)bsd"
#
%ENTRY% _LT_BSDref13
%KEY% =NULL=
%STR% "licen([cs]ed?|sing) =FEW= 3-clause( |-)bsd"
#
%ENTRY% _LT_BSDref14
%KEY% "licen[cs]"
%STR% "subject to the terms and conditions of the bsd license"
#
%ENTRY% _LT_BSDSTYLEref1
%KEY% "\<under\>"
%STR% "(free|distribu|develop|offere?d?|covered|released?|licen[cs]ed?|available|protected|provided|subject|comes|used|software|\<is\>|code) =SOME= under =SOME= (BSD[ -]style|BSD[ -]type|BSD-?ish|BSD[ -]like) licen[cs]e"
#
%ENTRY% _LT_BSDSTYLEref2
%KEY% "(©|\(c\)|copyright|\<c\>[^+:]|©)"
%STR% "copyright is =FEW= (BSD[ -]style|BSD[ -]type|BSD-?ish|BSD[ -]like) licen[cs]e"
#
%ENTRY% _LT_BSDSTYLEref3
%KEY% "distribut"
%STR% "free distribution and use =SOME= in both source and binary form is allowed =SOME= provided"
#
%ENTRY% _LT_BSDSTYLEref4
%KEY% "distribut"
%STR% "r?e?distribution modification and use in source and binary forms is permitted provided that the above copyright notice =FEW= (is|are) duplicated"
#
%ENTRY% _LT_BSD_HTMLAREA_1
%KEY% "licen[cs]"
%STR% "htmlArea license"
#
%ENTRY% _LT_BSD_HTMLAREA_2
%KEY% "distribut"
%STR% "distributed under the same terms as htmlArea itself"
#####
# ORIGINAL with those EXPENSIVE wild-cards:
# re-?distribution -and use in source and binary forms =ANY= (is|are)
# (permitted|permitted for any purpose) provided that
#####
# Found an instance where modification was mis-spelled 'modificatin'
#####
%ENTRY% _LT_BSD_1
%KEY% "distribut"
%STR% "r?e?-?distribution and/?o?r? use in source and binary form(s|s =SOME= with or without modi(fi|.?)catio?ns?) (is|are) (permitted|permitted for any purpose) provid(ed|ing) that"
#####
# There are a couple of different forms of this licen[cs]e, and some copies
# of the licensing terms use "it's" in the text (which gets changed to
# "it s" in doctorBuffer()
#####
# ORIGINAL with those EXPENSIVE wild-cards:
# permission to use copy modify and distribute this =SOME= software and
# (its|its associated) documentation for any purpose =ANY= without fee
# =SOME= is hereby granted provided that the above copyright notice
#####
# DELETED: ... provided that (this|the above) copyright notice
#####
%ENTRY% _LT_BSD_2
%KEY% "permi[st]"
%STR% "permission to use copy modify and/?o?r? distribute this (python )?software and =FEW= documentation for any purpose (and )?(with or )?without fee (or royalty )?is hereby granted"
#####
# DELETED: ... =SOME= copyright =SOME= notices? this list of conditions
# and the following disclaimer in the documentation and/or other materials
# provided with the distribution
#####
%ENTRY% _LT_BSD_3
%KEY% "distribut"
%STR% "r?e?-?distributions? (of the source code i|i)n binary form must reproduce"
#
%ENTRY% _LT_BSD_4
%KEY% "permi[st]"
%STR% "permission is hereby granted =SOME= to use copy modify and/?o?r? distribute this =SOME= for any purpose provided that =SOME= copyright =SOME= appear [io]n all copies"
#####
# DELETED: permission to use copy modify and distribute this ... non-?profit
# purposes without fee and without a written agreement is hereby granted
#####
%ENTRY% _LT_BSD_5
%KEY% "so(ftware|urce)"
%STR% "software and its documentation for educational researc(h|h internal corporate) and"
#####
# DELETED: ... and without licen[cs]e or royalty fees to use copy
# modify and distribute =SOME= for any purpose provided
#####
%ENTRY% _LT_BSD_6
%KEY% "permi[st]"
%STR% "permission is hereby granted without written agreement"
#####
# DELETED: ... of this program provided that the copyright notice and
# this permission notice are preserved
#####
%ENTRY% _LT_BSD_7
%KEY% "permi[st]"
%STR% "permission is hereby granted to make and/?o?r? distribute original copies"
#####
# DELETED: ... provided that the above copyright notice and the following
#####
%ENTRY% _LT_BSD_8
%KEY% "permi[st]"
%STR% "permission to use copy modify and/?o?r? distribute this software and its documentation for any purpose without fee and without (a wri|wri)tten agreement is hereby granted"
#
%ENTRY% _LT_BSD_9
%KEY% "so(ftware|urce)"
%STR% "may modify and/?o?r? make a cop(y|y or copies) of the software for use within your organi[sz]ation if you meet the following conditions"
#
%ENTRY% _LT_BSD_10
%KEY% "licen[cs]"
%STR% "must retain the licen[cs]e terms and copyright notice in any source code distribution and reproduce them in documentation for binary distribution"
#####
# DELETED: ... code forms with or without modifications are expressly permitted
#####
%ENTRY% _LT_BSD_11
%KEY% "distribut"
%STR% "subject to the following obligations and disclaimer of warranty use and/?o?r? r?e?-?distribution of =SOME= in source or object"
#####
# DELETED: ... and 2 they include prominent notice akin to these three
# paragraphs for those parts of this code that are retained
#####
%ENTRY% _LT_BSD_12
%KEY% "\<derivative\>"