-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
755 lines (675 loc) · 44.3 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<!-- Counter.Dev Analytics -->
<script>if(!sessionStorage.getItem("_swa")&&document.referrer.indexOf(location.protocol+"//"+location.host)!== 0){fetch("https://counter.dev/track?"+new URLSearchParams({referrer:document.referrer,screen:screen.width+"x"+screen.height,user:"octogon",utcoffset:"-7"}))};sessionStorage.setItem("_swa","1");</script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- BEGIN FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#dcdd19">
<meta name="msapplication-TileColor" content="#0c5e64">
<meta name="theme-color" content="#0c5e64">
<!-- END FAVICON -->
<title>The Occidental Language</title>
<meta name="description" content="Occidental is an international auxiliary language created by Edgar de Wahl in 1922. This is an unofficial website intended to advertise Occidental and aggregate modern resources from the whole Occidental community.">
<meta property="og:type" content="website" />
<meta property="og:title" content="The Occidental Language" />
<meta property="og:description" content="Occidental is an international auxiliary language created by Edgar de Wahl in 1922. This is an unofficial website intended to advertise Occidental and aggregate modern resources from the whole Occidental community." />
<meta property="og:url" content="https://occidental-lang.com/" />
<meta property="og:image" content="https://occidental-lang.com/img/occidental-logo2.png" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css?family=Merriweather|Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<!-- BEGIN CUSTOM FONT AND STYLE -->
<style>
</style>
<!-- END CUSTOM FONT AND STYLE -->
<!-- BEGIN NAV BAR -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<img alt="Brand" src="img/logo.png" width="25px" height="25px">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#getStarted">Get Started <span class="sr-only">(current)</span></a></li>
<li><a href="#about">About</a></li>
<li><a href="#learn">Learn</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#read">Read</a></li>
<li><a href="#channels">Channels</a></li>
<li><a href="#community">Community</a></li>
<li><a href="#faqs">FAQs</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- END NAV BAR -->
<!-- BEGIN JUMBO -->
<div class="jumbotron text-center">
<div class="container">
<div class="row">
<h1>Occidental</h1>
<img src="img/logo.png" alt="Occidental logo" width="200px">
<h2>Li lingue comun del occidente</h2>
<hr/>
<div>
<p style="font-size:18px;">Benevenit ad un compendie de information pri Occidental, li lingue comun inter omni lingues del occidente. It esset creat de Edgar de Wahl in 1922 por esser un international auxiliari lingue. Hodíe ti lingue es por quicunc quel es interessat!</p>
<p style="font-size:18px; color:grey;">Welcome to a compendium of information about Occidental, the common language between all languages of the occident. It was created by Edgar de Wahl in 1922 to be an international auxiliary language. Today this language is for anyone who is interested!</p>
</div>
</div>
</div>
</div>
<!-- END JUMBO -->
<!-- BEGIN Get Started -->
<div id="getStarted" class="container">
<div class="row">
<h2 class="text-center">Get Started</h2>
</div>
<div class="container" >
<div class="row text-center">
<div class="col-md-4">
<a href="https://en.wikibooks.org/wiki/Salute,_Jonathan!">
<div class="linkBlob" style="border-radius: 50% 20% / 10% 40%;">
<h2>1.</h2>
<img src="img/draculaLightning.gif" class="center-block img-responsive" alt="ominous castle with lightning" style="border-radius: 20% 50% / 40% 10%;">
<h4>Learn <em>naturally</em> with <strong>Salute, Jonathan!</strong></h4>
</div>
</a>
</div>
<div class="col-md-4">
<a href="https://occidental-lang.com/dictionaries">
<div class="linkBlob" style="border-radius: 10% 40% / 50% 20%;">
<h2>2.</h2>
<img src="img/gandalfReading.gif" class="center-block img-responsive" alt="wizard reading" style="border-radius: 40% 10% / 20% 50%;">
<h4>Search the dictionary in <em>multiple languages</em>!</h4>
</div>
</a>
</div>
<div class="col-md-4">
<a href="#community">
<div class="linkBlob" style="border-radius: 20% 50% / 40% 10%;">
<h2>3.</h2>
<img src="img/typingYouveGotMail.gif" class="center-block img-responsive" alt="crazy person typing" style="border-radius: 50% 20% / 10% 40%;">
<h4>Talk to others in the community!</h4>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- END Get Started -->
<!-- BEGIN WHAT IS -->
<div id="about" class="container">
<div class="row">
<h2 class="text-center">What is Occidental?</h2>
</div>
<div class="container ">
<div class="row text-center">
<div class="col-md-3"></div>
<div class="col-md-6 myWell" style="border-radius: 40% 10% / 20% 50%;">
<p>The best way to think of Occidental is as a tidied-up common Western European. It's the French or the Spanish you wish you had learned in school, because it keeps the common vocabulary but removes the parts that make them difficult. For example, to form the simple past tense you change the <strong>r</strong> in the verb to a <strong>t</strong>. And to form the simple future tense, you put a <strong>va</strong> in front of it.</p>
<p>Yes, you just finished learning the simple past and future tenses. Try doing that in two sentences with a natural language.</p>
<p>But because it's a tidied-up common Western European, it also looks like it. English <strong>liberty</strong> and French <strong>liberté</strong> is <strong>libertá</strong>, English <strong>moon</strong> and Spanish <strong>luna</strong> is <strong>lune</strong> (think <strong>lunar</strong>), English <strong>sit</strong> and Italian <strong>sedere</strong> is <strong>seder</strong> (think <strong>sedentary</strong>).</p>
<p>It was created in 1922 in Tallinn, Estonia, reached its height in Europe just before World War II, went into decline and nearly died in the 1980s after which it came back to life.</p>
<p>See <a href="https://en.wikipedia.org/wiki/Interlingue">Wikipedia</a> for more.</p>
</div>
<div class="col-md-3"></div>
</div>
</div>
</div>
<!-- END WHAT IS -->
<!-- BEGIN LEARN -->
<div id="learn" class="container">
<div class="row">
<h2 class="text-center">Learn</h2>
</div>
<div class="container myWell" style="border-radius: 20% 50% / 40% 10%;">
<div class="row text-center">
<div class="col-md-3">
<a href="https://en.wikibooks.org/wiki/Salute,_Jonathan!">
<img src="img/wikibooks-logo.png" alt="wikibooks logo" height="50px" class="img-circle">
<p><em>Salute, Jonathan!</em> Natural Acquisition Course</p>
</a>
</div>
<div class="col-md-3">
<a href="https://www.memrise.com/course/5677798/salute-jonathan-un-occidental-interlingue-cursu/">
<img src="img/memrise-logo.jpg" alt="memrise logo" height="50px" class="img-circle">
<p><em>Salute, Jonathan!</em> Memrise Flashcards</p>
</a>
</div>
<div class="col-md-3">
<a href="resources/OccidentalCourseIn10Lessons-EnglishTranslation.pdf">
<img src="img/logowerner.png" alt="occidental old logo" height="50px" class="img-circle">
<p>Occidental Course in 10 Lessons (1929, updated 2019)</p>
</a>
</div>
<div class="col-md-3">
<a href="https://occidental-lang.com/Grammatica-de-Interlingue/">
<img src="img/logo.png" alt="occidental logo" height="50px" class="img-circle">
<p>Grammatica de Interlingue by Dr. Fritz Haas</p>
</a>
<a href="https://www.lulu.com/shop/fritz-haas-and-benedict-robinson-and-s-belitzky/grammatica-de-interlingue/paperback/product-d2kn8e.html">
<p style="color:red;">Buy a pocket-sized physical copy!</p>
</a>
</div>
</div>
<div class="row text-center">
<div class="col-md-3">
<a href="resources/cursberger.pdf">
<img src="img/logo.png" alt="occidental logo" height="50px" class="img-circle">
<p>Curs de Occidental (Interlingue) by Ric Berger</p>
</a>
</div>
<div class="col-md-3">
<a href="resources/LOccidental_-_Langue_dintercomprehension_immediate.pdf">
<img src="img/logowerner.png" alt="occidental old logo" height="50px" class="img-circle">
<p>L'OCCIDENTAL - Langue d'intercompréhension immédiate</p>
</a>
</div>
<div class="col-md-3">
<a href="https://ikindalikelanguages.com/labs/courses.php?id=92">
<img src="img/IKLL.png" alt="I Kinda Like Languages logo" height="50px" class="img-circle">
<p>Occidental for English Speakers - Thinking Method Course</p>
</a>
</div>
<div class="col-md-3">
<a href="https://occidental-lang.com/interlingue-for-beginners/">
<img src="https://occidental-lang.com/interlingue-for-beginners/cover.png" alt="Interlingue for Beginners cover art" height="50px" class="img-circle">
<p>INTERLINGUE FOR BEGINNERS by Wilfrid E. Reeve (1966)</p>
</a>
</div>
<div class="col-md-3">
<a href="https://occidental-lang.com/Manual-de-Conversation-e-Correspondentie/">
<img src="img/logowerner.png" alt="occidental old logo" height="50px" class="img-circle">
<p>Manual de Conversation e Corespondentie</p>
</a>
</div>
</div>
</div>
</div>
<!-- END LEARN -->
<!-- BEGIN TOOLS -->
<div id="tools" class="container">
<div class="row">
<h2 class="text-center">Tools</h2>
</div>
<div class="container myWell" style="border-radius: 20% 50% / 40% 10%;">
<div class="row text-center">
<div class="col-md-3">
<a href="https://occidental-lang.com/dictionaries/">
<img src="img/occidental-logo2.png" alt="Occidental old style logo" height="50px" class="img-circle">
<p>Community Dictionaries with Search</p>
</a>
</div>
<div class="col-md-3">
<a href="https://glosbe.com/ie/en">
<img src="img/glosbe-logo.png" alt="glosbe logo" height="50px" class="img-circle">
<p>Glosbe dictionary + translation</p>
</a>
</div>
<div class="col-md-3">
<a href="https://interlingue.2038.io/wikipedia-search/">
<img src="https://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" alt="glosbe logo" height="50px" class="img-circle">
<p>Search Wikipedia for examples texts</p>
</a>
</div>
<div class="col-md-3">
<a href="https://dhghomon.github.io/dictionariums/">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Rust_programming_language_black_logo.svg/1024px-Rust_programming_language_black_logo.svg.png" alt="glosbe logo" height="50px" class="img-circle">
<p>Search Cosmoglotta and dictionaries more for example texts</p>
</a>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<a href="https://occidental-lang.com/derive-from-verb/">
<img src="img/occidental-logo2.png" alt="Occidental old style logo" height="50px" class="img-circle">
<p>Verb Derivation Tool</p>
</a>
</div>
<div class="col-md-4">
<a href="https://tatoeba.org/eng/Sentences/show_all_in/ile/none">
<img src="img/tatoeba.png" alt="Tatoeba logo" height="50px" class="img-circle">
<p>Tatoeba phrase translations</p>
</a>
</div>
<div class="col-md-4">
<a href="https://addons.mozilla.org/en-US/firefox/addon/interlingue-spell-checker/">
<img src="img/firefox-logo.png" alt="firefox logo" height="50px" class="img-circle">
<p>Interlingue spellchecker for Firefox</p>
</a>
</div>
</div>
</div>
</div>
<!-- END TOOLS -->
<!-- BEGIN READ -->
<div id="read" class="container">
<div class="row">
<h2 class="text-center">Read</h2>
</div>
<div class="container myWell" style="border-radius: 40% 10% / 20% 50%;">
<div class="row text-center">
<div class="col-md-4">
<h3>Cosmoglotta</h3>
<ul class="list-unstyled">
<li><a href="https://occidental-lang.com/cosmoglotta/">Cosmoglotta (1927-1950, typed with updated orthography)</a></li>
<li><a href="https://web.archive.org/web/20231211031219/https://www.ie-munde.com/cosmoglotta.html">Modern Cosmoglotta (~2014)</a> (example issue from <a href="resources/Cg_328_2021_2.pdf">December 2021</a>)</li>
</ul>
</div>
<div class="col-md-4">
<h3>
Helvetia
</h3>
<ul class="list-unstyled">
<li><a href="http://cosmoglotta.pbworks.com/w/page/130687236/FrontPage">Helvetia (typed)</a></li>
<li><a href="http://digital.onb.ac.at/RepViewer/viewer.faces?doc=DTL_7647877&order=1&view=SINGLE">1928</a></li>
<li><a href="http://digital.onb.ac.at/RepViewer/viewer.faces?doc=DTL_7682565&order=1&view=SINGLE">1929</a></li>
<li><a href="http://digital.onb.ac.at/RepViewer/viewer.faces?doc=DTL_7627231&order=1&view=SINGLE">1930-1950</a></li>
</ul>
</div>
<div class="col-md-4">
<h3>Li Jurnal IE-Munde</h3>
<p><a href="https://web.archive.org/web/20231211032038/https://www.ie-munde.com/jurnal-ie-munde.html">2010-2014</a></p>
<h3>German Occidentalist</h3>
<p><a href="https://occidental-lang.com/german-occidentalist/">1933-1935</a></p>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<a href="https://www.peppercarrot.com/ie/article234/potion-of-flight">
<img src="img/PepperCarrot.jpg" alt="Pepper & Carrot Logo" height="50px" class="img-circle">
<p>Pepper & Carrot webcomic</p>
</a>
</div>
<div class="col-md-4">
<h3>Story Translations (with lookup-on-highlight functionality)</h3>
<ul class="list-unstyled">
<li><a href="https://occidental-lang.com/photogen-e-nycteris/">The Day Boy and the Night Girl by George MacDonald</a></li>
<li><a href="https://occidental-lang.com/LiLittPrince/">The Little Prince</a></li>
</ul>
</div>
<div class="col-md-4">
<h3>Original Non-fiction</h3>
<ul class="list-unstyled">
<li><a href="resources/UniversalDeclarationdelJuresHoman.pdf">Universal Declaration del Jures Homan</a></li>
<li><a href="resources/Cultura_classic.pdf">Classic Culture by Vicente Costalago</a></li>
<li><a href="resources/Historie.pdf">History by Vicente Costalago</a></li>
<li><a href="resources/Geografie.pdf">Geography by Vicente Costalago</a></li>
<li><a href="resources/Mathematica.pdf">Mathematics by Vicente Costalago</a></li>
</ul>
</div>
</div>
<div class="row text-center">
<div class="col-md-6">
<h3>Original Fiction</h3>
<ul class="list-unstyled">
<li><a href="https://www.lulu.com/en/en/shop/vicente-costalago-v%C3%A1zquez/li-sercha-in-li-castelle-dewahl-e-altri-racontas/paperback/product-4gj9w8.html">
Li sercha in li castelle Dewahl e altri racontas by Vicente Costalago</a></li>
<li><a href="https://www.lulu.com/shop/vicente-costalago-v%C3%A1zquez/li-tresor-de-fluvglant/paperback/product-vdzdjk.html">Li tresor de Fluvglant by Vicente Costalago</a></li>
<li><a href="https://www.lulu.com/shop/vicente-costalago-vazquez/subuqti/paperback/product-r922ev.html">Subuqti by Vicente Costalago</a></li>
<li><a href="https://www.lulu.com/shop/vicente-costalago/heroicit%C3%A1s/paperback/product-655ppyz.html">Heroicitás by Vicente Costalago</a></li>
<li><a href="resources/Li_crimines_de_Cnocorran.pdf">Li Crimines de Cnocorran by Vicente Costalago</a></li>
<li><span style="color:red">New and free: </span><a href="https://archive.org/details/Reminiscenties">Reminiscenties by Vicente Costalago</a></li>
</ul>
</div>
<div class="col-md-6">
<a href="https://github.com/occidental-lang/occidental-lang.github.io/tree/master/resources">
<h3>Folder of random stuff to read</h3>
</a>
</div>
</div>
</div>
<!-- END READ -->
<!-- BEGIN CHANNELS -->
<div id="channels" class="container">
<div class="row">
<h2 class="text-center">Channels</h2>
</div>
<div class="container myWell" style="border-radius: 20% 50% / 40% 10%;">
<div class="row text-center">
<div class="col-md-4">
<a href="https://twitter.com/i/lists/1296096614231277568">
<img src="img/icon_twittercolors.png" alt="Occidental twitter list" height="50px" class="img-circle">
<p>Twitter List for accounts that use Occidental</p>
</a>
</div>
<div class="col-md-4">
<a href="https://www.facebook.com/occidental.lang">
<img src="img/fb-logo.png" alt="fb logo" height="50px" class="img-circle">
<p>Language Facebook Page</p>
</a>
</div>
<div class="col-md-4">
<a href="https://web.archive.org/web/20231211022359/https://www.ie-munde.com/benevenit.html">
<img src="img/logowerner.png" alt="official union logo" height="50px" class="img-circle">
<p>Official Language Union Website (archived)</p>
</a>
</div>
</div>
</div>
</div>
<!-- END CHANNELS -->
<!-- BEGIN COMMUNITY -->
<div id="community" class="container">
<div class="row">
<h2 class="text-center">Community</h2>
</div>
<div class="container myWell" style="border-radius: 30% 20% / 30% 40%;">
<div class="row text-center">
<h3>Forums</h3>
<div class="col-md-4">
<a href="https://www.facebook.com/groups/403123056383240/">
<img src="img/fb-logo.png" alt="facebook logo" height="50px" class="img-circle">
<p>Facebook Group</p>
</a>
</div>
<div class="col-md-4">
<a href="https://groups.io/g/interlingue">
<img style="background-color: darkblue;" src="img/groupsio.png" alt="groups.io logo" height="50px" class="img-circle">
<p>Email List</p>
</a>
</div>
<div class="col-md-4">
<a href="https://reddit.com/r/interlingue">
<img src="img/reddit-logo.png" alt="reddit logo" height="50px" class="img-circle">
<p>Subreddit</p>
</a>
</div>
</div>
<div class="row text-center">
<h3>Instant Messaging</h3>
<p><i><b>Note</b>: All of these chat rooms are bridged together via Matrix, so you only need to join one.</i></p>
<div class="col-md-4">
<a href="https://t.me/occidental_lang">
<img src="img/telegram.png" alt="telegram logo" height="50px" class="img-circle">
<p>Telegram</p>
</a>
</div>
<div class="col-md-4">
<a href="https://matrix.to/#/#occidental-lang:matrix.org">
<img src="img/matrix-logo.svg" alt="Matrix logo" height="50px" class="img-circle">
<p>Matrix</p>
</a>
</div>
<div class="col-md-4">
<a href="https://discord.gg/HDzAYU4">
<img src="img/Discord-Logo-Color.png" alt="discord logo" height="50px" class="img-circle">
<p>Discord</p>
</a>
</div>
</div>
</div>
</div>
<!-- END COMMUNITY -->
<!-- BEGIN FAQ -->
<div id="faqs" class="container">
<div class="row">
<h2 class="text-center">Frequently Asked Questions</h2>
</div>
<div class="container myWell" style="border-radius: 5% 10% / 5% 10%;" id="whyUnique">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#whyUnique">What about Interlingua, Esperanto, Lingwa de Planeta, and other Auxlangs? What sets Occidental apart from the rest?</a></strong></p>
</div>
<div class="col-md-8">
<p>All auxlangs are made with the best of intentions and deserve respect. Out of the hundreds and even thousands of proposed projects, the ones mentioned above are some of the very few that have ever managed to achieve an active user base, and that makes them unique.</p>
<p>Having said that, what makes Occidental unique is the following: </p>
<ul>
<li>It looks like a natural language. Most people conclude it must be a dialect similar to Catalan or Occitan, spoken in the area between Spain and France. And that means that:</li>
<li>It's remarkably easy to read. About one or two billion people can work their way through an Occidental text without ever having seen one before.</li>
<li>However, it's still a language created to be as easy as possible. It's a language that you can learn in a few weeks and come out knowing how to read a lot of related languages like Italian and French without having studied them before. And as the next question shows, you’ll come out knowing a lot more about English too.</li>
</ul>
<p>Some of the auxlangs above have an appearance as natural as Occidental, and others have a grammar as (and even a little bit more) regular. But no language has managed to blend a natural look and regular grammar as well as Occidental has. That's why it took its creator 30 years to put it together.</p>
</div>
</div>
<hr id="iala">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#iala">I learned about Interlingua first and Occidental (Interlingue) looks really similar to it. Why do people choose Occidental over Interlingua?</a></strong></p>
</div>
<div class="col-md-8">
<p>By and large it is a bad idea to talk down other planned languages. They all have their own adherents who join them for perfectly good reasons, and their own reasons for staying as well. Nevertheless, Occidental/Interlingu<b>e</b> and Interlingu<b>a</b> have such a close history that mentioning one often results in being questioned about the other.</p>
<p>There was a mass movement of Occidentalists to the well-funded and New York-based Interlingua in the 1950s (Occidental being poorly-funded and based in post-war Europe). Then there was a similar movement in the opposite direction after the advent of the internet. People who gave Esperanto a try, then gave naturalism a try with Interlingua, eventually discovered that it was Occidental that they were looking for all along.</p>
<p>Part of this comes from the passage of time: Europe is no longer a war-torn continent and <a href="https://en.wikipedia.org/wiki/Alice_Vanderbilt_Morris">the original funding for Interlingua</a> has long since dried up (along with the buzz it had in the 1950s). What is left are two languages with fairly active communities that are now only judged on their own merit.</p>
<p>So without getting into too much detail, Occidental is for many of us what we hoped Interlingua would be when we were first attracted to it - a planned language that is mostly understandable at first sight, charming and pleasant to look at and listen to, and regular and easy to learn.</p>
<p>What does regular and easy to learn mean? The clearest difference is probably seen in <a href="https://en.wikipedia.org/wiki/De_Wahl%27s_rule">De Wahl's Rule</a> which regularizes the creating of words from all verbs except six exceptions, while in Interlingua...the student has <a href="https://adoneilson.com/int/gi/append/double.html">a lot more to memorize</a>.</p>
<p>For more details, we will be adding articles from the old issues of Cosmoglotta in the 1950s as they are discovered. They can be seen below.</p>
<ul>
<li><a href="resources/LI-SPLITTRE-E-LI-TRAVE.pdf">THE MOTE AND THE BEAM (Schematism and naturalism in international languages)</a></li>
</ul>
</div>
</div>
<hr id="whyLearn">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#whyLearn">Why should I spend time learning Occidental instead of a natural language?</a></strong></p>
</div>
<div class="col-md-8">
<p>Occidental can be thought of as the simplified and tidied up quintessence of the Western European languages, or rather Europe’s Greco-Roman heritage. The common vocabulary is connected but hidden, and Occidental makes it visible. Take the word father for example. Why is it <strong>patre</strong> and not some other word? It’s because it serves the key role in words related to it that we all know.</p>
<dl class="dl-horizontal">
<dt>patre </dt> <dd>(<strong>patr</strong>·e) father</dd>
<dt>patria </dt><dd>(<strong>patr</strong>·ia) homeland (fatherland)</dd>
<dt>expatriate </dt><dd>(ex·<strong>patr</strong>·ia·t·e) expatriate (ex means out, from, or out from)</dd>
<dt>patriarch </dt><dd>(<strong>patr</strong>·i·arch) patriarch</dd>
<dt>patriot </dt><dd>(<strong>patr</strong>·i·ot) patriot</dd>
<dt>patriotisme </dt><dd>(<strong>patr</strong>·i·ot·isme) patriotism</dd>
<dt>repatriation </dt><dd>(re·<strong>patr</strong>·i·a·t·ion) repatriation</dd>
</dl>
<p>Now in other languages this is hidden: patre is père in French (the t is gone), padre in Spanish. But when we get to the derived terms, we see the <strong>t</strong> come back. This is the ingrained common root that Occidental uses.</p>
<div class="table-responsive">
<table class="table">
<thead>
<th>Occidental</th>
<th>French</th>
<th>Spanish</th>
</thead>
<tbody>
<tr>
<td style="background-color: forestgreen;">patre</td>
<td style="background-color: darkred;">père</td>
<td style="background-color: darkred;">padre</td>
</tr>
<tr>
<td>expatriate</td>
<td>expatrié/é</td>
<td>expatriado/a</td>
</tr>
<tr>
<td>patriarch</td>
<td>patriarche</td>
<td>patriarca</td>
</tr>
<tr>
<td>patriot</td>
<td>patriote</td>
<td>patriota</td>
</tr>
<tr>
<td>patriotisme</td>
<td>patriotisme</td>
<td>patriotismo</td>
</tr>
<tr>
<td>repatriation</td>
<td>rapatriement</td>
<td>repatriación</td>
</tr>
</tbody>
</table>
</div>
<p>When you know Occidental, the common roots simply become visible in a way excelled by maybe only Latin. Have a look over the following list and see just how clear the vocabulary becomes when expressed in Occidental.</p>
<dl class="dl-horizontal">
<dt>Intervalle</dt> <dd>(interval), formed from <strong>inter</strong> (between) and <strong>valle</strong> (mound, bulwark). Literal meaning: a "between-walls”.</dd>
<dt>Ínevitabil</dt> <dd>(inevitable), formed from <strong>ín</strong> (reverses the meaning), <strong>evitar</strong> (to evade) → evit·abil. Literal meaning: “un-evade-able”.</dd>
<dt>burgeonant</dt> <dd>(burgeoning): a <strong>burgeon</strong> is a bud in Occidental. Then verbalized as <strong>burgeonar</strong> → burgeona·nt</dd>
<dt>vernal</dt> <dd>(vernal): Think of the vernal equinox, the day in March when day and night are of equal length and spring officially begins. In Occidental <strong>verne</strong> means spring</dd>
<dt>radicalisme</dt> <dd>(radicalism): the word <strong>radica</strong> means root. A radical is someone “rooted” in an ideology.</dd>
<dt>seculari</dt> <dd>(secular): a <strong>secul</strong> is a century in Occidental. -<strong>ari</strong> turns it into an adjective meaning something of this era (something that is a product of its time).</dd>
<dt>nomination</dt> <dd>(nomination): a <strong>nómine</strong> is a name. This one is easy: a nomination is literally a “naming”.</dd>
</ul>
</div>
</div>
<hr id="example">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#example">So when you read Occidental, you have a stronger idea of what the words mean?</a></strong></p>
</div>
<div class="col-md-8">
<p>That's right. It's almost as if English looked like this, with hints everywhere about the meaning of the words we use everyday:</p>
<blockquote>Morning! How was your break fast?</blockquote>
<blockquote>Pretty good. Nothing like breaking your fast with ham and eggs.</blockquote>
<blockquote>Hey, do we have to work to morrow? Isn't to morrow a holyday?</blockquote>
<blockquote>Let's see...to morrow is Odinsday, right?</blockquote>
<blockquote>No, that's to day! So to morrow is Thorsday.</blockquote>
<blockquote>Oh right. Any way, the holy day is on Freyday though. Two days left.</blockquote>
<blockquote>You know what I hate though? Moonday.</blockquote>
<blockquote>Lol, every body hates Moonday. That's no thing special.</blockquote>
<blockquote>Hey, what do you think of the nameinee for the election this year?</blockquote>
<blockquote>They shouldn't have nameinated him, in my opinion.</blockquote>
<blockquote>Sure, but that's what a nameination is, right?</blockquote>
<blockquote>I guess. He said he'd increase taxes for people with as much in come as you.</blockquote>
<blockquote>Wait, what? Guys, can some body clearify what that means?</blockquote>
<blockquote>It means that making your tax declearation this year is going to suck.</blockquote>
<blockquote>But do I have to make a tax declearation even if I lived over seas last year? I was in Hispania.</blockquote>
<blockquote>Uh, may be. May be not? Ask the nameineee I guess. By the way, did you study hispanish when you were there?</blockquote>
<blockquote>I'm not very studyous, but I learned more than I thought I would. Hispanish people love it when you tell them you're learning.</blockquote>
</div>
<hr id="uncannyValley">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#uncannyValley">What about the uncanny valley?</a></strong></p>
</div>
<div class="col-md-8">
<p>It is a valid concern that Occidental is in the uncanny valley for Romance language speakers in particular. However, see this quote below:</p>
<blockquote>
<p>The "Uncanny Valley" is much the same as what I've called the "Rube Effect":
a feature of a system that makes me feel illiterate for using it. [...] My point was that if
there is a slight resemblance between the new system and ones already
known, you can accept it as coincidence and use it as a mnemonic, but if the
resemblance is great, then any deviation will be perceived as an error.</p>
<p>Thus the "Romance" aspect of Esperanto is fairly low, so it doesn't bother me when it
does something non-Romance. But when Interlingua does something non-Romance,
such as not having multiple negation (which Occidental does allow), it not only
seems wrong, but almost deceptive: I feel set up, taken in by its Romance
appearance. Because Occidental doesn't look entirely Romance (the
pronoun "it," past tense in -t, "lass," "mey," etc.) I may find it annoying,
perhaps, but I don't feel deceived.</p>
<p>I once wrote that when you visit Interlingua, it answers the door in a Romance
mask, ushers you inside, exchanges pleasantries, and goes to get you some
tea. Then it pours the tea on your head and reverts to the mask. "Is
something wrong?"</p>
<p>When you visit Occidental, it resembles some Romance languages you've
known, but it looks more like a creole of Romance and English. It almost
immediately slaps you in the face, says, "I'm not Romance," and then invites
you in and is a gracious host. In other words, it establishes independence
early on, and you either accept it or leave. Interlingua maintains a Romance
guise most of the time, only to do something really alien when you aren't
expecting it.</p>
<p>This is why I kept seeing native speakers of Romance languages trying to fix
Interlingua: when you try something that seems odd, even though the grammar may
specifically permit it, you're wrong. You cannot really say "Ille vide me," even
though it's technically allowed (it is completely acceptable as "Il vide me" in
Occidental). </p>
<footer>Steve Rice in <cite title="Source Title">Auxlang Listserv</cite></footer>
</blockquote>
</div>
</div>
<hr id="manySuffixes">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#manySuffixes">Esperanto and other auxlangs only use a few suffixes to form words while Occidental has quite a few. Why not use fewer?</a></strong></p>
</div>
<div class="col-md-8">
<p>The suffixes in Occidental are in fact already present in Esperanto and similar languages (substanco, direktoro, sentimento, spekulativa, etc.). The difference is that in Occidental these are regularly formed using its own internal rules (sub + star + -ntie = substantie, directer + -or = director, sentir + -ment = sentiment, specular + de Wahl's rule + iv = speculativ, etc.) and do not need to be imported as foreign loanwords. <a href="resources/Autonomie_e_Regularita_in_li_Lingue_International.pdf">[More details]</a></p>
</div>
</div>
<hr id="createNewWords">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#createNewWords">What if we need to create new words today?</a></strong></p>
</div>
<div class="col-md-8">
<p>Occidental was created to follow a natural evolution similar to the natural languages, where usage or lack of it decides the fate of a word. And Occidental's large body of literature and wealth of suffixes taken from the natural languages makes the creation of new words easy.</p>
<p><a href="http://anno.onb.ac.at/cgi-content/anno-plus?aid=e0g&datum=1948&page=40&size=45">Here for example</a> is an article published in 1948 on atomic theory in Occidental when the field was completely new, showing how easily it dealt with the new nomenclature with words such as atomic (atom·ic), ionisation (ion·isar -> ion·isa·t·ion), resonantie (re·son·ar -> re·sona·nt·ie), and so on. </p>
<p>Because of this, the best way to create new words is to simply learn the language well.</p>
<p>On top of this, Occidental does not require any specific endings for words so international words can generally be imported without change.
</p>
</div>
</div>
<hr id="haveToBeRomance">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#haveToBeRomance">Occidental looks very Romance. Does a word in Occidental have to match a Romance word to be correct?</a></strong></p>
</div>
<div class="col-md-8">
<p>Not at all. Occidental tends to form words that either match an existing international word, are very close to one, or one that other languages could have created themselves but simply have not. </p>
<blockquote>
<p>We do not hesitate to form words like “ludette, plorada, substantival, pruntation, credaci, perdibil, leonello, musicastro, plumallia, tassade, sucrage, glotton, stridore, hesitatori, successosi, flexura” etc. etc. without asking ourselves whether these words are international or not...They always represent forms that living languages <strong>would have been able to produce using their own means.</strong></p>
<footer>Alphonse Matejka in <cite title="Source Title"><a href="resources/Autonomie_e_Regularita_in_li_Lingue_International.pdf"> Autonomie e Regularita in li Lingue International (1948)</a></cite></footer>
</blockquote>
</div>
</div>
<hr id="getInvolved">
<div class="row">
<div class="col-md-4">
<p><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span> <strong><a href="#getInvolved">How can I get involved with the Occidental language and contribute?</a></strong></p>
</div>
<div class="col-md-8">
<p>The fun thing about Occidental as a newly-revived language is that you can start to contribute to it and give it new life pretty quickly after getting the basics down. On top of that, because it is also an auxlang with a long history, it has a lot of existing content and established infrastructure that new languages are still working on.</p>
<p>That means it has: </p>
<ul>
<li>A <a href="https://ie.wikipedia.org/wiki/Principal_págine"><strong>Wikipedia</strong></a> that you can contribute to.</li>
<li>It has its own <a href="http://ie.wiktionary.org"><strong>Wiktionary</strong></a>, but you can also add the Occidental equivalents to words on Wiktionaries in other languages as well. See the translations in <a href="https://en.wiktionary.org/wiki/airport">airport</a>, for example.</li>
<li>In <strong>Glosbe</strong> you can add words and translation memories. Translation memories are very important as they show how a word works in practice. <a href="https://glosbe.com/ie/en/quam">Here is one example</a>. To add translation memories you can <a href="http://cosmoglotta.pbworks.com/w/page/130687236/FrontPage">go through the back issues of Cosmoglotta here</a> and look for sentences to translate into English or your own language.</li>
<li>You can <a href="https://tatoeba.org/eng/stats/sentences_by_language">add sentences to <strong>Tatoeba</strong></a> as well. As of August 2019, Occidental (Interlingue) has over 6000 phrases and is in 50th place.</li>
<li>You can translate some of the content from the <a href="https://en.wikipedia.org/wiki/Interlingue">English Wikipedia page on Interlingue</a> into your own language. This page was recently added to and has become 5 times larger and more detailed than it was a year ago, so there is a lot of new information to translate into other languages.</li>
</ul>
<p>And of course, just by <a href="#learn">learning the language</a> and <a href="#community">interacting with the community</a>, you are contributing!</p>
</div>
</div>
</div>
</div>
<!-- END FAQ -->
<!-- BEGIN FOOTER -->
<div class="navbar navbar-default">
<div class="container">
<p class="navbar-text pull-left">
© 2020
</p>
<a href="https://github.com/occidental-lang/occidental-lang.github.io/issues" class="navbar-btn btn-info btn pull-right">
<img src="img/GitHub-logo.png"> Contribute on GitHub</a>
</div>
</div>
<!-- END FOOTER-->
<!-- Optional JavaScript -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<script>
$(function () {
$('[data-toggle="popover"]').popover()
})
</script>
</body>
</html>