translate_self 0.5.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 423e2804c606db8a6f62a91f8e0458f9d59ab2dde91db01a21e6ed6af6cec07b
4
- data.tar.gz: b351c1eb545ae152158ae9903e1f367cae4a87196f35a303f05817306c65b295
3
+ metadata.gz: b2c1d57419e246c33dea7d7f7af61decb6c1ee636b62f64a1bbf530019ea00b2
4
+ data.tar.gz: 0f171aedf2478b02f6cdbf3314ab92edf2fdbf77534219adf28b4b69287278c9
5
5
  SHA512:
6
- metadata.gz: dbff90c881adbc6c32996efb968eb9988121529fcdf60931575f1a4f6088e4d474c07244985d6c6ba108b1a1105e0200c5fa11f79040cbbed5cbe4c6c0b10261
7
- data.tar.gz: cc7500f06cd47d90142fb7ff2483890d3d51c2f70c1c8ad8f8e0cd1ff72fbd85fc7e1d60ed231a13cc00b9289b8c9630a27dd6d37d913ba0c393e10209f1060a
6
+ metadata.gz: 9e13a519bf56de48388720d1f59651ace62a583aade21e1c3a78131b01a4875ac1573bdeb6b99bb9df7cdb57cad71748d999906cc8e6518f72bd885d6bd6a213
7
+ data.tar.gz: cc6061fe3c583c184f62de2ce7990d274b76539aceee34025e7d0488151bc6a40665402a0f3e170f1b43f3046aae6507a7bd1843dcd08da71e2829453a58a5af
data/CHANGELOG.md CHANGED
@@ -17,4 +17,33 @@ Seems like you need to update it by hand!
17
17
 
18
18
  ## [0.4.0] - 2021-06-05
19
19
 
20
- - The translated new string now knows what language it is.
20
+ - The translated new string now knows what language it is.
21
+
22
+ ## [0.5.0] - 2021-06-06
23
+
24
+ - Add TranslatableString class to work around frozen string literal magic comment.
25
+ Also will not crash with frozen strings now.
26
+
27
+ ## [0.6.0] - 2021-06-08
28
+
29
+ - Add option to use ENV variable DEEPL_HOST
30
+
31
+ ## [0.7.0] - 2021-06-08
32
+
33
+ - Get rid of duplicated code. Update `benchmark.rb`.
34
+
35
+ ## [0.8.0] - 2021-06-08
36
+
37
+ - Add option to use the shorter `t_to_language_code` alias.
38
+
39
+ ## [0.9.0] - 2021-06-08
40
+
41
+ # Breaking change from 0.8!
42
+ - `t_to_language_code` was too much typing, so changed it to `to_language_code`.
43
+
44
+ ## [1.0.0] - 2021-06-11
45
+
46
+ - Refactored the translation part a bit.
47
+ - Now you can translate strings that are over 30 kilobyte!
48
+ I couldn't test this too much because of the limits on the free plan,
49
+ but if you can test this feature, I'd be really happy to hear how it is working for you.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- translate_self (0.5.0)
4
+ translate_self (1.0.0)
5
5
  deepl-rb
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -19,7 +19,11 @@ Just get a DeepL auth key and export it as follows:
19
19
  export DEEPL_AUTH_KEY="your-api-token"
20
20
  ```
21
21
 
22
- This gem currently hardcodes the free DeepL servers. # TODO
22
+ By default this gem uses the free DeepL servers, but you can also configure your own:
23
+
24
+ ```sh
25
+ export DEEPL_HOST="non-free-host"
26
+ ```
23
27
 
24
28
  Now you can translate it to your language of chose with this gem!
25
29
  ```ruby
@@ -27,6 +31,13 @@ Now you can translate it to your language of chose with this gem!
27
31
  # 世界よ、ハローだ
28
32
  ```
29
33
 
34
+ What's even better is that you can also save some typing by using the shortened alias such as below:
35
+
36
+ ```ruby
37
+ "hello world".to_ja # or to_fi, to_ru... endless possibilities!
38
+ # 世界よ、ハローだ
39
+ ```
40
+
30
41
  This gem uses the wonderful DeepL for Ruby as its backend.
31
42
 
32
43
  https://github.com/wikiti/deepl-rb
@@ -92,6 +103,28 @@ hello.translate
92
103
  # "Moi"
93
104
  ```
94
105
 
106
+ ## Benchmark
107
+
108
+ Create a string 5000000 times.
109
+
110
+ ```shell
111
+ C:\home\sampo\translate_self> ruby benchmark.rb
112
+ Rehearsal --------------------------------------------------------
113
+ normal string 0.221517 0.000101 0.221618 ( 0.221677)
114
+ monkeypatched string 0.267748 0.000000 0.267748 ( 0.267865)
115
+ translatable string 1.878466 0.000000 1.878466 ( 1.878497)
116
+ ----------------------------------------------- total: 2.367832sec
117
+
118
+ user system total real
119
+ normal string 0.225292 0.000000 0.225292 ( 0.225289)
120
+ monkeypatched string 0.225690 0.000000 0.225690 ( 0.225740)
121
+ translatable string 1.886653 0.000000 1.886653 ( 1.886735)
122
+
123
+ ```
124
+ So... the overhead might be surprisingly low!
125
+ If you use the TranslatableString class, there is some overhead.
126
+ But if you just hack string it's pretty fast! See `benchmark.rb`.
127
+
95
128
  ## Development
96
129
 
97
130
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -100,7 +133,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
100
133
 
101
134
  ## Contributing
102
135
 
103
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/translate_self. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/translate_self/blob/master/CODE_OF_CONDUCT.md).
136
+ Bug reports and pull requests are welcome on GitHub at https://github.com/sampokuokkanen/translate_self. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/translate_self/blob/master/CODE_OF_CONDUCT.md).
104
137
 
105
138
  ## License
106
139
 
data/benchmark.rb ADDED
@@ -0,0 +1,22 @@
1
+ require 'benchmark'
2
+
3
+ n = 5_000_000
4
+ Benchmark.bmbm do |x|
5
+ x.report('normal string') do
6
+ n.times do
7
+ 'hello'
8
+ end
9
+ end
10
+ x.report('monkeypatched string') do
11
+ require 'translate_self'
12
+ n.times do
13
+ 'hello'
14
+ end
15
+ end
16
+ x.report('translatable string') do
17
+ require 'translate_self'
18
+ n.times do
19
+ TranslatableString.new('hello')
20
+ end
21
+ end
22
+ end
@@ -6,10 +6,8 @@ require 'deepl'
6
6
 
7
7
  # Dangerously include translation methods to strings!
8
8
  module TranslateSelf
9
- include Translation
10
- class Error < StandardError; end
11
9
  DeepL.configure do |config|
12
- config.host = 'https://api-free.deepl.com' # Default value is 'https://api.deepl.com'
10
+ config.auth_key = ENV['DEEPL_AUTH_KEY']
11
+ config.host = ENV['DEEPL_HOST'] || 'https://api-free.deepl.com' # Default value is 'https://api.deepl.com'
13
12
  end
14
- AVAILABLE_LANGUAGES = %w[bg cs da de el en es et fi fr hu it ja lt lv nl pl pt ro ru sk sl sv zh].freeze
15
13
  end
@@ -3,7 +3,7 @@
3
3
  # freeze them. Aliased to TString.
4
4
  class TranslatableString < String
5
5
  def initialize(str, language: nil, to_language: nil)
6
- replace str
6
+ super str
7
7
  self.language = language
8
8
  self.to_language = to_language
9
9
  end
@@ -2,10 +2,11 @@ require 'deepl'
2
2
 
3
3
  # The part where the actual translation happens.
4
4
  module Translation
5
+ @@languages = %w[bg cs da de el en es et fi fr hu it ja lt lv nl pl pt ro ru sk sl sv zh].freeze
5
6
  attr_accessor :language, :to_language
6
7
 
7
8
  def available_languages
8
- TranslateSelf::AVAILABLE_LANGUAGES
9
+ @@languages
9
10
  end
10
11
 
11
12
  # Translates self to the desired language. \
@@ -17,7 +18,7 @@ module Translation
17
18
  # # 'Hei'
18
19
  # @return [String] a new and shiny translated string!
19
20
  def translate
20
- call_deepl(self, language, to_language)
21
+ call_deepl(language, to_language)
21
22
  end
22
23
 
23
24
  # Replaces self with the translation. \
@@ -32,25 +33,51 @@ module Translation
32
33
  replace translate
33
34
  end
34
35
 
35
- # Translates the string itself to a language the user wants to translate it to. \
36
+ # Translates the string itself to a language the user wants to translate it to.
36
37
  # Sample usage:
37
38
  # 'hello'.translate_to_fi
38
39
  # # Hei
39
40
  #
40
41
  # @param [String] the language to translate to, e.g. "fi"
41
42
  # @return [String] the contents translated to another language
42
- %w[bg cs da de el en es et fi fr hu it ja lt lv nl pl pt ro ru sk sl sv zh].each do |lan|
43
+ @@languages.each do |lan|
43
44
  define_method("translate_to_#{lan}") do |language = lan|
44
- call_deepl(self, self.language, language)
45
+ call_deepl(self.language, language)
45
46
  end
47
+ alias_method "to_#{lan}", "translate_to_#{lan}"
46
48
  end
47
49
 
48
50
  private
49
51
 
50
- def call_deepl(text, language = self.language, to_lan = to_language)
52
+ def break_up(to_lan)
53
+ sentences = break_text_into_sentences
54
+ sentences.length.times.map.with_index do |_i, i|
55
+ sentences[i].send "translate_to_#{to_lan}"
56
+ end.join(' ')
57
+ end
58
+
59
+ def break_text_into_sentences
60
+ last_letter = if self[-1] == '.'
61
+ '.'
62
+ else
63
+ ''
64
+ end
65
+ tr_count = (bytesize / 25_000.to_f).ceil
66
+ sentences = split('.')
67
+ number_of_sentences = sentences.length / tr_count
68
+ current_count = 0
69
+ tr_count.times.map do |num|
70
+ txt = sentences[current_count..(current_count + number_of_sentences)].join('.')
71
+ current_count += number_of_sentences.next
72
+ txt + last_letter if num == tr_count.pred
73
+ end
74
+ end
75
+
76
+ def call_deepl(language = self.language, to_lan = to_language)
51
77
  warn 'No language given!' and return if to_lan.nil?
78
+ return break_up(to_lan) if bytesize > 30_000
52
79
 
53
- response = DeepL.translate text, language, to_lan
80
+ response = DeepL.translate self, language, to_lan
54
81
  self.language = response.detected_source_language.downcase if self.language.nil? && !frozen?
55
82
  actual_translation = response.text
56
83
  actual_translation.language = to_lan
@@ -1,3 +1,3 @@
1
1
  module TranslateSelf
2
- VERSION = '0.5.0'.freeze
2
+ VERSION = '1.0.0'.freeze
3
3
  end
data/spaghetti.txt ADDED
@@ -0,0 +1,1207 @@
1
+ The Project Gutenberg eBook of 30 Tempting Spaghetti Meals, by
2
+ Campbell Soup Company
3
+
4
+ This eBook is for the use of anyone anywhere in the United States and
5
+ most other parts of the world at no cost and with almost no restrictions
6
+ whatsoever. You may copy it, give it away or re-use it under the terms
7
+ of the Project Gutenberg License included with this eBook or online at
8
+ www.gutenberg.org. If you are not located in the United States, you
9
+ will have to check the laws of the country where you are located before
10
+ using this eBook.
11
+
12
+ Title: 30 Tempting Spaghetti Meals
13
+
14
+ Author: Campbell Soup Company
15
+
16
+ Release Date: June 7, 2021 [eBook #65562]
17
+
18
+ Language: English
19
+
20
+ Produced by: Stephen Hutcheson, Lisa Corcoran and the Online Distributed
21
+ Proofreading Team at https://www.pgdp.net
22
+
23
+ *** START OF THE PROJECT GUTENBERG EBOOK 30 TEMPTING SPAGHETTI
24
+ MEALS ***
25
+
26
+
27
+
28
+
29
+
30
+ _30 TEMPTING
31
+ Spaghetti meals
32
+ EASY, ECONOMICAL, DELICIOUS_
33
+
34
+
35
+
36
+
37
+ How spaghetti can help you serve more delicious, more nourishing meals
38
+ FOR LESS MONEY
39
+
40
+
41
+ [Illustration: uncaptioned]
42
+
43
+ It takes real planning to feed a family both economically and well. But
44
+ you’ll find Franco-American Spaghetti a big help in solving your
45
+ problem. Few foods provide so much real nourishment and deliciousness—at
46
+ such low cost. Serve it by itself as a main dish or in combination with
47
+ other foods.
48
+
49
+ Franco-American Spaghetti furnishes plenty of protein for building
50
+ muscles. It is especially rich in carbohydrates needed for energy. It
51
+ combines with other foods to make a variety of satisfying, delicious
52
+ meals. Add a salad or simple fruit dessert and you have a well-balanced
53
+ menu—easy to digest, easy on the budget.
54
+
55
+ Spaghetti combines wonderfully with other foods. Combine it with
56
+ left-over meat into appetizing casseroles. Use it to dress up cheaper
57
+ cuts of meat. Serve it on a platter with lamb stew or meat balls. Your
58
+ family will look forward to Friday dinners if you make a tasty casserole
59
+ of spaghetti and salmon or other inexpensive fish. They’ll enjoy green
60
+ peppers stuffed with savory spaghetti, too.
61
+
62
+ Attractive menu suggestions are given with each recipe in this leaflet.
63
+ They give you meals which are inexpensive and easy to prepare. Look them
64
+ over now and surprise your family with one tonight.
65
+
66
+
67
+
68
+
69
+ WHY YOU SHOULD
70
+ _Insist on_
71
+ Franco-American
72
+
73
+
74
+ [Illustration: uncaptioned]
75
+
76
+ It makes a big difference _which_ spaghetti you serve. Franco-American
77
+ is different as can be from the ordinary ready-cooked kind.
78
+
79
+ Its tangy, tempting sauce is rich with the luscious goodness of fine
80
+ ripe tomatoes and golden Cheddar cheese. It’s seasoned to savory
81
+ perfection with costly spices—a skillful blend of eleven different
82
+ ingredients. “Far better than I could ever make,” good home cooks tell
83
+ us.
84
+
85
+ Yet you can enjoy this “millionaire’s dish” for less than three cents a
86
+ portion! A can of Franco-American is usually no more than ten cents. You
87
+ can’t buy uncooked spaghetti, with all your other ingredients, and
88
+ prepare it yourself for so little.
89
+
90
+ Serve these savory spaghetti dishes twice a week or oftener. Keep a
91
+ supply of Franco-American on hand. Order several cans from your grocer
92
+ today. It’s a great time and money-saver in your kitchen.
93
+
94
+ [Illustration: uncaptioned]
95
+
96
+
97
+
98
+
99
+ FRANCO-AMERICAN SPAGHETTI WITH THE _Extra_ GOOD SAUCE
100
+
101
+ MADE BY THE MAKERS OF CAMPBELL’S SOUPS
102
+
103
+ Each recipe in this booklet serves _four_, with the exception of
104
+ Chicken Royal, marked by an asterisk.*
105
+
106
+
107
+
108
+
109
+ SALMON-SPAGHETTI CASSEROLE
110
+
111
+
112
+ 1 can Franco-American Spaghetti
113
+ 1½ cups flaked salmon
114
+ 1½ teaspoons minced onion
115
+ 4 strips bacon
116
+ ½ teaspoon salt
117
+
118
+ Place a layer of Franco-American Spaghetti in a shallow, greased
119
+ casserole. Add some of the flaked salmon and the onion. Alternate layers
120
+ of spaghetti, fish and onion till all are used. Arrange bacon strips cut
121
+ in half over top. Bake in hot oven (425° F.) about 20 minutes, until
122
+ casserole is well heated and bacon crisp. Serve with green peas, salad
123
+ of shredded cabbage and seeded raisins with French dressing; plain spice
124
+ cake with whipped cream for dessert.
125
+
126
+ [Illustration: MY HUSBAND HATED “ECONOMY DISHES” UNTIL I FOUND OUT
127
+ ABOUT FRANCO-AMERICAN]
128
+
129
+
130
+
131
+
132
+ SAVORY TIMBALES
133
+
134
+
135
+ 1 can Franco-American Spaghetti
136
+ 1 cup ground left-over meat (beef, corned beef, ham)
137
+ ½ teaspoon salt
138
+ ¼ teaspoon paprika
139
+ 1 tablespoon parsley, chopped fine
140
+ 2 eggs, slightly beaten
141
+
142
+ Chop Franco-American Spaghetti and mix thoroughly with other
143
+ ingredients. Fill buttered custard cups three-fourths full. Place layer
144
+ of brown paper over bottom of shallow pan and fill with hot water. Put
145
+ in custard cups and bake in moderate oven (350° F.) for 30 minutes.
146
+ Serve on hot platter garnished with parsley. Delicious with buttered
147
+ turnips and a green salad; cherry upside-down cake for dessert.
148
+
149
+
150
+
151
+
152
+ HEARTY SOUP DINNER
153
+ _Makes a hit on frosty fall days_
154
+
155
+
156
+ 2 large onions
157
+ 2¾ cups water
158
+ 1 can Franco-American Spaghetti
159
+ ¾ teaspoon salt
160
+ 2 cans Campbell’s Beef Soup
161
+ Parmesan cheese
162
+
163
+ Slice onions and cook in boiling salted water for 10 minutes. Chop
164
+ Franco-American Spaghetti a little and add with soup to onions. Bring to
165
+ a boil and serve at once in soup plates with Parmesan cheese and
166
+ crackers. Try large fruit salads or cup-cakes with chocolate sauce for
167
+ dessert.
168
+
169
+
170
+
171
+
172
+ OYSTER CASSEROLE DE LUXE
173
+ _Grand for Friday or any day_
174
+
175
+
176
+ 2 tablespoons butter
177
+ 2 tablespoons flour
178
+ ¾ teaspoon salt
179
+ ⅛ teaspoon pepper
180
+ 1 tablespoon chopped parsley
181
+ ½ cup milk (about)
182
+ 1½ dozen oysters
183
+ 1 can Franco-American Spaghetti
184
+ Buttered bread crumbs
185
+
186
+ Melt butter in saucepan and blend with flour and salt till smooth. Pour
187
+ oyster liquor in cup and add milk to make ¾ cup. Add gradually to flour
188
+ mixture, stirring constantly till smooth and slightly thick. Add
189
+ parsley.
190
+
191
+ In a greased baking dish place a layer of spaghetti, dot with oysters
192
+ and cover with white sauce. Repeat till all ingredients are used, ending
193
+ with white sauce. Cover with buttered bread crumbs and bake in a
194
+ moderately hot oven (375° F.) for 20 minutes, till heated through and
195
+ browned on top. Serve with squash and spinach; fresh fruit tarts for
196
+ dessert.
197
+
198
+ [Illustration: FRANCO-AMERICAN CERTAINLY HELPS WHEN YOU’RE ON A
199
+ BUDGET]
200
+
201
+
202
+
203
+
204
+ CHICKEN ROYAL*
205
+ _Fit for a king!_
206
+
207
+
208
+ 2 cans Franco-American Spaghetti
209
+ 1 cup stuffed olives, sliced
210
+ ¾ teaspoon salt
211
+ ⅛ teaspoon pepper
212
+ ½ teaspoon paprika
213
+ 2½ cups of chicken meat
214
+ 2 tablespoons butter
215
+ Buttered bread crumbs
216
+
217
+ To spaghetti, add stuffed olives and seasonings. Arrange a layer of
218
+ mixture in bottom of greased baking dish. Spread all the chicken over
219
+ this and dot with butter. Cover with remaining spaghetti and sprinkle
220
+ with buttered crumbs. Bake in moderately hot oven (375° F.) for 30
221
+ minutes or till crumbs are browned. Garnish with slices of hard-boiled
222
+ egg, if desired, and sprinkle with paprika. Serve with cheese sticks and
223
+ a green salad. Serves 6. Grand for Sunday night supper.
224
+
225
+ [Illustration: OH, DEAR, LATE AGAIN. THANK GOODNESS FOR
226
+ FRANCO-AMERICAN]
227
+
228
+
229
+
230
+
231
+ SPAGHETTI WITH FRIZZLED BEEF
232
+ _A tempting, jiffy dinner on your “afternoon out”_
233
+
234
+
235
+ ¾ cup dried beef
236
+ 2 tablespoons butter
237
+ 1 can Franco-American Spaghetti
238
+
239
+ Pick dried beef into small pieces. If it is very salty, freshen 10
240
+ minutes in cold water and drain well. Melt butter in hot frying pan and
241
+ frizzle beef till slightly browned. Add Franco-American Spaghetti and
242
+ mix. Cook over low flame till heated through. Serve with buttered baby
243
+ beets and cole slaw, with boiled custard over sliced peaches for
244
+ dessert.
245
+
246
+
247
+
248
+
249
+ CRISPY MEAT PATTIES
250
+ _An easy way to make tempting croquettes_
251
+
252
+
253
+ ½ cup bread crumbs
254
+ 1 cup chopped, cooked vegetables (carrots, beets, peas)
255
+ 1 teaspoon Worcestershire sauce
256
+ ¾ teaspoon salt
257
+ 1 cup ground left-over meat
258
+ 1 egg, slightly beaten with 1½ tablespoons cold water
259
+ 1 can Franco-American Spaghetti
260
+
261
+ Chop Franco-American Spaghetti fine and mix with vegetables,
262
+ Worcestershire, salt and ground meat. Shape into cakes, dip in bread
263
+ crumbs, then in beaten egg and again in crumbs. Chill 20 minutes in
264
+ refrigerator. Sauté in hot fat (375° F.) 1 inch deep in a heavy frying
265
+ pan until brown on each side. Drain on absorbent paper. Serve with
266
+ cucumber salad; strawberries or sliced pineapple for dessert.
267
+
268
+
269
+
270
+
271
+ THRIFTY MEAT SCALLOP
272
+ _Delicious made with left-over ham, corned beef, pot-roast_
273
+
274
+
275
+ 2 cans Franco-American Spaghetti
276
+ 1½ cups left-over meat
277
+ ¾ teaspoon salt
278
+ ⅛ teaspoon pepper
279
+ Buttered bread crumbs
280
+
281
+ Chop Franco-American Spaghetti a little. Grind meat and add seasonings.
282
+ Arrange in alternate layers in shallow, greased baking dish, finishing
283
+ with spaghetti. Cover with buttered crumbs. Bake in moderately hot oven
284
+ (375° F.), till scallop is heated through and crumbs are slightly
285
+ browned (20 minutes). Excellent with fried apple rings. Serve prune whip
286
+ for dessert.
287
+
288
+ [Illustration: THIS FRANCO-AMERICAN SPAGHETTI CERTAINLY SAVES LOTS
289
+ OF TIME AND TROUBLE]
290
+
291
+
292
+
293
+
294
+ LIVER EN CASSEROLE
295
+ _A tempting meal in one dish_
296
+
297
+
298
+ ¾ lb. beef liver
299
+ Seasoned flour
300
+ 4 tablespoons butter
301
+ 2 tablespoons flour
302
+ 1 cup boiling water
303
+ ¾ teaspoon salt
304
+ ⅛ teaspoon pepper
305
+ 1 can Franco-American Spaghetti
306
+ 1½ cups cooked string beans
307
+ 2 tablespoons chopped pimiento
308
+ Buttered crumbs
309
+
310
+ Wipe off liver with a damp cloth and cut in small pieces. Dip in flour
311
+ seasoned with salt and pepper. Melt 3 tablespoons butter in hot frying
312
+ pan and panbroil liver 3 minutes, turning once. Remove from pan and mix
313
+ with Franco-American Spaghetti and string beans.
314
+
315
+ Add remaining butter to frying pan and blend with flour till smooth. Add
316
+ boiling water gradually, stirring till smooth and thickened. Add to
317
+ liver mixture and put in greased casserole. Cover with buttered crumbs
318
+ and bake in moderate oven (350° F.) about 30 minutes, till heated
319
+ through and browned on top. Serve pineapple upside-down cake for
320
+ dessert.
321
+
322
+ [Illustration: GEE MOM, THIS SPAGHETTI CERTAINLY TASTES SWELL!]
323
+
324
+
325
+
326
+
327
+ VEGETABLE DINNER
328
+
329
+
330
+ It’s easy to make vegetable dinners so attractive that everyone enjoys
331
+ them. Simply select vegetables which contrast in flavor, color and
332
+ texture. From each of the following choose—
333
+
334
+ 1 green leafy vegetable (spinach or other greens, Brussels sprouts,
335
+ cabbage)
336
+ 1 white vegetable (cauliflower, onions, white turnip, etc.)
337
+ 1 yellow vegetable (carrots, squash, corn), Franco-American Spaghetti
338
+ 1 red vegetable (beets, red cabbage)
339
+
340
+
341
+
342
+
343
+ TASTY OVEN DINNER
344
+ _Prepared in a jiffy_
345
+
346
+
347
+ 12 small onions
348
+ ¼ cup grated American cheese
349
+ 8 sausages
350
+ 1 can Franco-American Spaghetti
351
+
352
+ Parboil onions and arrange around edge of shallow, greased baking dish
353
+ or large glass pie plate. Sprinkle with grated cheese. Meanwhile
354
+ panbroil sausages till slightly browned. Mix with Franco-American
355
+ Spaghetti and turn into center of baking dish. Bake in moderately hot
356
+ oven (375° F.) till spaghetti is heated through and cheese is melted.
357
+ Serve with clover rolls and large fruit salads.
358
+
359
+
360
+
361
+
362
+ STUFFED CABBAGE
363
+ _Make this an oven dinner_
364
+
365
+
366
+ 1 medium-sized cabbage
367
+ 1 can Franco-American Spaghetti
368
+ 3 tablespoons finely chopped green pepper
369
+ 1 cup left-over meat (corned beef, ham), cut in pieces
370
+ 1 teaspoon salt
371
+ ⅛ teaspoon pepper
372
+
373
+ Cut away center leaves of cabbage, leaving thickness of 3 or 4 leaves
374
+ outside. Mix other ingredients, fill cabbage shell and fasten together
375
+ with toothpicks. Set on rack in covered roaster. Pour ½ inch boiling
376
+ water in bottom of pan, cover and bake in moderately hot oven (375° F.)
377
+ 30 minutes. Brush with melted butter and serve on hot platter surrounded
378
+ by baby carrots which have been cooked in roaster around cabbage. For
379
+ dessert, serve spice cake with hot nutmeg or lemon sauce.
380
+
381
+ [Illustration: IMAGINE! SUCH DELICIOUS SPAGHETTI FOR 3¢ A PORTION!]
382
+
383
+
384
+
385
+
386
+ BEEF GOULASH
387
+ _This calls for “seconds”_
388
+
389
+
390
+ 1 lb. round steak
391
+ 2 tablespoons butter
392
+ ⅛ teaspoon pepper
393
+ ½ teaspoon salt
394
+ ¾ teaspoon paprika
395
+ 1 green pepper, chopped
396
+ 1 can Franco-American Spaghetti, chopped
397
+ 3 tablespoons flour
398
+ 1 can Campbell’s Consommé expanded with 1 cup water
399
+ 2 medium onions, sliced
400
+
401
+ Cut steak into 1-inch dice. Melt butter in pan over hot fire and brown
402
+ beef. Sprinkle with seasonings and add onion, cooking till yellow. Stir
403
+ in flour till smooth and add expanded Consommé and green pepper. Cover
404
+ and simmer about 45 minutes, till meat is three-quarters done. Add
405
+ Franco-American Spaghetti and cook 10 minutes longer. For dessert serve
406
+ Macaroon Trifle. (To make, line bottom of sherbet glasses with bananas
407
+ which have been dipped in lemon juice. Sprinkle with macaroon crumbs and
408
+ fill remaining part with boiled custard or any prepared vanilla
409
+ pudding.)
410
+
411
+ [Illustration: I NEVER COULD MAKE AS GOOD A SAUCE MYSELF AT HOME]
412
+
413
+
414
+
415
+
416
+ BEEF & MUSHROOMS with SPAGHETTI
417
+
418
+
419
+ ¾ lb. chopped beef
420
+ ¾ teaspoon salt
421
+ ⅛ teaspoon pepper
422
+ 2 tablespoons butter
423
+ 1 can Campbell’s Cream of Mushroom Soup
424
+ 1 can Franco-American Spaghetti
425
+
426
+ Add seasonings to meat. Melt butter in hot frying pan and brown meat.
427
+ Add mushroom soup, without the addition of water, and Franco-American
428
+ Spaghetti, mixing well. Cover and cook over low flame till heated
429
+ through. Serve with Brussels sprouts; apricot whip for dessert.
430
+
431
+
432
+
433
+
434
+ POACHED EGGS IN SPAGHETTI NESTS
435
+ _Children love this delicious, healthful luncheon_
436
+
437
+
438
+ 1 green pepper, diced and parboiled
439
+ 4 eggs
440
+ 2 cans Franco-American Spaghetti
441
+ Salt and pepper
442
+
443
+ Mix green pepper with spaghetti and heat in saucepan. Poach the eggs. On
444
+ each hot luncheon plate make a nest with a quarter of the spaghetti.
445
+ Place egg in center, sprinkle with salt and pepper and garnish with
446
+ parsley. A tempting dish for Sunday night supper, too, and easy as can
447
+ be to prepare. Serve with mixed fresh vegetable salad; fresh berries or
448
+ preserved fruit and cookies for dessert.
449
+
450
+
451
+
452
+
453
+ RUSSIAN STEAK
454
+ _Tender and tasty_
455
+
456
+
457
+ ¾ lb. chopped beef
458
+ 1 can Franco-American can Spaghetti
459
+ 2 teaspoons salt
460
+ ¼ lb. mushrooms, cut fine
461
+ 1 egg, slightly beaten
462
+ 2 cups shredded carrots
463
+ 2 cups boiling water
464
+ 2 teaspoons Worcestershire sauce
465
+
466
+ Chop Franco-American Spaghetti fine, mix with chopped beef, ½ teaspoon
467
+ salt, slightly beaten egg and shape into 12 small cakes. Dust with flour
468
+ on each side. Cut mushrooms fine and brown in hot fat in a heavy frying
469
+ pan. Brown meat cakes. Add boiling water, 1½ teaspoons salt and shredded
470
+ carrots. Cover and simmer 20 minutes. Add Worcestershire sauce and
471
+ simmer 10 minutes more. Serve with vegetables over meat cakes and a
472
+ green salad. Preserved figs and cookies for dessert.
473
+
474
+ [Illustration: GEE, MOM, YOU SURE ARE A SWELL COOK]
475
+
476
+
477
+
478
+
479
+ SPAGHETTI RING with VEGETABLES and COLD CUTS
480
+ _A tempting “company” dinner_
481
+
482
+
483
+ 2 cans Franco-American Spaghetti
484
+ 1 pimiento, chopped
485
+ 2 tablespoons green pepper, chopped
486
+ ¾ teaspoon salt
487
+ 3 eggs, slightly beaten
488
+
489
+ Mix all ingredients well and turn into greased ring mold. Put brown
490
+ paper into shallow pan, add hot water and place ring mold in it. Bake 50
491
+ minutes in moderate oven (375° F.), or until firm. Unmold on serving
492
+ dish or chop plate and fill center with buttered vegetables (as string
493
+ beans, diced beets or chopped spinach). If desired, surround ring with
494
+ overlapping slices of cold meat (ham, liverwurst, beef or lamb).
495
+ Strawberry or pineapple sundae for dessert.
496
+
497
+ [Illustration: CAN WE HAVE THAT SWELL FRANCO-AMERICAN SPAGHETTI FOR
498
+ LUNCH?]
499
+
500
+
501
+
502
+
503
+ SAVORY LUNCH CASSEROLE
504
+ _A favorite with children or grown-ups_
505
+
506
+
507
+ 3 slices bacon, chopped
508
+ 2 cans Franco-American Spaghetti
509
+ ½ teaspoon salt
510
+ 1½ cups cooked lima beans
511
+ ¼ cup grated American cheese
512
+ ¼ cup buttered bread crumbs
513
+
514
+ Cook bacon till crisp and add to spaghetti. Add salt to lima beans.
515
+ Alternate layers of spaghetti and lima beans till all are used. Mix
516
+ grated cheese with buttered bread crumbs and sprinkle over top. Bake in
517
+ moderately hot oven (375° F.) for 30 minutes, till cheese is melted.
518
+ Serve with a green salad; fresh fruit cup and cookies for dessert.
519
+
520
+
521
+
522
+
523
+ SPAGHETTI MEAT LOAF
524
+ _A thrifty favorite_
525
+
526
+
527
+ 1½ lbs. chopped beef
528
+ 2 tablespoons melted fat
529
+ 1¾ teaspoons salt
530
+ ⅛ teaspoon pepper
531
+ ½ teaspoon sage
532
+ 1 onion, minced
533
+ 1 egg, slightly beaten
534
+ 1 can Franco-American Spaghetti, chopped fine
535
+
536
+ Mix meat and fat with seasonings. Add chopped spaghetti and slightly
537
+ beaten egg, mixing well. Shape into a loaf and bake in greased baking
538
+ pan in moderate oven (350° F.) for 50 minutes. If desired, thicken
539
+ juices in pan with flour and add hot water to make a gravy. Delicious
540
+ with spinach and creamed carrots. For dessert, bake a plain cake at same
541
+ time as meat loaf and serve with hot fruit or butterscotch sauce.
542
+
543
+
544
+
545
+
546
+ BACON SCALLOP
547
+ _An easy way to make a tasty dinner_
548
+
549
+
550
+ 8 slices Canadian bacon
551
+ 1 can Franco-American Spaghetti
552
+ 1 can Campbell’s Pepper Pot Soup
553
+ ¼ cup hot water
554
+ Buttered bread crumbs
555
+
556
+ Panbroil Canadian bacon slightly. Mix hot water with soup and add to
557
+ spaghetti. In shallow, greased baking dish put alternate layers of
558
+ spaghetti mixture and bacon. Cover with buttered crumbs and bake in
559
+ moderately hot oven (375° F.) about 30 minutes, till heated through and
560
+ browned on top. Delicious served with buttered green cabbage, pickled
561
+ beets and banana-gingerbread shortcake for dessert.
562
+
563
+ [Illustration: I’VE FOUND THE WAY TO KEEP FOOD BILLS DOWN—YET SERVE
564
+ MEALS WE ENJOY]
565
+
566
+
567
+
568
+
569
+ CASSEROLE OF VEAL
570
+ _A tempting dish for cool days_
571
+
572
+
573
+ 1 slice salt pork
574
+ 2 lbs. breast of veal
575
+ 1 teaspoon salt
576
+ 1 can Franco-American Spaghetti sauce
577
+ 6 small cooked carrots
578
+ 1 cup cooked green peas or string beans
579
+ 1 teaspoon Worcestershire sauce
580
+ Buttered bread crumbs
581
+
582
+ [Illustration: SURE, BOB, BRING HIM HOME. WE’LL HAVE
583
+ FRANCO-AMERICAN]
584
+
585
+ Dice the salt pork and melt out the fat. Cut up veal and sear in hot
586
+ fat. Add salt and hot water to cover. Simmer, closely covered, for one
587
+ hour. Chop spaghetti and mix with vegetables and veal. Put in greased
588
+ casserole. Thicken 1 cup of the meat stock with 2 tablespoons of flour;
589
+ add Worcestershire sauce. Pour over other ingredients. Cover with
590
+ buttered bread crumbs and bake in moderate oven (350° F.) for half an
591
+ hour, till dish is heated through and crumbs are browned.
592
+
593
+
594
+
595
+
596
+ TEMPTING FRIDAY LOAF
597
+ _A grand emergency dish, too_
598
+
599
+
600
+ 1 can Franco-American Spaghetti
601
+ 2 cups red salmon, flaked
602
+ 2 eggs, slightly beaten
603
+ 1 tablespoon parsley, chopped
604
+ ¾ teaspoon salt
605
+ ⅛ teaspoon pepper
606
+ 2 tablespoons melted butter
607
+
608
+ Chop spaghetti and mix well with other ingredients. Pack in greased loaf
609
+ pan and bake in moderately hot oven (375° F.) for 30 minutes. Serve with
610
+ beet greens and buttered parsnips. Cup cakes may be baked at same time
611
+ as loaf and served with hot nutmeg or fruit sauce.
612
+
613
+
614
+
615
+
616
+ SPANISH SPAGHETTI
617
+ _Tastes as good as it looks!_
618
+
619
+
620
+ 3 tablespoons fat
621
+ 1 medium-sized onion, minced
622
+ ¾ lb. hamburger
623
+ 1 cup celery, cut fine
624
+ 2 tablespoons pimiento, chopped
625
+ 1 green pepper, chopped
626
+ 1¼ teaspoons salt
627
+ 1 teaspoon paprika
628
+ 1⅓ cups hot water
629
+ 1 can Franco-American Spaghetti
630
+
631
+ Cook onion in fat till yellow. Add hamburger and brown. Mix with green
632
+ pepper, pimiento, seasonings, celery and water. Cook 15 minutes. Add
633
+ Franco-American Spaghetti and cook 10 minutes more. Serve with sliced
634
+ buttered carrots; baked red cinnamon apples for dessert.
635
+
636
+
637
+
638
+
639
+ FRANCO-AMERICAN OMELET
640
+ _New and different_
641
+
642
+
643
+ 3 eggs
644
+ ¾ teaspoon salt
645
+ ⅛ teaspoon pepper
646
+ 1 tablespoon chopped parsley
647
+ 1 can Franco-American Spaghetti, chopped
648
+ 1 tablespoon butter
649
+
650
+ Separate yolks and whites. Add seasonings to yolks, beating till thick
651
+ and lemon colored. Chop Franco-American Spaghetti and mix with egg
652
+ yolks. Beat whites till stiff, but not dry, and fold into first mixture
653
+ till well blended. Heat omelet pan and butter bottom and sides. Spread
654
+ omelet evenly, cooking over low heat till delicately browned and puffy.
655
+ Set in oven a few minutes to dry off top. Fold and turn on hot platter.
656
+ Serve with salad greens, and fruit gelatine with whipped cream for
657
+ dessert.
658
+
659
+ [Illustration: SAY, THIS IS WHAT I CALL A MILLIONAIRE’S DISH!]
660
+
661
+
662
+
663
+
664
+ FRENCH MOUSSE
665
+
666
+
667
+ ½ cup scalded milk
668
+ ¾ cup soft bread crumbs
669
+ ¼ cup melted butter
670
+ 1½ tablespoons minced onion
671
+ ¾ cup grated cheese
672
+ 1½ tablespoons chopped parsley
673
+ 1 teaspoon salt
674
+ ½ teaspoon paprika
675
+ 3 eggs, well beaten
676
+ 2 cans Franco-American Spaghetti
677
+
678
+ Pour scalded milk over bread crumbs. Add butter, onion, parsley, grated
679
+ cheese and seasonings. Add well-beaten eggs. Put spaghetti in
680
+ well-buttered glass loaf dish or baking dish and pour cheese mixture
681
+ over it. Bake in moderate oven (350° F.) till firm (about 50 minutes).
682
+ Serve with mushroom sauce (below). Delicious with green peas.
683
+
684
+ [Illustration: MY WIFE’S A SWELL MANAGER. HER SPAGHETTI MEALS HIT
685
+ THE SPOT]
686
+
687
+
688
+
689
+
690
+ TUNA CAKES with Mushroom Sauce
691
+
692
+
693
+ 1 can Franco-American Spaghetti
694
+ 1 egg, beaten
695
+ 1½ cups flaked tuna fish
696
+ ¾ teaspoon salt
697
+ ⅛ teaspoon pepper
698
+ ½ cup water
699
+ ½ cup bread crumbs
700
+ 1 tablespoon butter
701
+ 1 egg, slightly beaten with 1½ tablespoons cold water
702
+ 1 can Campbell’s Cream of Mushroom Soup
703
+ 2 tablespoons chopped pimiento
704
+
705
+ Chop spaghetti fine. Mix with beaten egg, flaked tuna fish, salt and
706
+ pepper. Shape into cakes and dip in crumbs, then in egg and again in
707
+ crumbs. Chill in refrigerator 20 minutes. Fry in hot fat (375° F.) 1
708
+ inch deep in heavy frying pan. Drain on absorbent paper. For sauce add
709
+ water to Campbell’s Cream of Mushroom Soup and heat with butter and
710
+ pimientos. Serve hot with tuna cakes.
711
+
712
+
713
+
714
+
715
+ CASSEROLE OF TONGUE
716
+ _Unusually tasty_
717
+
718
+
719
+ 1 teaspoon prepared mustard
720
+ 1 teaspoon onion juice
721
+ ¾ teaspoon salt
722
+ 1 tablespoon chopped parsley
723
+ 1 cup ground tongue
724
+ 1 can Franco-American Spaghetti
725
+ ¼ cup water
726
+ Buttered bread crumbs
727
+
728
+ Mix seasonings with ground tongue. Then mix with spaghetti and water.
729
+ Arrange in greased baking dish and cover with buttered crumbs. Bake 25
730
+ minutes in moderately hot oven (375° F.) till heated through and brown
731
+ on top. Delicious with spinach and buttered carrots. Serve pineapple
732
+ gelatine with whipped cream for dessert.
733
+
734
+
735
+
736
+
737
+ STUFFED PORK CHOPS
738
+ _with savory spaghetti_
739
+
740
+
741
+ 4 pork chops, cut 1¾ in. thick
742
+ 1 can Franco-American Spaghetti, chopped
743
+ 3 tablespoons diced green pepper
744
+ 1 teaspoon onion juice
745
+ 1 tablespoon melted butter
746
+
747
+ Split lean meat in half, cutting to bone. Mix remaining ingredients
748
+ thoroughly and stuff chops. Draw edges together with one or two
749
+ toothpicks and dip in flour well seasoned with salt and pepper. Arrange
750
+ in greased baking pan, with remaining spaghetti mixture around chops,
751
+ and bake in a hot oven (400° F.) 40 minutes, turning once. Serve with
752
+ broccoli and Harvard beets; lemon meringue pie for dessert.
753
+
754
+ [Illustration: YES INDEED, MADAM I CAN CERTAINLY RECOMMEND
755
+ FRANCO-AMERICAN]
756
+
757
+
758
+
759
+
760
+ JIFFY CHOP PLATE
761
+ _As zestful as it looks!_
762
+
763
+
764
+ 1¼ lbs. sausage cakes or 1 to 1¼ lbs. chopped beef
765
+ 1 teaspoon salt
766
+ ⅛ teaspoon pepper
767
+ 2 teaspoons minced onion
768
+ 2 cans Franco-American Spaghetti
769
+ Brussels sprouts, peas or asparagus tips
770
+
771
+ Fry sausage cakes. Or if beef cakes are preferred, mix chopped beef and
772
+ seasonings, shape into 8 cakes and panbroil. Meanwhile heat
773
+ Franco-American Spaghetti and cook whichever vegetable is desired. Heap
774
+ spaghetti in center of a chop plate or large platter. Around it
775
+ alternate meat cakes and small mounds of vegetables. Garnish with
776
+ parsley. Serve with a green salad; lemon tarts and coffee for dessert.
777
+
778
+ [Illustration: NO WONDER THE SAUCE IS SO GOOD. ELEVEN COSTLY
779
+ INGREDIENTS!]
780
+
781
+
782
+
783
+
784
+ FRANCO STEAK CASSEROLE
785
+ _A savory dinner for four hungry people_
786
+
787
+
788
+ ¼ cup flour
789
+ 2 teaspoons salt
790
+ 1½ teaspoons paprika
791
+ ½ teaspoon pepper
792
+ 1 lb. round steak, cut in serving pieces
793
+ ⅓ cup fat
794
+ 2 medium-sized onions, sliced
795
+ 2 cans Franco-American Spaghetti
796
+ 1 cup cooked tomatoes, strained
797
+ 1 cup hot water
798
+
799
+ Mix flour with seasonings and roll steak in it. Brown onions a little in
800
+ hot fat and add to tomatoes. Sear meat quickly and put in large greased
801
+ casserole. Place spaghetti, tomatoes and onions on meat.
802
+
803
+ Blend remaining seasoned flour with fat in pan until smooth. Add hot
804
+ water gradually, stirring till smooth. Strain over casserole mixture and
805
+ cook in moderate oven (350° F.) for 1½ hours, or till meat is tender.
806
+
807
+
808
+
809
+
810
+ A delicious hot meal packed full of nourishment
811
+
812
+
813
+ [Illustration: uncaptioned]
814
+
815
+ You know how hard it is to find a food that your children will like, and
816
+ which is really good for them.
817
+
818
+ Franco-American Spaghetti is just that. It is packed with
819
+ nourishment—rich in proteins to build bone and muscle, and in
820
+ carbohydrates for quick energy.
821
+
822
+ Hundreds of letters from mothers tell us that their children are quick
823
+ to see the difference between Franco-American and every other
824
+ ready-cooked spaghetti. Once your family has enjoyed the tasty
825
+ deliciousness of Franco-American Spaghetti—with the extra-good
826
+ sauce—they won’t be satisfied with anything else.
827
+
828
+ [Illustration: uncaptioned]
829
+
830
+ Franco-American
831
+ SPAGHETTI
832
+ À LA MILANAISE
833
+ (TOMATO SAUCE WITH CHEESE)
834
+
835
+ THE FRANCO-AMERICAN FOOD COMPANY DIVISION
836
+ CAMPBELL SOUP COMPANY
837
+ GENERAL OFFICES, CAMDEN, N.J. U S A
838
+
839
+
840
+ BE SURE YOU GET
841
+ Franco-American—
842
+ THE KIND WITH THE
843
+ _extra good sauce_
844
+
845
+
846
+
847
+
848
+ TRANSCRIBER’S NOTES
849
+
850
+
851
+ —Silently corrected a few typos.
852
+
853
+ —Retained publication information from the printed edition: this eBook
854
+ is public-domain in the country of publication.
855
+
856
+ —In the text versions only, text in italics is delimited by
857
+ _underscores_.
858
+
859
+
860
+
861
+ *** END OF THE PROJECT GUTENBERG EBOOK 30 TEMPTING SPAGHETTI
862
+ MEALS ***
863
+
864
+ Updated editions will replace the previous one--the old editions will
865
+ be renamed.
866
+
867
+ Creating the works from print editions not protected by U.S. copyright
868
+ law means that no one owns a United States copyright in these works,
869
+ so the Foundation (and you!) can copy and distribute it in the
870
+ United States without permission and without paying copyright
871
+ royalties. Special rules, set forth in the General Terms of Use part
872
+ of this license, apply to copying and distributing Project
873
+ Gutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm
874
+ concept and trademark. Project Gutenberg is a registered trademark,
875
+ and may not be used if you charge for an eBook, except by following
876
+ the terms of the trademark license, including paying royalties for use
877
+ of the Project Gutenberg trademark. If you do not charge anything for
878
+ copies of this eBook, complying with the trademark license is very
879
+ easy. You may use this eBook for nearly any purpose such as creation
880
+ of derivative works, reports, performances and research. Project
881
+ Gutenberg eBooks may be modified and printed and given away--you may
882
+ do practically ANYTHING in the United States with eBooks not protected
883
+ by U.S. copyright law. Redistribution is subject to the trademark
884
+ license, especially commercial redistribution.
885
+
886
+ START: FULL LICENSE
887
+
888
+ THE FULL PROJECT GUTENBERG LICENSE
889
+ PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
890
+
891
+ To protect the Project Gutenberg-tm mission of promoting the free
892
+ distribution of electronic works, by using or distributing this work
893
+ (or any other work associated in any way with the phrase "Project
894
+ Gutenberg"), you agree to comply with all the terms of the Full
895
+ Project Gutenberg-tm License available with this file or online at
896
+ www.gutenberg.org/license.
897
+
898
+ Section 1. General Terms of Use and Redistributing Project
899
+ Gutenberg-tm electronic works
900
+
901
+ 1.A. By reading or using any part of this Project Gutenberg-tm
902
+ electronic work, you indicate that you have read, understand, agree to
903
+ and accept all the terms of this license and intellectual property
904
+ (trademark/copyright) agreement. If you do not agree to abide by all
905
+ the terms of this agreement, you must cease using and return or
906
+ destroy all copies of Project Gutenberg-tm electronic works in your
907
+ possession. If you paid a fee for obtaining a copy of or access to a
908
+ Project Gutenberg-tm electronic work and you do not agree to be bound
909
+ by the terms of this agreement, you may obtain a refund from the
910
+ person or entity to whom you paid the fee as set forth in paragraph
911
+ 1.E.8.
912
+
913
+ 1.B. "Project Gutenberg" is a registered trademark. It may only be
914
+ used on or associated in any way with an electronic work by people who
915
+ agree to be bound by the terms of this agreement. There are a few
916
+ things that you can do with most Project Gutenberg-tm electronic works
917
+ even without complying with the full terms of this agreement. See
918
+ paragraph 1.C below. There are a lot of things you can do with Project
919
+ Gutenberg-tm electronic works if you follow the terms of this
920
+ agreement and help preserve free future access to Project Gutenberg-tm
921
+ electronic works. See paragraph 1.E below.
922
+
923
+ 1.C. The Project Gutenberg Literary Archive Foundation ("the
924
+ Foundation" or PGLAF), owns a compilation copyright in the collection
925
+ of Project Gutenberg-tm electronic works. Nearly all the individual
926
+ works in the collection are in the public domain in the United
927
+ States. If an individual work is unprotected by copyright law in the
928
+ United States and you are located in the United States, we do not
929
+ claim a right to prevent you from copying, distributing, performing,
930
+ displaying or creating derivative works based on the work as long as
931
+ all references to Project Gutenberg are removed. Of course, we hope
932
+ that you will support the Project Gutenberg-tm mission of promoting
933
+ free access to electronic works by freely sharing Project Gutenberg-tm
934
+ works in compliance with the terms of this agreement for keeping the
935
+ Project Gutenberg-tm name associated with the work. You can easily
936
+ comply with the terms of this agreement by keeping this work in the
937
+ same format with its attached full Project Gutenberg-tm License when
938
+ you share it without charge with others.
939
+
940
+ 1.D. The copyright laws of the place where you are located also govern
941
+ what you can do with this work. Copyright laws in most countries are
942
+ in a constant state of change. If you are outside the United States,
943
+ check the laws of your country in addition to the terms of this
944
+ agreement before downloading, copying, displaying, performing,
945
+ distributing or creating derivative works based on this work or any
946
+ other Project Gutenberg-tm work. The Foundation makes no
947
+ representations concerning the copyright status of any work in any
948
+ country other than the United States.
949
+
950
+ 1.E. Unless you have removed all references to Project Gutenberg:
951
+
952
+ 1.E.1. The following sentence, with active links to, or other
953
+ immediate access to, the full Project Gutenberg-tm License must appear
954
+ prominently whenever any copy of a Project Gutenberg-tm work (any work
955
+ on which the phrase "Project Gutenberg" appears, or with which the
956
+ phrase "Project Gutenberg" is associated) is accessed, displayed,
957
+ performed, viewed, copied or distributed:
958
+
959
+ This eBook is for the use of anyone anywhere in the United States and
960
+ most other parts of the world at no cost and with almost no
961
+ restrictions whatsoever. You may copy it, give it away or re-use it
962
+ under the terms of the Project Gutenberg License included with this
963
+ eBook or online at www.gutenberg.org. If you are not located in the
964
+ United States, you will have to check the laws of the country where
965
+ you are located before using this eBook.
966
+
967
+ 1.E.2. If an individual Project Gutenberg-tm electronic work is
968
+ derived from texts not protected by U.S. copyright law (does not
969
+ contain a notice indicating that it is posted with permission of the
970
+ copyright holder), the work can be copied and distributed to anyone in
971
+ the United States without paying any fees or charges. If you are
972
+ redistributing or providing access to a work with the phrase "Project
973
+ Gutenberg" associated with or appearing on the work, you must comply
974
+ either with the requirements of paragraphs 1.E.1 through 1.E.7 or
975
+ obtain permission for the use of the work and the Project Gutenberg-tm
976
+ trademark as set forth in paragraphs 1.E.8 or 1.E.9.
977
+
978
+ 1.E.3. If an individual Project Gutenberg-tm electronic work is posted
979
+ with the permission of the copyright holder, your use and distribution
980
+ must comply with both paragraphs 1.E.1 through 1.E.7 and any
981
+ additional terms imposed by the copyright holder. Additional terms
982
+ will be linked to the Project Gutenberg-tm License for all works
983
+ posted with the permission of the copyright holder found at the
984
+ beginning of this work.
985
+
986
+ 1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm
987
+ License terms from this work, or any files containing a part of this
988
+ work or any other work associated with Project Gutenberg-tm.
989
+
990
+ 1.E.5. Do not copy, display, perform, distribute or redistribute this
991
+ electronic work, or any part of this electronic work, without
992
+ prominently displaying the sentence set forth in paragraph 1.E.1 with
993
+ active links or immediate access to the full terms of the Project
994
+ Gutenberg-tm License.
995
+
996
+ 1.E.6. You may convert to and distribute this work in any binary,
997
+ compressed, marked up, nonproprietary or proprietary form, including
998
+ any word processing or hypertext form. However, if you provide access
999
+ to or distribute copies of a Project Gutenberg-tm work in a format
1000
+ other than "Plain Vanilla ASCII" or other format used in the official
1001
+ version posted on the official Project Gutenberg-tm website
1002
+ (www.gutenberg.org), you must, at no additional cost, fee or expense
1003
+ to the user, provide a copy, a means of exporting a copy, or a means
1004
+ of obtaining a copy upon request, of the work in its original "Plain
1005
+ Vanilla ASCII" or other form. Any alternate format must include the
1006
+ full Project Gutenberg-tm License as specified in paragraph 1.E.1.
1007
+
1008
+ 1.E.7. Do not charge a fee for access to, viewing, displaying,
1009
+ performing, copying or distributing any Project Gutenberg-tm works
1010
+ unless you comply with paragraph 1.E.8 or 1.E.9.
1011
+
1012
+ 1.E.8. You may charge a reasonable fee for copies of or providing
1013
+ access to or distributing Project Gutenberg-tm electronic works
1014
+ provided that:
1015
+
1016
+ * You pay a royalty fee of 20% of the gross profits you derive from
1017
+ the use of Project Gutenberg-tm works calculated using the method
1018
+ you already use to calculate your applicable taxes. The fee is owed
1019
+ to the owner of the Project Gutenberg-tm trademark, but he has
1020
+ agreed to donate royalties under this paragraph to the Project
1021
+ Gutenberg Literary Archive Foundation. Royalty payments must be paid
1022
+ within 60 days following each date on which you prepare (or are
1023
+ legally required to prepare) your periodic tax returns. Royalty
1024
+ payments should be clearly marked as such and sent to the Project
1025
+ Gutenberg Literary Archive Foundation at the address specified in
1026
+ Section 4, "Information about donations to the Project Gutenberg
1027
+ Literary Archive Foundation."
1028
+
1029
+ * You provide a full refund of any money paid by a user who notifies
1030
+ you in writing (or by e-mail) within 30 days of receipt that s/he
1031
+ does not agree to the terms of the full Project Gutenberg-tm
1032
+ License. You must require such a user to return or destroy all
1033
+ copies of the works possessed in a physical medium and discontinue
1034
+ all use of and all access to other copies of Project Gutenberg-tm
1035
+ works.
1036
+
1037
+ * You provide, in accordance with paragraph 1.F.3, a full refund of
1038
+ any money paid for a work or a replacement copy, if a defect in the
1039
+ electronic work is discovered and reported to you within 90 days of
1040
+ receipt of the work.
1041
+
1042
+ * You comply with all other terms of this agreement for free
1043
+ distribution of Project Gutenberg-tm works.
1044
+
1045
+ 1.E.9. If you wish to charge a fee or distribute a Project
1046
+ Gutenberg-tm electronic work or group of works on different terms than
1047
+ are set forth in this agreement, you must obtain permission in writing
1048
+ from the Project Gutenberg Literary Archive Foundation, the manager of
1049
+ the Project Gutenberg-tm trademark. Contact the Foundation as set
1050
+ forth in Section 3 below.
1051
+
1052
+ 1.F.
1053
+
1054
+ 1.F.1. Project Gutenberg volunteers and employees expend considerable
1055
+ effort to identify, do copyright research on, transcribe and proofread
1056
+ works not protected by U.S. copyright law in creating the Project
1057
+ Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm
1058
+ electronic works, and the medium on which they may be stored, may
1059
+ contain "Defects," such as, but not limited to, incomplete, inaccurate
1060
+ or corrupt data, transcription errors, a copyright or other
1061
+ intellectual property infringement, a defective or damaged disk or
1062
+ other medium, a computer virus, or computer codes that damage or
1063
+ cannot be read by your equipment.
1064
+
1065
+ 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right
1066
+ of Replacement or Refund" described in paragraph 1.F.3, the Project
1067
+ Gutenberg Literary Archive Foundation, the owner of the Project
1068
+ Gutenberg-tm trademark, and any other party distributing a Project
1069
+ Gutenberg-tm electronic work under this agreement, disclaim all
1070
+ liability to you for damages, costs and expenses, including legal
1071
+ fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
1072
+ LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE
1073
+ PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE
1074
+ TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE
1075
+ LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR
1076
+ INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH
1077
+ DAMAGE.
1078
+
1079
+ 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a
1080
+ defect in this electronic work within 90 days of receiving it, you can
1081
+ receive a refund of the money (if any) you paid for it by sending a
1082
+ written explanation to the person you received the work from. If you
1083
+ received the work on a physical medium, you must return the medium
1084
+ with your written explanation. The person or entity that provided you
1085
+ with the defective work may elect to provide a replacement copy in
1086
+ lieu of a refund. If you received the work electronically, the person
1087
+ or entity providing it to you may choose to give you a second
1088
+ opportunity to receive the work electronically in lieu of a refund. If
1089
+ the second copy is also defective, you may demand a refund in writing
1090
+ without further opportunities to fix the problem.
1091
+
1092
+ 1.F.4. Except for the limited right of replacement or refund set forth
1093
+ in paragraph 1.F.3, this work is provided to you 'AS-IS', WITH NO
1094
+ OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
1095
+ LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.
1096
+
1097
+ 1.F.5. Some states do not allow disclaimers of certain implied
1098
+ warranties or the exclusion or limitation of certain types of
1099
+ damages. If any disclaimer or limitation set forth in this agreement
1100
+ violates the law of the state applicable to this agreement, the
1101
+ agreement shall be interpreted to make the maximum disclaimer or
1102
+ limitation permitted by the applicable state law. The invalidity or
1103
+ unenforceability of any provision of this agreement shall not void the
1104
+ remaining provisions.
1105
+
1106
+ 1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the
1107
+ trademark owner, any agent or employee of the Foundation, anyone
1108
+ providing copies of Project Gutenberg-tm electronic works in
1109
+ accordance with this agreement, and any volunteers associated with the
1110
+ production, promotion and distribution of Project Gutenberg-tm
1111
+ electronic works, harmless from all liability, costs and expenses,
1112
+ including legal fees, that arise directly or indirectly from any of
1113
+ the following which you do or cause to occur: (a) distribution of this
1114
+ or any Project Gutenberg-tm work, (b) alteration, modification, or
1115
+ additions or deletions to any Project Gutenberg-tm work, and (c) any
1116
+ Defect you cause.
1117
+
1118
+ Section 2. Information about the Mission of Project Gutenberg-tm
1119
+
1120
+ Project Gutenberg-tm is synonymous with the free distribution of
1121
+ electronic works in formats readable by the widest variety of
1122
+ computers including obsolete, old, middle-aged and new computers. It
1123
+ exists because of the efforts of hundreds of volunteers and donations
1124
+ from people in all walks of life.
1125
+
1126
+ Volunteers and financial support to provide volunteers with the
1127
+ assistance they need are critical to reaching Project Gutenberg-tm's
1128
+ goals and ensuring that the Project Gutenberg-tm collection will
1129
+ remain freely available for generations to come. In 2001, the Project
1130
+ Gutenberg Literary Archive Foundation was created to provide a secure
1131
+ and permanent future for Project Gutenberg-tm and future
1132
+ generations. To learn more about the Project Gutenberg Literary
1133
+ Archive Foundation and how your efforts and donations can help, see
1134
+ Sections 3 and 4 and the Foundation information page at
1135
+ www.gutenberg.org
1136
+
1137
+ Section 3. Information about the Project Gutenberg Literary
1138
+ Archive Foundation
1139
+
1140
+ The Project Gutenberg Literary Archive Foundation is a non-profit
1141
+ 501(c)(3) educational corporation organized under the laws of the
1142
+ state of Mississippi and granted tax exempt status by the Internal
1143
+ Revenue Service. The Foundation's EIN or federal tax identification
1144
+ number is 64-6221541. Contributions to the Project Gutenberg Literary
1145
+ Archive Foundation are tax deductible to the full extent permitted by
1146
+ U.S. federal laws and your state's laws.
1147
+
1148
+ The Foundation's business office is located at 809 North 1500 West,
1149
+ Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up
1150
+ to date contact information can be found at the Foundation's website
1151
+ and official page at www.gutenberg.org/contact
1152
+
1153
+ Section 4. Information about Donations to the Project Gutenberg
1154
+ Literary Archive Foundation
1155
+
1156
+ Project Gutenberg-tm depends upon and cannot survive without
1157
+ widespread public support and donations to carry out its mission of
1158
+ increasing the number of public domain and licensed works that can be
1159
+ freely distributed in machine-readable form accessible by the widest
1160
+ array of equipment including outdated equipment. Many small donations
1161
+ ($1 to $5,000) are particularly important to maintaining tax exempt
1162
+ status with the IRS.
1163
+
1164
+ The Foundation is committed to complying with the laws regulating
1165
+ charities and charitable donations in all 50 states of the United
1166
+ States. Compliance requirements are not uniform and it takes a
1167
+ considerable effort, much paperwork and many fees to meet and keep up
1168
+ with these requirements. We do not solicit donations in locations
1169
+ where we have not received written confirmation of compliance. To SEND
1170
+ DONATIONS or determine the status of compliance for any particular
1171
+ state visit www.gutenberg.org/donate
1172
+
1173
+ While we cannot and do not solicit contributions from states where we
1174
+ have not met the solicitation requirements, we know of no prohibition
1175
+ against accepting unsolicited donations from donors in such states who
1176
+ approach us with offers to donate.
1177
+
1178
+ International donations are gratefully accepted, but we cannot make
1179
+ any statements concerning tax treatment of donations received from
1180
+ outside the United States. U.S. laws alone swamp our small staff.
1181
+
1182
+ Please check the Project Gutenberg web pages for current donation
1183
+ methods and addresses. Donations are accepted in a number of other
1184
+ ways including checks, online payments and credit card donations. To
1185
+ donate, please visit: www.gutenberg.org/donate
1186
+
1187
+ Section 5. General Information About Project Gutenberg-tm electronic works
1188
+
1189
+ Professor Michael S. Hart was the originator of the Project
1190
+ Gutenberg-tm concept of a library of electronic works that could be
1191
+ freely shared with anyone. For forty years, he produced and
1192
+ distributed Project Gutenberg-tm eBooks with only a loose network of
1193
+ volunteer support.
1194
+
1195
+ Project Gutenberg-tm eBooks are often created from several printed
1196
+ editions, all of which are confirmed as not protected by copyright in
1197
+ the U.S. unless a copyright notice is included. Thus, we do not
1198
+ necessarily keep eBooks in compliance with any particular paper
1199
+ edition.
1200
+
1201
+ Most people start at our website which has the main PG search
1202
+ facility: www.gutenberg.org
1203
+
1204
+ This website includes information about Project Gutenberg-tm,
1205
+ including how to make donations to the Project Gutenberg Literary
1206
+ Archive Foundation, how to help produce our new eBooks, and how to
1207
+ subscribe to our email newsletter to hear about new eBooks.