From: Lady Date: Sun, 25 Aug 2024 19:38:02 +0000 (-0400) Subject: Initial commit with docs/srcs for early langs X-Git-Url: https://git.ladys.computer/Langdev/commitdiff_plain/HEAD?ds=sidebyside Initial commit with docs/srcs for early langs --- f82d6f4194db5fdb88f862f4430e158407c10733 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5cda530 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +# SPDX-FileCopyrightText: Lady +# SPDX-License-Identifier: CC0-1.0 + +%* +.grass +build/ +public/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..36aaed8 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +# SPDX-FileCopyrightText: Lady +# SPDX-License-Identifier: CC0-1.0 + +[submodule "Yseme"] + path = .👥📤 + url = https://git.ladys.computer/Yseme.git +[submodule "书社"] + path = .⛩📰 + url = https://git.ladys.computer/Shushe.git diff --git "a/.\342\233\251\360\237\223\260" "b/.\342\233\251\360\237\223\260" new file mode 160000 index 0000000..884130a --- /dev/null +++ "b/.\342\233\251\360\237\223\260" @@ -0,0 +1 @@ +Subproject commit 884130a52be6bfe21e524498385cb6486495b383 diff --git "a/.\360\237\221\245\360\237\223\244" "b/.\360\237\221\245\360\237\223\244" new file mode 160000 index 0000000..f6ab022 --- /dev/null +++ "b/.\360\237\221\245\360\237\223\244" @@ -0,0 +1 @@ +Subproject commit f6ab0225fdd5a404fbd592b0d5c051f0cbea4135 diff --git a/DTD b/DTD new file mode 100644 index 0000000..9ad940c --- /dev/null +++ b/DTD @@ -0,0 +1,5 @@ + + diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..b986014 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,84 @@ +# SPDX-FileCopyrightText: 2023, 2024 Lady +# SPDX-License-Identifier: MPL-2.0 + +SHELL = /bin/sh + +# Copyright © 2023–2024 Lady [@ Lady’s Computer]. +# +# This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. +# If a copy of the M·P·L was not distributed with this file, You can obtain one at . + +# CAUDEX := .🪾📰 +# LESML := .💄📝 +SHUSHE := .⛩📰 +YSEME := .👥📤 + +THISDIR := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST)))) +SRCDIR := site +INCLUDEDIR := data site/data +BUILDDIR := build +BUILDTARGET := .grass +DESTDIR := public + +# SHUSHEOPTS := SRCDIR='$(SRCDIR)' INCLUDEDIR='$(INCLUDEDIR)' DESTDIR='$(DESTDIR)' EXTRAMAGIC='$(wildcard $(LESML)/magic/*) $(wildcard magic/*)' PARSERS='$(LESML)/parser.xslt $(SHUSHE)/parsers/record-jar.xslt $(SHUSHE)/parsers/tsv.xslt $(wildcard parsers/*.xslt)' EXTRATRANSFORMS='$(CAUDEX)/transform.xslt $(wildcard transforms/*.xslt)' EXTRAFINDRULES='-not -name '"'"'*.license'"'"'' +SHUSHEOPTS := SRCDIR='$(SRCDIR)' INCLUDEDIR='$(INCLUDEDIR)' DESTDIR='$(DESTDIR)' EXTRAMAGIC='$(wildcard magic/*)' PARSERS='$(SHUSHE)/parsers/record-jar.xslt $(SHUSHE)/parsers/tsv.xslt $(wildcard parsers/*.xslt)' EXTRATRANSFORMS='$(wildcard transforms/*.xslt)' EXTRAFINDRULES='-not -name '"'"'*.license'"'"'' + +YSEMEOPTS := BUILDTARGET='$(BUILDTARGET)' DESTDIR='$(DESTDIR)' SERVERPATH='lady/langdev' + +# ━ § Call out to ⛩📰 书社 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + +# install : $(SHUSHE)/GNUmakefile $(LESML)/parser.xslt $(CAUDEX)/transform.xslt build +install : $(SHUSHE)/GNUmakefile build + @for publicfile in $(patsubst %,"%",$(wildcard $(DESTDIR)/*)); do if git check-ignore -q "$$publicfile"; then rm -rf "$$publicfile"; fi; done + @$(MAKE) -f '$<' install $(SHUSHEOPTS) + @touch '$(BUILDTARGET)' + +build : $(SHUSHE)/GNUmakefile + @$(MAKE) -f '$<' $(SHUSHEOPTS) + +clean list : $(SHUSHE)/GNUmakefile + @$(MAKE) -f '$<' $@ $(SHUSHEOPTS) + +$(BUILDDIR)/% : $(SHUSHE)/GNUmakefile + @$(MAKE) -f '$<' $@ $(SHUSHEOPTS) + +$(DESTDIR)/% : $(SHUSHE)/GNUmakefile + @$(MAKE) -f '$<' $@ $(SHUSHEOPTS) + +# ━ § Call out to 👥📤 Yseme ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + +dry-sync sync : $(YSEME)/GNUmakefile + $(MAKE) -f '$<' $@ $(YSEMEOPTS) + +# ━ § Special targets ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + +.PHONY : FORCE build clean dry-sync gone list prebuild sync uninstall ; + +gone : clean uninstall ; + +uninstall : + @for publicfile in $(patsubst %,"%",$(wildcard $(DESTDIR)/*)); do if git check-ignore -q "$$publicfile"; then rm -rf "$$publicfile"; fi; done + +FORCE : ; + +# ━ § Submodule targets ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + +ifneq ($(filter $(abspath $(THISDIR))/%,$(abspath $(LESML))),) +$(LESML)/parser.xslt : %/GNUmakefile : FORCE + git submodule update --init '$*' +endif + +ifneq ($(filter $(abspath $(THISDIR))/%,$(abspath $(CAUDEX))),) +$(CAUDEX)/transform.xslt : %/GNUmakefile : FORCE + git submodule update --init '$*' +endif + +ifneq ($(filter $(abspath $(THISDIR))/%,$(abspath $(SHUSHE))),) +$(SHUSHE)/GNUmakefile : %/GNUmakefile : FORCE + git submodule update --init '$*' +endif + +ifneq ($(filter $(abspath $(THISDIR))/%,$(abspath $(YSEME))),) +$(YSEME)/GNUmakefile : %/GNUmakefile : FORCE + git submodule update --init '$*' +endif diff --git a/LICENSES/CC0-1.0.txt b/LICENSES/CC0-1.0.txt new file mode 100644 index 0000000..0e259d4 --- /dev/null +++ b/LICENSES/CC0-1.0.txt @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/LICENSES/MPL-2.0.txt b/LICENSES/MPL-2.0.txt new file mode 100644 index 0000000..ee6256c --- /dev/null +++ b/LICENSES/MPL-2.0.txt @@ -0,0 +1,373 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at https://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. diff --git a/LICENSES/OFL-1.1-RFN.txt b/LICENSES/OFL-1.1-RFN.txt new file mode 100644 index 0000000..6fe84ee --- /dev/null +++ b/LICENSES/OFL-1.1-RFN.txt @@ -0,0 +1,43 @@ +SIL OPEN FONT LICENSE + +Version 1.1 - 26 February 2007 + +PREAMBLE + +The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. + +DEFINITIONS + +"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the copyright statement(s). + +"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, or substituting — in part or in whole — any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS + +Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. + +5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. + +TERMINATION + +This license becomes null and void if any of the above conditions are not met. + +DISCLAIMER + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/LICENSES/OFL-1.1-no-RFN.txt b/LICENSES/OFL-1.1-no-RFN.txt new file mode 100644 index 0000000..6fe84ee --- /dev/null +++ b/LICENSES/OFL-1.1-no-RFN.txt @@ -0,0 +1,43 @@ +SIL OPEN FONT LICENSE + +Version 1.1 - 26 February 2007 + +PREAMBLE + +The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. + +DEFINITIONS + +"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the copyright statement(s). + +"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, or substituting — in part or in whole — any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS + +Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. + +5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. + +TERMINATION + +This license becomes null and void if any of the above conditions are not met. + +DISCLAIMER + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..ca225d9 --- /dev/null +++ b/README.markdown @@ -0,0 +1,189 @@ + +# Langdev + +## Directory Structure + +Each language is given a directory inside of `data/`, named by language + code. +Within this directory the following subdirectories may exist :⁠— + +- **`info`:** + An X·M·L file providing basic information about the language, its + encoding, and its variants. + +- **`cdex/`:** + Codex entries for the language, in the manner of + [🪾📰 Caudex][Caudex]. + +- **`docs/`:** + Prose documentation for the language. + +- **`srcs/`:** + Files from which those in `VARIANT/` and `docs/` were derived. + By convention, all X·M·L files have a `encoding` component to their + X·M·L declaration, which is used to identify them as “assets” and + avoid further processing. + +- **`txts/`:** + Extant texts written in the language. + +- **`VARIANT/`:** + A directory of lexemes for a given `VARIANT`, which has the form of a + variant subtag (a digit followed by three to seven characters, or + a letter followed by four to seven characters). + When formulating language tags using these variants, they must be + preceded by the singleton `x`, as they are not registered. + + Variants which begin with the string `block` are _blocks_, intended + to partition the language semantically to make it easier to work + with. + This is the common form of variant for actively‐developed languages. + + Other variants are not partitions, and instead denote different + versions of the language thru time or space. + For example, the variant `qho-0001` denotes the version of the + language which precedes `qho-0002`. + +Each variant directory, itself, contains the following files :⁠— + +- **`LEXEME`:** + A single lexeme with·in the variant. + `LEXEME` is an Ascii representation of the lemma form of the lexeme + which matches the following regular expression :⁠— + + [&'=@0-9A-Za-z~-]\.?(_?[&'=@0-9A-Za-z~-]\.?)*__[1-9][0-9]* + +## Languages, Scripts, and Tags + +Each language developed in this repository is assigned a (private·use) + primary language subtag in the range `qga`‥`qpz`. +This is outside of the range reserved by Unicode (`qaa`‥`qfy`) and + leaves the tags `qfz` and `qqa`‥`qtz` for implementations. +The current list of assigned primary language subtags is as + follows :⁠— + +| Language Subtag | Language Name | +| :-------------: | ------------- | +| `qho` | Eho | +| `qjl` | Jastulae | +| `qjt` | Jastugay | +| `qjx` | Pre‐Zheshwi | +| `qjz` | Zheshwi | +| `qlr` | Elrex | +| `qpt` | Fizonal | + +This repository also reserves the script subtags `Qaaq`‥`Qabp`, + leaving aside `Qaaa`‥`Qaap` for Unicode and `Qabq`‥`Qabx` for + implementations. +The current list of assigned script tags is as follows :⁠— + +| Script Subtag | Script Name | +| :-----------: | ----------- | +| `Qabj` | Jastugay Syllables | + +## Crossreferences and Identifiers + +This repository assigns identifiers in the + `urn:fdc:langdev.ladys.computer:2024:` namespace. +Most of these identifiers can be dereferenced on the Web by prepending + `https://langdev.ladys.computer/` to them. +(Identifier resolution is handled thru server redirects, not as part of + the build process.) + +### Codex Entry Identifiers + +Codex entries for a language with primary language subtag `PLS` are + assigned identifiers of the form :⁠— + + urn:fdc:langdev.ladys.computer:2024:PLS:cdex:ENTRYID + +—⁠: where `ENTRYID` is the identifier of the entry within the codex. + +These identifiers resolve to the files at `/PLS/cdex/ENTRYID.xhtml`. + +### Documentation Identifiers + +Documentation files for a language with primary language subtag `PLS` + are assigned identifiers of the form :⁠— + + urn:fdc:langdev.ladys.computer:2024:PLS:docs:DOCID + +—⁠: where `DOCID` is some local identifier for the documentation. + +These identifiers resolve to the files at `/PLS/docs/DOCID/`. + +### Source Identifiers + +Source entries for a language with primary language subtag `PLS` are + assigned identifiers of the form :⁠— + + urn:fdc:langdev.ladys.computer:2024:PLS:srcs:SOURCEID + +—⁠: where `SOURCEID` is some local identifier for the documentation. + +These identifiers resolve to the files at `/PLS/srcs/SOURCEID/`. + +### Text Identifiers + +Texts written in a language with primary language subtag `PLS` are + assigned identifiers of the form :⁠— + + urn:fdc:langdev.ladys.computer:2024:PLS:txts:TEXTID + +—⁠: where `TEXTID` is some local identifier for the text. + +These identifiers resolve to the files at `/PLS/txts/TEXTID/`. + +### Lexeme Identifiers + +An identifier for a given lexeme can be constructed from its language, + variant, and Ascii representation. +Given primary language subtag `PLS`, variant subtag `VARIANT`, and + Ascii representation `LEXEME`, the resulting identifier is as + follows :⁠— + + urn:fdc:langdev.ladys.computer:2024:PLS:VARIANT:LEXEME + +Within this repository, lexemes reference each other according to the + U·R·I scheme above. +These identifiers resolve to the files at + `/PLS/#PLS-VARIANT--LEXEME`. + +A less‐universal identifier, suitable for use as an X·M·L `ID`, is :⁠— + + PLS-VARIANT--LEXEME + +## Encoding Principles + +Dictionary information is expressed in a constrained R·D·F format which + conforms to the `DTD` in this repository. +This D·T·D should not be considered stable and should be inspected for + changes when·ever pulling in new data. + +## Website + +The `site/` directory contains documentation and data used for building + the Langdev website (). +Files and directories which are not meant to reference language subtags + will be given names which are either :⁠— + +- Of any length, containing at least one apostrophe, hyphen, + underscore, or period. + +- Exactly four lowercase alphabetic letters (distinguishable from a + script subtag as it conventionally begins with a capital letter). + +- More than four letters or numbers, starting with a capital letter + (distinguishable from a variant subtag as it conventionally begins + with a lowercase letter). + +- More than eight characters (all language subtags are eight or fewer + characters in length). + +The site is built using [⛩📰 书社][Shushe]. + +[Caudex]: +[Shushe]: diff --git a/data/qho/docs/dict b/data/qho/docs/dict new file mode 100644 index 0000000..54691e4 --- /dev/null +++ b/data/qho/docs/dict @@ -0,0 +1,1437 @@ + + + +]> + + + + + + + + + + <seg xml:id="title-main">Eho</seg>: <seg xml:id="title-sub">Documentation and Dictionary</seg> + Project Langdev + Lady + + + Version 2, Draft 11 + + + + 2024-05-12 + urn:fdc:langdev.ladys.computer:2024:qho:docs:dict + + Marked with CC0 1.0 Universal. + + + + The Langdev Project Dictionaries + + +

+ Born digital. + Words and definitions taken from original handwritten lexis at . + Commentary added. +

+
+
+ + + + + +

Comprehensive linguistic reference for the various Langdev languages.

+
+ + + Used to separate the different versions of the Eho language, and also to contain preface material. + Used to mark dictionary entries. + The BCP47 type marks an IETFInternet Engineering Task Force language tag, as defined by <choice><abbr>BCP</abbr><expan>Best Current Practices</expan></choice> 47. + The version type is used to denote versions in the list of changes. + The unicode type is used to reference a Unicode character. + + The splash type refers to an optional splash quote. + A splash with subtype default identifies the default splash; all others are alternates. + + + +
+ + + + + + English + Eho + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Language tag for Eho changed from art-Latn-x-qho to simply qho-Latn. + A new URIUniform Resource Identifier for the document was provided which uses the urn:fdc:langdev.ladys.computer:2024: prefix. + Some link targets have changed to reflect the new structure of the Langdev site. + 2.11 + + + Minor documentation updates; improvements to the XSLTXSL Transformations stylesheet. + 2.10 + + + Language tag for Eho changed from art-x-eho to art-x-qho to enable use in environments where the art-x- prefix is not usable. + 2.09 + + + Minor adjustments to formatting. + 2.08 + + + Minor updates to document metadata. + A new URIUniform Resource Identifier was provided; the old value was version‐specific, which is not actually useful (old versions of this dictionary are not being preserved). + 2.07 + + + Minor revisions to make metadata current. + 2.06 + + + Minor markup improvements. + Language version numbers are now considered part of the language name. + Removed indexing as it provided no useful functionality. + 2.05 + + + Improved internal markup to allow for more easily directly referencing entries inside of etymologies. + Added themes. + 2.04 + + + Improved internal markup to be more semantic and reduce duplication. + Added themes for browsers which support them. + 2.03 + + + Fixed centering of table header elements. + 2.02 + + + Rewrote LRECLexisMLLexis Markup Language index RECord+HTMLHyperText Markup Language dictionary files into a single TEIText Encoding Initiative document. + Corrections were made where errors were found and documentation was improved. + 2.01 + + + Created LRECLexisMLLexis Markup Language index RECord+HTMLHyperText Markup Language dictionary files, including frontmatter, from the original source document. + 1.01 + + + + + +
+ + + + + + + + + + + + + + + + + + + + + 20 August 2024 + +

+ Default text! + Small! + Minimal! + We’re just getting started! + I hope! + A little start! + A little more! + Verbal! + Etymologized! + Built on top! + Paper! + Discontinued! + Encoded! + Text! + Extended! + Trust in me! + Lorem Ipsum! + Hypothetical! + Early! + Birdie! + Slow! + Square! + Generational! + Generated! + Old-style! + Olde stile! +

+
+
+ + + +
+

+ Eho is an early culture and language in the Jastu‐Fizonal sprachbund. + Eho had the smallest starting lexicon of the Jastu‐Fizonal languages, and so developed at the slowest rate. + The Unicode character U+25A1 □ WHITE SQUARE has traditionally been used as a shorthand for Eho. +

+

+ The words below are grouped into four generations based on their approximate times of origin. + The earliest of these are categorized as □1 and the latest as □4. + The Eho language had very little influence on later Jastu‐Fizonal languages and so the size of this dictionary is quite small. +

+

+ As Eho is in essence a speculative proto‐language, the pronunciation data should not be taken as anything more than a broad guideline. + The orthography attempts to follow general American English conventions. +

+

+ Eho has been given the language code qho; the script subtag Latn should also be supplied. + Eho has no known native script. +

+
+ + + +
+ + + + + + + +
+ □1 + +
+ o + ō +
+ + v + + come/go +
+ +
+ aht + äht +
+ + v + + stay/stop/wait +
+
+ + + +
+ □2 + +
+ ba + +
+ + v + + do +
+ +
+ o + ō +
+ □1 + + v + + go +
+ +
+ uw + o͡o +
+ □1 o + + v + + come +
+ +
+ ah + äh +
+ □1 aht + + v + + wait +
+ +
+ aat + ät +
+ □1 aht + + v + + stay/stop +
+
+ + + +
+ □3 + +
+ eh + ā +
+ + adj + + good +
+ +
+ ba + +
+ □2 + + v + + do +
+ +
+ oet + œt +
+ + adv + + quickly +
+ +
+ ahn + än +
+ + adv + + carefully, cautiously +
+ +
+ o + ō +
+ □1 + + v + + go +
+ +
+ uw + o͡o +
+ □1 o + + v + + come +
+ +
+ ah + äh +
+ □1 aht + + v + + wait +
+ +
+ aat + ät +
+ □1 aht + + v + + stay/stop +
+
+ + + +
+ □4 + +
+ ay + ā +
+ + adj + + good +
+ +
+ ra + +
+ + adj + + bad +
+ +
+ æt + āt +
+ □3 eh + + pron + + this +
+ +
+ ko + +
+ + pron + + you +
+ +
+ ka + +
+ + pron + + me +
+ +
+ tay + +
+ + pron + + they +
+ +
+ tih + tih +
+ + v + + is +
+ +
+ ba + +
+ □2 + + v + + do +
+ +
+ o + ō +
+ □1 + + v + + go +
+ +
+ uw + o͡o +
+ □1 + + v + + come +
+ +
+ ah + äh +
+ □1 + + v + + wait +
+ +
+ ahnt + ähnt +
+ □3 aat + + v + + stay/stop +
+ +
+ oet + œt +
+ □3 + + adv + + quickly +
+ +
+ on + on +
+ □3 ahn + + adv + + carefully, cautiously +
+ +
+ rayd + rād +
+ + adv + + not +
+
+ + + + + + + +
+ +
diff --git a/data/qho/srcs/E.Hope b/data/qho/srcs/E.Hope new file mode 100644 index 0000000..99c9346 Binary files /dev/null and b/data/qho/srcs/E.Hope differ diff --git a/data/qho/srcs/E.Hope.license b/data/qho/srcs/E.Hope.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qho/srcs/E.Hope.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/docs/dict b/data/qjl/docs/dict new file mode 100644 index 0000000..5eb73f9 --- /dev/null +++ b/data/qjl/docs/dict @@ -0,0 +1,5684 @@ + + + +]> + + + + + + + + + + <seg xml:id="title-main">Jastulae</seg>: <seg xml:id="title-sub">Documentation and Dictionary</seg> + Project Langdev + Lady + + + Version 1, Draft 09 + + + + 2024-08-20 + urn:fdc:langdev.ladys.computer:2024:qjl:docs:dict + + Marked with CC0 1.0 Universal. + + + + The Langdev Project Dictionaries + + +

+ Born digital. + Words and definitions taken from original handwritten lexis at (versions Ⅰ–ⅤⅠⅠ) and the RedBook (version ⅤⅠⅠⅠ). + In the latter case, original word‐forms and not their later Jastugay renditions are recorded. + Commentary added. +

+
+
+ + + + + +

Comprehensive linguistic reference for the various Langdev languages.

+
+ + + + Used to separate the different versions of the Jastulae language, and categorize words within later versions. + Also used to contain preface material. + + Used to mark dictionary entries. + The BCP47 type marks an IETFInternet Engineering Task Force language tag, as defined by <choice><abbr>BCP</abbr><expan>Best Current Practices</expan></choice> 47. + The version type is used to denote versions in the list of changes. + The unicode type is used to reference a Unicode character. + + The splash type refers to an optional splash quote. + A splash with subtype default identifies the default splash; all others are alternates. + + + +
+ + + + + + English + Jastulae + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Language tag for Jastulae changed from art-Latn-x-qjl to simply qjl-Latn. + A new URIUniform Resource Identifier for the document was provided which uses the urn:fdc:langdev.ladys.computer:2024: prefix. + Some link targets have changed to reflect the new structure of the Langdev site. + 1.09 + + + Minor documentation updates; improvements to the XSLTXSL Transformations stylesheet. + 1.08 + + + Language tag for Jastulae changed from art-x-jtl to art-x-qjl to enable use in environments where the art-x- prefix is not usable. + 1.07 + + + Minor adjustments to formatting. + 1.06 + + + Minor updates to document metadata. + A new URIUniform Resource Identifier was provided; the old value was version‐specific, which is not actually useful (old versions of this dictionary are not being preserved). + 1.05 + + + Minor revisions to make metadata current. + 1.04 + + + Fixed an incorrect reference. + 1.03 + + + Set internal tag usage counts to their correct values. + 1.02 + + + Created TEIText Encoding Initiative document from source text and prior work. + This is the first full digitization of the entire known Jastulae language. + 1.01 + + + + + +
+ + + + + + + + + + + + + + + + + + + + + 20 August 2024 + +

+ Read it! + The old is new again! + Never-before-seen! + Apt! + It just works out! + An item! + Surprisingly successful! + +1! + In place! + Elemental! + Unclothed! + Books kept! +

+
+
+ + + +
+

+ Jastulae is an early culture and language in the Jastu‐Fizonal sprachbund. + The Unicode character U+22BB ⊻ XOR has traditionally been used as a shorthand for Jastulae. +

+

+ The words below are grouped into eight generations based on their approximate times of use. + The earliest of these are categorized as ⊻ Ⅰ and the latest as ⊻ ⅤⅠⅠⅠ. + Jastugay is a close sibling language to Jastulae, and Jastugay ⅤⅠⅠⅠ and ⊻ ⅤⅠⅠⅠ were extant during the same time period. +

+

+ Definitive etymological classifications for early Jastulae words are not made; rather, broad associations have been noted. + These are marked via a U+223B ∻ HOMOTHETIC Unicode character. + In later iterations of the language, etymological history becomes much more clear. +

+

+ The entries below use a roughly phonetic spelling; however, as Jastulae is in essence a speculative proto‐language, the pronunciation data should not be taken as anything more than a broad guideline. + Interested persons should research the phonologies of Jastugay and Zheshoi for more information on how these sounds have evolved over time. +

+

+ Jastulae has been given the language code qjl; the script subtag Latn should also be supplied. + The sibling language Jastugay developed a native script, but likely not until after the period in which Jastulae was spoken. +

+
+ + + +
+ + + + + + + +
+ ⊻ Ⅰ + +
+ +
+ this/​that/​they/​you/​I +
+ +
+ doi +
+ go +
+ +
+ aht +
+ stop +
+
+ + + +
+ ⊻ ⅠⅠ + +
+ +
+ this/​that +
+ +
+ +
+ animal(s) +
+ +
+ +
+ people (any POVPoint Of View) +
+ +
+ do +
+ yes +
+ +
+ doi +
+ go +
+ +
+ ta +
+ no +
+ +
+ ahtoi +
+ stop +
+
+ + + +
+ ⊻ ⅠⅠⅠ + +
+ +
+ + this/​that +
+ +
+ say +
+ + animal +
+ +
+ +
+ + he/​she/​they +
+ +
+ sed +
+ + you +
+ +
+ +
+ + me +
+ +
+ +
+ + yes +
+ +
+ +
+ + good +
+ +
+ doi +
+ + go +
+ +
+ dāsoi +
+ , + food +
+ +
+ dahi +
+ + alive +
+ +
+ ta +
+ + no +
+ +
+ toi +
+ + stop +
+ +
+ +
+ + bad +
+ +
+ tehi +
+ + dead +
+ +
+ ōhi +
+ + do +
+
+ + + +
+ ⊻ ⅠⅤ + +
+ datsi +
+ ⅠⅠⅠ + food +
+ +
+ dahsō +
+ ⅠⅠⅠ + drink (n.) / water +
+ +
+ daehi +
+ ⅠⅠⅠ , + alive +
+ +
+ doh + +
+ ⅠⅠⅠ + yes +
+ +
+ daet +
+ ⅠⅠⅠ + good +
+ +
+ tau +
+ ⅠⅠⅠ + no +
+ +
+ tauhi +
+ ⅠⅠⅠ + dead +
+ +
+ taut +
+ ⅠⅠⅠ + bad +
+ +
+ +
+ ⅠⅠⅠ + this/​that +
+ +
+ say +
+ ⅠⅠⅠ + animal +
+ +
+ +
+ ⅠⅠⅠ + he/​she/​they +
+ +
+ sed +
+ ⅠⅠⅠ + you +
+ +
+ +
+ ⅠⅠⅠ + me +
+ +
+ saed +
+ ⅠⅠⅠ + girl +
+ +
+ saut +
+ ⅠⅠⅠ + boy +
+ +
+ ōhē +
+ ⅠⅠⅠ + do +
+ +
+ doh + +
+ ⅠⅠⅠ , + go +
+ +
+ tō’ē +
+ ⅠⅠⅠ , + stop +
+ +
+ hie +
+ ⅠⅠⅠ + life +
+ +
+ ōhtsi +
+ ⅠⅠⅠ , + eat +
+ +
+ ōdsō +
+ ⅠⅠⅠ , + drink +
+
+ + + +
+ ⊻ Ⅴ + +
+ hīahtsē +
+ ⅠⅤ + + plant‐foodstuffs +
+ +
+ taudsē +
+ ⅠⅤ + + meat +
+ +
+ dāsō +
+ ⅠⅤ < ⅠⅠⅠ + , lifestuff + water +
+ +
+ dāhē +
+ ⅠⅤ < ⅠⅠⅠ + + alive; living +
+ +
+ tauhē +
+ ⅠⅤ < ⅠⅠⅠ + + dead +
+ +
+ ao͡otē +
+ ⅠⅤ + + sick, injured +
+ +
+ dao +
+ ⅠⅤ + yes +
+ +
+ dōt +
+ ⅠⅤ + is +
+ +
+ to͡o +
+ ⅠⅤ + no +
+ +
+ tōhē +
+ ⅠⅤ + + is not +
+ +
+ dæt +
+ ⅠⅠⅠ + good +
+ +
+ tāt +
+ ⅠⅤ ; + + bad +
+ +
+ +
+ + this or that; an item +
+ +
+ sæhē +
+ ⅠⅤ + + animal +
+ +
+ +
+ ⅠⅤ ; + she +
+ +
+ so͡o +
+ ⅠⅤ ; + he +
+ +
+ sedt +
+ ⅠⅤ ; ; + they +
+ +
+ sēd +
+ ⅠⅤ + you +
+ +
+ +
+ ⅠⅤ + me +
+ +
+ sæd +
+ ⅠⅤ + female (adj.) +
+ +
+ so͡ot +
+ ⅠⅤ + male (adj.) +
+ +
+ ō·wēh +
+ ⅠⅤ + do +
+ +
+ +
+ ⅠⅤ + go +
+ +
+ tō·hē +
+ ⅠⅤ + stop +
+ +
+ dehō +
+ ; ⅠⅤ + quickly +
+ +
+ to͡odhō +
+ + + slowly +
+ +
+ ōhtsē +
+ ⅠⅤ + eat +
+ +
+ ōhdsō +
+ ⅠⅤ + drink +
+ +
+ hē·ī +
+ ⅠⅤ + life +
+ +
+ tau·ī +
+ ⅠⅤ + + death +
+ +
+ hōā +
+ ⅠⅤ + + make +
+ +
+ ao͡ohē +
+ ⅠⅤ + + + destroy +
+
+ + + +
+ ⊻ ⅤⅠ +
+ Things + +
+ hīat +
+ + plants/​vegitation +
+ +
+ sao͡otē +
+ + animals +
+ +
+ dæso +
+ + water +
+ +
+ sēt +
+ + < ⅠⅤ + food +
+ +
+ hīatsē +
+ + food from plants +
+ +
+ satao͡osē +
+ ⅤⅠ < + meat +
+ +
+ +
+ ⅠⅠ + that +
+ +
+ sat +
+ + this +
+ +
+ hā·ē +
+ + life +
+ +
+ tah·ē +
+ + death +
+ +
+ to͡oæd +
+ , + person +
+ +
+ tōdæ +
+ + + clothing +
+ +
+ daosī +
+ + + fire +
+ +
+ hoetsā +
+ + + ground +
+ +
+ hoehā +
+ + + sun +
+ +
+ daota +
+ + + sky +
+ +
+ ōhwī +
+ + + sharp object (such as a knife) +
+ +
+ tao͡ohōā +
+ + + weapon +
+ +
+ dōhī +
+ + + place +
+ +
+ dōwāt +
+ ⅤⅠ + wind +
+ +
+ dōdsæ +
+ + + rain +
+ +
+ dōtasō +
+ + + + snow +
+
+
+ People + +
+ +
+ + she +
+ +
+ so͡o +
+ + he +
+ +
+ sehdt +
+ + they +
+ +
+ suæd +
+ + + + you +
+ +
+ +
+ + me +
+ +
+ swīd +
+ ⅤⅠ + + us/​we +
+
+
+ Adjectives + +
+ dahē +
+ + alive, living +
+ +
+ tahē +
+ + dead +
+ +
+ ätē +
+ + sick, injured +
+ +
+ dæt +
+ + good +
+ +
+ tāt +
+ + bad +
+ +
+ sæd +
+ + female +
+ +
+ so͡oit +
+ + male +
+ +
+ +
+ + quick; fast +
+ +
+ to͡od +
+ + slow +
+ +
+ dō·wä +
+ + great +
+ +
+ tō·wo͡o +
+ + small/​weak +
+
+
+ Yes/​No + +
+ dao +
+ + yes +
+ +
+ tōw +
+ + no +
+
+
+ Verbs + +
+ dōt +
+ + is +
+ +
+ tōh +
+ + is not +
+ +
+ ō·wāh +
+ + do +
+ +
+ dā·ō +
+ + go +
+ +
+ tā·hō +
+ + stop +
+ +
+ ōhtsē +
+ + eat +
+ +
+ ōhdsō +
+ + drink +
+ +
+ hōwē +
+ + make/​create +
+ +
+ äo͡ohē +
+ + destroy +
+
+
+ + + +
+ ⊻ ⅤⅠⅠ +
+ The Human Body + +
+ to͡oæd +
+ ⅤⅠ + A person or body +
+ +
+ dōtädō +
+ ⅤⅠ + , sky place + Head +
+ +
+ däwdhī +
+ ⅤⅠ + , wind place + Throat +
+ +
+ hōetsōhē +
+ ⅤⅠ + , ground place + Torso/​body +
+ +
+ hādōsī +
+ ⅤⅠ + , life fire + Eyes +
+ +
+ sōtsē +
+ ⅤⅠ + , that which eats + Mouth +
+ +
+ sat·wā +
+ ⅤⅠ + , this does + Arms/​hands +
+ +
+ sā·dō +
+ ⅤⅠ + , this goes + Legs/​feet +
+ +
+ hā·tō +
+ ⅤⅠ + , sun stop + Hair +
+ +
+ sōdā +
+ ⅤⅠ + , ground clothing + Skin +
+
+
+ Locations + +
+ satōẖī +
+ ⅤⅠ + , this place + Here +
+ +
+ sōdōẖī +
+ ⅤⅠ + , that place + There +
+ +
+ hāsō +
+ ⅤⅠ + , sun thing + Front +
+ +
+ həsäsō +
+ ⅤⅠ + , ground thing + Back +
+ +
+ tähādī +
+ ⅤⅠ + , weapon place + Side +
+ +
+ dẖītə +
+ ⅤⅠ + , place of sky + Up +
+ +
+ dōetsə +
+ ⅤⅠ + , place of ground + Down +
+ +
+ hādī +
+ ⅤⅠ + , life place + Home +
+ +
+ hōtsā +
+ ⅤⅠ + , sunny ground + Land +
+ +
+ to͡odāsō +
+ ⅤⅠ + + , small moving water + A river or creek +
+ +
+ dōwäsō +
+ ⅤⅠ + , great water + An ocean or very large body of water + Smaller lakes and seas are referred to simply as the water +
+
+
+ The Sky + +
+ daotə +
+ ⅤⅠ + The sky +
+ +
+ ħīhä +
+ ⅤⅠ + The sun +
+ +
+ sædħā +
+ ⅤⅠ + , female sun + The moon +
+ +
+ tōwā·ē +
+ ⅤⅠ + , little lives + The stars +
+
+
+ The Weather + +
+ dātäsō +
+ ⅤⅠ + , sky thing + Cloud/​cloudy +
+ +
+ dōdsā +
+ ⅤⅠ + Rain +
+ +
+ dōtās +
+ ⅤⅠ + Snow +
+ +
+ dōwæt +
+ ⅤⅠ + Wind +
+ +
+ dāħētə +
+ ⅤⅠ + , healthy sky + Clear sky +
+ +
+ ətäo͡ot +
+ ⅤⅠ + , sick sky + Storm/​stormy +
+
+
+ Pronouns + +
+ +
+ ⅠⅠ + That +
+ +
+ sat +
+ ⅤⅠ + That +
+ +
+ sōd +
+ ⅤⅠ + + It +
+ +
+ +
+ + She +
+ +
+ so͡o +
+ + He +
+ +
+ shed +
+ Note: Pronounced as a combination of s and h sounds, not with a sh sound + ⅤⅠ + They +
+ +
+ sə·æd +
+ ⅤⅠ + You +
+ +
+ +
+ ⅤⅠ + Me +
+ +
+ sī·ād +
+ ⅤⅠ + Us +
+
+
+ Titles + +
+ dāħatsō +
+ ⅤⅠ + , goes to edible plant + Gatherer + Note: Earlier etymological records mark this word as descending from hīatsō, but hīatsē is the correct spelling +
+ +
+ tao͡otsē +
+ ⅤⅠ + , kills animals + Hunter +
+ +
+ tāħ͟ä·tōē +
+ ⅤⅠ + , stops weapons + Guardian +
+ +
+ ħōdōwä +
+ ⅤⅠ + , makes great + Leader +
+ +
+ dātād +
+ ⅤⅠ + , good person + Friend +
+
+
+ Kinds of People + +
+ tōtæd +
+ ⅤⅠ + , little person + Young child +
+ +
+ sæted +
+ ⅤⅠ + , female person + Woman +
+ +
+ switād +
+ ⅤⅠ + , male person + Man +
+ +
+ dōwäto͡o +
+ ⅤⅠ + , great weak + Baby +
+ +
+ to͡odōwä +
+ ⅤⅠ + , slow but great + Elder +
+ +
+ sæd +
+ ⅤⅠ + Female +
+ +
+ so͡oit +
+ ⅤⅠ + Male +
+
+
+ Life + +
+ h͟ā·ē +
+ ⅤⅠ + Life +
+ +
+ tä͟h·ē +
+ ⅤⅠ + Death +
+ +
+ däħē +
+ ⅤⅠ + Living, alive +
+ +
+ täħē +
+ ⅤⅠ + Dead +
+ +
+ ätē +
+ ⅤⅠ + Dying/​injured/​sick +
+
+
+ Abilities/​Qualities + +
+ +
+ ⅤⅠ + Quick/​fast +
+ +
+ to͡od +
+ ⅤⅠ + Slow +
+ +
+ daōwä +
+ ⅤⅠ + , sky doings + Intelligent/​thoughtful +
+ +
+ tōteẖho +
+ ⅤⅠ + , no stopping + Determined/​hardworking +
+ +
+ dōwä +
+ ⅤⅠ + Great/​strong +
+ +
+ tōwo͡o +
+ ⅤⅠ + Small/​weak +
+ +
+ dāt +
+ ⅤⅠ + Good +
+ +
+ tāt +
+ ⅤⅠ + Bad +
+
+
+ Emotions/​Feelings + +
+ dōdā +
+ ⅤⅠ + , be good + Happy +
+ +
+ dōtāt +
+ ⅤⅠ + , be bad + Angry +
+ +
+ dōsā·ō +
+ ⅤⅠ + , rain things + Emotions +
+ +
+ hōtsäsē +
+ ⅤⅠ + , ground fire + Feelings (physical) +
+ +
+ jo͡oädōsā +
+ ⅤⅠ + , great rain + Awe/​beauty/​love +
+ +
+ hōsīd +
+ ⅤⅠ + , creates friends + Love +
+ +
+ hō·tō +
+ ⅤⅠ + , weakens + Sad +
+ +
+ tēdsī +
+ ⅤⅠ + + Pain +
+
+
+ Substances/​Materials + +
+ dāsō +
+ ⅤⅠ + Water +
+ +
+ dōwīet +
+ ⅤⅠ + , strong plant + Wood +
+ +
+ ẖōsāsō +
+ ⅤⅠ + , groundstuff + Rock/​stone +
+ +
+ ẖōtsə +
+ ⅤⅠ + Ground +
+
+
+ Misc. Items + +
+ sēt +
+ ⅤⅠ + Food +
+ +
+ hīätsē +
+ ⅤⅠ + Food from plants +
+ +
+ sä·täo͡osē +
+ ⅤⅠ + Meat +
+ +
+ dātītsē +
+ ⅤⅠ + , good plantfood + Fruit +
+ +
+ daosē +
+ ⅤⅠ + Fire +
+ +
+ ōwī +
+ ⅤⅠ + Sharp object +
+ +
+ tao͡ohā +
+ ⅤⅠ + Weapon +
+
+
+ Verbs + +
+ dōt +
+ ⅤⅠ + Is +
+ +
+ tōẖ +
+ ⅤⅠ + Is not +
+ +
+ ōẖwā +
+ ⅤⅠ + Do +
+ +
+ dā·ō +
+ ⅤⅠ + Go +
+ +
+ te·ō +
+ ⅤⅠ + Stop +
+ +
+ ōtsē +
+ ⅤⅠ + Eat +
+ +
+ ōdsō +
+ ⅤⅠ + Drink +
+ +
+ hōwē +
+ ⅤⅠ + Make/​create +
+ +
+ äo͡oẖē +
+ ⅤⅠ + Destroy +
+ +
+ däo͡osət +
+ ⅤⅠ + , move this + Give +
+ +
+ dāōsō +
+ ⅤⅠ + , move that + Take +
+ +
+ dōtōhī +
+ ⅤⅠ + , in place + Have +
+ +
+ to͡osō +
+ ⅤⅠ + , a little of that + Want +
+ +
+ däsāt +
+ ⅤⅠ + , a lot of this + Need +
+ +
+ dōdōwə +
+ ⅤⅠ + , become big + Grow +
+ +
+ ōsə +
+ ⅤⅠ + Use +
+ +
+ jāsō +
+ ⅤⅠ + , wind that + Touch/​feel +
+ +
+ jäsātō +
+ Gibberish! + Speak +
+ +
+ dōtōwā +
+ ⅤⅠ + , become wind + Sleep +
+ +
+ hōwōsē +
+ ⅤⅠ + , sun eat + See +
+
+
+ Clothing + +
+ tōdā +
+ ⅤⅠ + Clothing +
+ +
+ dōtädā +
+ ⅤⅠ + , sky clothing + Hat +
+ +
+ dōsōdā +
+ ⅤⅠ + , rain clothing + Shirt +
+ +
+ dasītō +
+ ⅤⅠ + , fire clothing + Pants +
+ +
+ dōtäsā +
+ ⅤⅠ + , snow clothing + Shoes +
+
+
+ Animals + +
+ dātōsō +
+ ⅤⅠ + , good with snow + Wolf +
+ +
+ zōʒō +
+ ⅤⅠ + , thing of water + Frog/​toad +
+ +
+ zōtsā +
+ ⅤⅠ + , thing of ground + Snake +
+ +
+ gao͡osī +
+ ⅤⅠ + , thing of fire + Salamander/​newt +
+ +
+ gōsə +
+ ⅤⅠ + , thing of sky + Bird +
+ +
+ hōtsähē +
+ ⅤⅠ + , ground life + Crab/​turtle +
+ +
+ dāsōtē +
+ ⅤⅠ + , water life + Fish +
+ +
+ tōvähē +
+ ⅤⅠ + , small life + Insects +
+ +
+ dādē +
+ ⅤⅠ + , fast life + Rabbit +
+ +
+ bāō +
+ ⅤⅠ + , small go + Squirrel & similar mammals +
+ +
+ dōwī +
+ ⅤⅠ + , great predator + Bear +
+ +
+ sätso͡otē +
+ ⅤⅠ + , meat animal + Deer +
+ +
+ säte +
+ ⅤⅠ + Animal +
+
+
+ Plants + +
+ daozīat +
+ ⅤⅠ + , fire plants + Flower plants +
+ +
+ hīat +
+ ⅤⅠ + Plants/​vegitation +
+ +
+ dōtīat +
+ ⅤⅠ + , sky plant + Trees +
+ +
+ hōtsīt +
+ ⅤⅠ + , ground plant + Bushes +
+
+
+ Yes/​No + +
+ do͡o +
+ ⅤⅠ + Yes +
+ +
+ +
+ ⅤⅠ + No +
+
+
+ + + +
+ ⊻ ⅤⅠⅠⅠ +
+ Nouns + Adjectives +
+ People + +
+ to͡oād +
+ ⅤⅠⅠ + A person or body +
+ +
+ jāsto͡olæ +
+ ⅤⅠⅠ + to͡oædl, speaking people + A speaker +
+ +
+ ōtfäho͡od +
+ ⅤⅠⅠ + to͡oædl, crab people + A mute +
+ +
+ sæntid +
+ ⅤⅠⅠ + A woman +
+ +
+ ʒitid +
+ ⅤⅠⅠ + A man +
+ +
+ dōwäto͡o +
+ ⅤⅠⅠ + A baby +
+ +
+ tōtid +
+ ⅤⅠⅠ + A young child +
+ +
+ tōtādō +
+ ⅤⅠⅠ + , fast child + An older child +
+ +
+ tōʒo͡otā +
+ ⅤⅠⅠ + , small man + Young adult + Used mainly with males +
+ +
+ dōbōtād +
+ ⅤⅠⅠ + , strong person + Adult +
+ +
+ to͡odävä +
+ ⅤⅠⅠ + Elder +
+ +
+ tāħätœ +
+ ⅤⅠⅠ + Guardian +
+ +
+ tꜵtsā +
+ ⅤⅠⅠ + Hunter +
+ +
+ dāhätsō +
+ ⅤⅠⅠ + Gatherer +
+ +
+ hät’vē +
+ ⅤⅠⅠ , create + Craftsman +
+ +
+ dātäd +
+ ⅤⅠⅠ + Friend +
+ +
+ jo͡ondænted +
+ ⅤⅠⅠ + , loving woman + A caretaker +
+ +
+ hōdōwä +
+ ⅤⅠⅠ + Leader +
+ +
+ æt +
+ ⅤⅠⅠ + + Virgin + Used primarily w/ females +
+ +
+ tātä +
+ ⅤⅠⅠI + Army +
+
+
+ Body Parts + +
+ hā’tō +
+ ⅤⅠⅠ + Hair +
+ +
+ dōtä͆dō +
+ ⅤⅠⅠ + Head +
+ +
+ hādōsī +
+ ⅤⅠⅠ + Eye +
+ +
+ dōtōvī +
+ ⅤⅠⅠ + , head ōwī + Nose +
+ +
+ zōtsē +
+ ⅤⅠⅠ + Mouth +
+ +
+ dājō’fōtō +
+ ⅤⅠⅠ + , takes speech + Ear +
+ +
+ dädhē +
+ ⅤⅠⅠ + Neck/​throat +
+ +
+ dāōdwā +
+ ⅤⅠⅠ + , go strong + Spine +
+ +
+ sa’wā +
+ ⅤⅠⅠ + Arms +
+ +
+ sādō + +
+ ⅤⅠⅠ + Legs +
+ +
+ ħæfōhē +
+ ⅤⅠⅠ + Chest/​torso +
+ +
+ dāəsāsō +
+ ⅤⅠⅠ + , goes back + Joints +
+ +
+ hāso͡otmā +
+ ⅤⅠⅠ + , front of arm + Shoulder +
+ +
+ dōvätħī +
+ ⅤⅠⅠ + , big side + Hip +
+ +
+ hōpājō +
+ ⅤⅠⅠ + , ground touch + Foot +
+ +
+ səhōwē +
+ ⅤⅠⅠ + , that which creates + Hand +
+ +
+ sōjā +
+ ⅤⅠⅠ + , that which touches + Fingers +
+ +
+ ōvītfē +
+ ⅤⅠⅠ + , sharp eater + Tooth +
+ +
+ sōds +
+ ⅤⅠⅠ + , that which drinks + Tongue +
+ +
+ hōpəsātō +
+ ⅤⅠⅠ + , speech maker + Lung +
+ +
+ dōwā’ħē +
+ ⅤⅠⅠ + , great life + Heart +
+ +
+ hā’dōsō +
+ ⅤⅠⅠ + + Blood +
+ +
+ ħōso͡oā͆d +
+ ⅤⅠⅠ + , rock body + Bone +
+ +
+ sätꜵ͆sā +
+ ⅤⅠⅠ + Meat/​flesh +
+ +
+ sōmə +
+ ⅤⅠⅠ + Skin +
+ +
+ ʒœtō +
+ ⅤⅠⅠ + Male genitals +
+ +
+ zætōwo͡o +
+ ⅤⅠⅠ + , female weakness + Female genitals +
+ +
+ nedæ +
+ ⅤⅠⅠ + Female breast +
+ +
+ säthā’ē +
+ ⅤⅠⅠ + , lifemeat + Placenta +
+
+
+ Clothing + +
+ tōdā +
+ ⅤⅠⅠ + Clothing +
+ +
+ dətädā +
+ ⅤⅠⅠ + Hat +
+ +
+ dōmōdä +
+ ⅤⅠⅠ + Shirt +
+ +
+ asōtō +
+ ⅤⅠⅠ + Pants +
+ +
+ dätōsō +
+ ⅤⅠⅠ + Shoes +
+ +
+ jätādə +
+ ⅤⅠⅠ + , animal hat + Mask +
+
+
+ Biorhythms + +
+ sētgē +
+ ⅤⅠⅠ + , food pain + Hunger +
+ +
+ dāfo͡osō +
+ ⅤⅠⅠ + , water need + Thirst +
+ +
+ dōtōlvä +
+ ⅤⅠⅠ to sleep + Sleep +
+ +
+ jōsət +
+ ⅤⅠⅠ + + Waste elimination +
+ +
+ sænäʒē +
+ ⅤⅠⅠ + moon sickness + Menstruation +
+
+
+ Sight + +
+ fōzē +
+ ⅤⅠⅠ + Vision +
+ +
+ ʒꜵ + +
+ ⅤⅠⅠ + Red/​yellow/​orange +
+ +
+ hīa +
+ ⅤⅠⅠ + Green +
+ +
+ jꜵtə +
+ ⅤⅠⅠ + Blue +
+ +
+ bīfeo͡ot +
+ ⅤⅠⅠ + berry + Purple +
+ +
+ dāħētə +
+ ⅤⅠⅠ + + Transparent/​translucent + + + Free of obstructioin or impurity, as in, a dāħetə sky + +
+ +
+ dwīmet +
+ ⅤⅠⅠ + Brown +
+ +
+ nꜵt +
+ ⅤⅠⅠ + Grey +
+ +
+ ʒændā +
+ ⅤⅠⅠ + White + Note: There is no word for black. Dark is used instead. +
+ +
+ ħīfə +
+ ⅤⅠⅠ + Light +
+ +
+ o͡otꜵ +
+ ⅤⅠⅠ + Dark +
+
+
+ Touch + +
+ hōfäsē +
+ ⅤⅠⅠ + Feeling (physical) +
+ +
+ tedsī +
+ ⅤⅠⅠ + Pain +
+
+
+ Taste + +
+ dōjī’dō +
+ ⅤⅠⅠ + throat feelings + Sweet(ness) +
+ +
+ sōfēʒī +
+ ⅤⅠⅠ + tongue pain + Bitter(ness) +
+ +
+ pꜵfē +
+ ⅤⅠⅠ + mouth fire + Hot(ness) +
+ +
+ dātīt +
+ ⅤⅠⅠ + Sour(ness) +
+ +
+ jowäset +
+ ⅤⅠⅠ + ocean food + Salty(ness) +
+
+
+ Smell + +
+ ōjīs +
+ ⅤⅠⅠ + nose emotions + Scent +
+
+
+ Hearing + +
+ dōpäjē +
+ ⅤⅠⅠ + head pain + Loud +
+ +
+ fōʒo͡osō +
+ ⅤⅠⅠ + weak voice + Quiet +
+ +
+ zāpā +
+ ⅤⅠⅠ + Noise +
+ +
+ ʒäsā +
+ ⅤⅠⅠ + Speech +
+ +
+ pōmä +
+ Made up, w/ infl. by ⅤⅠⅠ + + Music +
+
+
+ Emotions + +
+ zā’ō +
+ ⅤⅠⅠ + Emotions +
+ +
+ dōdā +
+ ⅤⅠⅠ + Happiness +
+ +
+ tōpā +
+ ⅤⅠⅠ + Anger +
+ +
+ ħœfō +
+ ⅤⅠⅠ + Sadness +
+ +
+ hōtäjō +
+ ⅤⅠⅠ + + Frustration +
+ +
+ hōzīd +
+ ⅤⅠⅠ + Love (friend) +
+ +
+ no͡omädōsā +
+ ⅤⅠⅠ + Love (beauty)/​awe +
+ +
+ mōwā +
+ ⅤⅠⅠ + Calm/​peaceful +
+ +
+ ʒꜵjə +
+ ⅤⅠⅠ + burning rain + Passion +
+ +
+ dā’ōsē +
+ ⅤⅠⅠ + fast fire + Energetic/excitement +
+
+
+ Life + +
+ hämē +
+ ⅤⅠⅠ + Life +
+ +
+ fä’ē +
+ ⅤⅠⅠ + Death +
+ +
+ däħmē +
+ ⅤⅠⅠ + Alive/​living +
+ +
+ täħ’ē +
+ ⅤⅠⅠ + Dead +
+ +
+ ätē͆ +
+ ⅤⅠⅠ + Sick +
+ +
+ fedsō +
+ ⅤⅠⅠ + pain thing + Injured +
+
+
+ Qualities/​Conditions + +
+ +
+ ⅤⅠⅠ + Fast +
+ +
+ to͡od +
+ ⅤⅠⅠ + Slow +
+ +
+ jōvä +
+ ⅤⅠⅠ + Great +
+ +
+ fōwo͡o +
+ ⅤⅠⅠ + Small/​unimportant +
+ +
+ gōpä +
+ ⅤⅠⅠ + Strong +
+ +
+ tämo͡o +
+ ⅤⅠⅠ + Weak +
+ +
+ dāpe +
+ ⅤⅠⅠ + Good +
+ +
+ tāt +
+ ⅤⅠⅠ + Bad +
+ +
+ mꜵwə +
+ ⅤⅠⅠ + Intelligent/​wise +
+ +
+ dātäʒō +
+ ⅤⅠⅠ + + Stupid/​foolish +
+ +
+ tōtāħhō +
+ ⅤⅠⅠ + Hardworking/​determined +
+ +
+ to͡odvo͡o +
+ ⅤⅠⅠ + + Lazy +
+ +
+ äħmā +
+ Made‐up w/ infl. by ⅤⅠⅠ + Sharp +
+ +
+ ʒo͡od +
+ ⅤⅠⅠ + Fine; OK +
+ +
+ ꜵtfē +
+ ⅤⅠⅠ + Dangerous +
+
+
+ Abstracts + +
+ +
+ ⅤⅠⅠ + + Right +
+ +
+ zäfō +
+ ⅤⅠⅠ + + Wrong +
+ +
+ dävō +
+ ⅤⅠⅠ + Knowledge/​wisdom +
+ +
+ jꜵvə +
+ ⅤⅠⅠ + Power +
+ +
+ sōzo͡omäd +
+ ⅤⅠⅠ + + Beauty +
+ +
+ hōsē +
+ ⅤⅠⅠ + Trust +
+ +
+ dāgꜵwə +
+ ⅤⅠⅠ + + Hope +
+ +
+ dōteħvō +
+ ⅤⅠⅠ + + Courage +
+
+
+ Language + +
+ tōʒo͡otsā +
+ ⅤⅠⅠ + small speech + Word +
+ +
+ dōʒātō +
+ ⅤⅠⅠ + + Statement +
+ +
+ dāʒō +
+ ⅤⅠⅠⅠ + Story (literature) +
+
+
+ Time + +
+ pœt +
+ Made‐up + A moment; also, time +
+ +
+ hœpə +
+ ⅤⅠⅠ + Day, esp. midday +
+ +
+ zænʒā +
+ ⅤⅠⅠ + Night +
+ +
+ ædæ +
+ ⅤⅠⅠ + moon life + Month +
+ +
+ dōvītə +
+ ⅤⅠⅠ + baby sun + Morning +
+ +
+ fəmōvə +
+ ⅤⅠⅠ + old sun + Evening +
+ +
+ sapœ +
+ ⅤⅠⅠ + ⅤⅠⅠⅠ + Now +
+ +
+ zœt +
+ ⅤⅠⅠ + ⅤⅠⅠⅠ + Later +
+
+
+ Numbers + +
+ ʒō +
+ ⅤⅠⅠ + One +
+ +
+ lōs +
+ ⅤⅠⅠ sōl things + Two +
+ +
+ ʒōls +
+ ⅤⅠⅠ + sōl + Three +
+ +
+ zävā +
+ ⅤⅠⅠ hand + Four +
+ +
+ zält +
+ ⅤⅠⅠ sōl + Five +
+ +
+ spō +
+ ⅤⅠⅠ sōl + Six +
+ +
+ ʒät +
+ ⅤⅠⅠ sōl + Seven +
+ +
+ säntōl +
+ ⅤⅠⅠ sat·wāl hands + Eight (10) +
+
+
+ Amount + +
+ lōt +
+ ⅤⅠⅠ no + None +
+ +
+ lo͡od +
+ ⅤⅠⅠ yes + All +
+ +
+ +
+ ⅤⅠⅠ l plural mod. + Some +
+ +
+ vōdə +
+ ⅤⅠⅠ great + Much +
+ +
+ ʒōvo͡o +
+ ⅤⅠⅠ small + Little +
+ +
+ fꜵ +
+ Made‐up + Part +
+ +
+ ed +
+ Made‐up + Complete/​full +
+ +
+ lo͡opō +
+ ⅤⅠⅠ + Empty +
+ +
+ ʒätāzō +
+ ⅤⅠⅠ + More +
+ +
+ dꜵs +
+ ⅤⅠⅠ + Less +
+ +
+ ꜵst +
+ ⅤⅠⅠ + Another +
+
+
+ Substances/​Materials + +
+ dāsō +
+ ⅤⅠⅠ + Water +
+ +
+ vimet +
+ ⅤⅠⅠ + Wood +
+ +
+ pōzäso͡o +
+ ⅤⅠⅠ + Rock/​stone +
+ +
+ pōzə +
+ ⅤⅠⅠ + Ground +
+ +
+ dꜵsē +
+ ⅤⅠⅠ + Fire +
+ +
+ hōzə +
+ ⅤⅠⅠ + strong rock + Metal +
+ +
+ tōvo͡osō +
+ ⅤⅠⅠ + + Clay +
+ +
+ +
+ ⅤⅠⅠ + A thing +
+ +
+ tōtōtsə +
+ ⅤⅠⅠ + + Copper +
+ +
+ dawōtsə +
+ ⅤⅠⅠ + + Bronze +
+ +
+ hīōtsə +
+ ⅤⅠⅠ + + Gold +
+ +
+ ōʒās +
+ ⅤⅠⅠ + Clay +
+ +
+ tōzō +
+ ⅤⅠⅠ + + Cloth +
+ +
+ sōso͡otē +
+ ⅤⅠⅠ + + Leather +
+
+
+ Earth & Sky + +
+ dꜵtə +
+ ⅤⅠⅠ + The sky +
+ +
+ ħītə +
+ ⅤⅠⅠ + The sun +
+ +
+ sænʒä͆ +
+ ⅤⅠⅠ + The moon +
+ +
+ tōvä͆’ē +
+ ⅤⅠⅠ + Star +
+ +
+ hōʒā +
+ ⅤⅠⅠ + Land +
+ +
+ to͡odāsō +
+ ⅤⅠⅠ + A river/​creek +
+ +
+ dœväsō +
+ ⅤⅠⅠ + A large body of water +
+ +
+ tōwo͡odō +
+ ⅤⅠⅠ + small water + A smaller body of water +
+ +
+ dōwätsā +
+ ⅤⅠⅠ + great land + Mtns. +
+ +
+ tōvo͡otzā +
+ ⅤⅠⅠ + weak land + Valleys +
+ +
+ dāsōzā +
+ ⅤⅠⅠ + water land + Island +
+ +
+ ʒꜵ + +
+ ⅤⅠⅠ + skystuff + Air +
+
+
+ Natural Occurances + +
+ dꜵtōsā +
+ ⅤⅠⅠ + sky emotions + Weather +
+ +
+ dātäsō +
+ ⅤⅠⅠ + Cloud +
+ +
+ dōzā +
+ ⅤⅠⅠ + Rain +
+ +
+ dōtəs +
+ ⅤⅠⅠ + Snow +
+ +
+ jōwā +
+ ⅤⅠⅠ + Wind +
+ +
+ ətꜵ +
+ ⅤⅠⅠ + Storm +
+ +
+ jōvəs +
+ ⅤⅠⅠ + hard snow + Hail +
+ +
+ ʒꜵsə +
+ ⅤⅠⅠ + sky fire + Lightning +
+ +
+ hāpē +
+ ⅤⅠⅠ + Spring +
+ +
+ ħīmä +
+ ⅤⅠⅠ + Summer +
+ +
+ tänē +
+ ⅤⅠⅠ + Autumn +
+ +
+ ændə +
+ ⅤⅠⅠ + Winter +
+
+
+ Location + +
+ sahī +
+ ⅤⅠⅠ + Here +
+ +
+ dosī +
+ ⅤⅠⅠ + There +
+ +
+ ħāsō +
+ ⅤⅠⅠ + Front +
+ +
+ səsä +
+ ⅤⅠⅠ + Back +
+ +
+ tihād +
+ ⅤⅠⅠ + Side +
+ +
+ dhītə +
+ ⅤⅠⅠ + Up +
+ +
+ œsə +
+ ⅤⅠⅠ + Down +
+ +
+ +
+ M‐U + Right +
+ +
+ +
+ M‐U + Left +
+ +
+ zätō +
+ ⅤⅠⅠ + Near +
+ +
+ sōjō +
+ ⅤⅠⅠ + Far +
+ +
+ pāzō +
+ ⅤⅠⅠ + Start/​beginning +
+ +
+ ʒätsō +
+ ⅤⅠⅠ + Finish/end +
+
+
+ Pronouns + +
+ +
+ ⅤⅠⅠ + That +
+ +
+ sat +
+ ⅤⅠⅠ + This +
+ +
+ ʒōd +
+ ⅤⅠⅠ + It +
+ +
+ æ +
+ ⅤⅠⅠ + She +
+ +
+ so͡o +
+ ⅤⅠⅠ + He +
+ +
+ shed +
+ ⅤⅠⅠ + They +
+ +
+ əwād +
+ ⅤⅠⅠ + You +
+ +
+ + +
+ ⅤⅠⅠ + Me +
+ +
+ ämīd +
+ ⅤⅠⅠ + Us +
+ +
+ fœt +
+ ⅤⅠⅠ + this or that? + Which +
+ +
+ fōt +
+ ⅤⅠⅠ it? + What +
+ +
+ afōhī +
+ ⅤⅠⅠ here? + Where +
+ +
+ pōe +
+ ⅤⅠⅠⅠ time? + When +
+ +
+ +
+ ⅤⅠⅠ me? + Who +
+
+
+ Physical Condition + +
+ dāzēt +
+ ⅤⅠⅠ + need food + Hunger +
+ +
+ ōdāsō +
+ ⅤⅠⅠ + need drink + Thirst +
+ +
+ dōtäsvā +
+ ⅤⅠⅠ + need sleep + Exhaustion +
+ +
+ ꜵtē +
+ ⅤⅠⅠ + Broken +
+ +
+ to͡odän +
+ ⅤⅠⅠ + Old +
+ +
+ ōtād +
+ ⅤⅠⅠ + Young +
+ +
+ æn +
+ ⅤⅠⅠ + Female +
+ +
+ sœt +
+ ⅤⅠⅠ + Male +
+ +
+ väd +
+ ⅤⅠⅠ + Hard +
+ +
+ ōfo͡o +
+ ⅤⅠⅠ + Soft +
+ +
+ ħœt +
+ ⅤⅠⅠ + Rough +
+ +
+ dæs +
+ ⅤⅠⅠ + Smooth +
+ +
+ ʒōsē +
+ ⅤⅠⅠ + Hot +
+ +
+ œtäs +
+ ⅤⅠⅠ + Cold +
+ +
+ ħēmə +
+ ⅤⅠⅠ + Flexible +
+ +
+ zo͡odsō +
+ ⅤⅠⅠ + + Beautiful +
+ +
+ ħōtʒī +
+ ⅤⅠⅠ + + Ugly +
+
+
+ Expressions + +
+ dātōmē +
+ ⅤⅠⅠ + + Smile +
+ +
+ ʒōtā +
+ ⅤⅠⅠ + Frown +
+ +
+ dəsātō +
+ ⅤⅠⅠ + happy voice + Laughter +
+ +
+ dōjā +
+ ⅤⅠⅠ + Crying +
+
+
+ Animals + +
+ dātōsō +
+ ⅤⅠⅠ + Shortwolf +
+ +
+ zōʒō +
+ ⅤⅠⅠ + Largefrog +
+ +
+ zōfā +
+ ⅤⅠⅠ + Snake +
+ +
+ gꜵsī +
+ ⅤⅠⅠ + Salamander +
+ +
+ gōsə +
+ ⅤⅠⅠ + Bird +
+ +
+ hōto͡osē +
+ ⅤⅠⅠ + + Turtle +
+ +
+ fäʒē +
+ ⅤⅠⅠ + Crab +
+ +
+ dāzät +
+ ⅤⅠⅠ + Fish +
+ +
+ tävē +
+ ⅤⅠⅠ + Insects +
+ +
+ dādē +
+ ⅤⅠⅠ + Frog hare +
+ +
+ bāō +
+ ⅤⅠⅠ + Small mammal +
+ +
+ tabꜵ +
+ ⅤⅠⅠ + zombie mouse + (Poisonous) porcumouse +
+ +
+ dōvī +
+ ⅤⅠⅠ + Otterbear +
+ +
+ sätso͡o’ē +
+ ⅤⅠⅠ + Deer +
+ +
+ zätē +
+ ⅤⅠⅠ + Animal +
+ +
+ ħōfē +
+ ⅤⅠⅠ + plant eater + Platipus‐cow (cattle) +
+ +
+ fꜵzē +
+ ⅤⅠⅠ + Pig +
+ +
+ dätzē +
+ ⅤⅠⅠ + quick animal + Waterfox (cat) +
+
+
+ Plants + +
+ hīät +
+ ⅤⅠⅠ + Vegetation +
+ +
+ dꜵʒīt +
+ ⅤⅠⅠ + Flowering plant +
+ +
+ ōfī +
+ ⅤⅠⅠ + Bush +
+ +
+ dōtīät +
+ ⅤⅠⅠ + Tree +
+
+
+ Food + +
+ sēt +
+ ⅤⅠⅠ + Food +
+ +
+ hīfē +
+ ⅤⅠⅠ + Plantstuffs (edible) +
+ +
+ sāfē +
+ ⅤⅠⅠ + Meat +
+ +
+ tidfē +
+ ⅤⅠⅠ + Fruit +
+ +
+ vōtāsē +
+ ⅤⅠⅠ + starfood + Rice +
+ +
+ dāħītsə +
+ ⅤⅠⅠ + sun fruit + Apple (yellow) +
+ +
+ dædsā +
+ ⅤⅠⅠ + moon fruit + Snow citrus (similar to Satsuma) +
+ +
+ tōvītsē +
+ ⅤⅠⅠ + star fruit + Berry (compound) +
+ +
+ ōdsā’ō +
+ ⅤⅠⅠ + + Alcohol +
+
+
+ Tools + +
+ tꜵwā +
+ ⅤⅠⅠ + Weapon +
+ +
+ ōwī +
+ ⅤⅠⅠ + Sharp object +
+ +
+ bəsī +
+ ⅤⅠⅠ + + Weapon +
+ +
+ ꜵvīt +
+ ⅤⅠⅠ + Knife +
+ +
+ hōfädō +
+ ⅤⅠⅠ + + Wheel +
+ +
+ hōfādsō +
+ ⅤⅠⅠⅠ + + Wheeled cart +
+ +
+ dōtsītō +
+ ⅤⅠⅠ + + Pot (or other container) +
+ +
+ tōzo͡o +
+ ⅤⅠⅠI + clay land + Map +
+
+
+ Jewelry + +
+ däʒētsē +
+ ⅤⅠⅠ + neck fruit + Necklace +
+ +
+ sadētsā +
+ ⅤⅠⅠ + wrist fruit + Bracelet +
+ +
+ ōwītsē +
+ ⅤⅠⅠ + sharp fruit + Piercing +
+
+
+ Instruments + +
+ jāsōtə +
+ ⅤⅠⅠ + + Drums +
+ +
+ ʒā’ō +
+ ⅤⅠⅠ + + Strings +
+ +
+ dōmā +
+ ⅤⅠⅠ + Flutes +
+
+
+ Buildings/​Structures + +
+ do͡omä +
+ ⅤⅠⅠⅠ + + Room +
+ +
+ do͡owātsä +
+ ⅤⅠⅠⅠ + + City +
+
+
+
+ Verbs + +
+ dōt +
+ ⅤⅠⅠ + Is +
+ +
+ hōwā +
+ ⅤⅠⅠ + Do +
+ +
+ dā’ō +
+ ⅤⅠⅠ + Go +
+ +
+ te’ō +
+ ⅤⅠⅠ + Stop +
+ +
+ ōtsē +
+ ⅤⅠⅠ + Eat +
+ +
+ ōdsō +
+ ⅤⅠⅠ + Drink +
+ +
+ ħōwē +
+ ⅤⅠⅠ + Make +
+ +
+ ꜵhē +
+ ⅤⅠⅠ + Destroy +
+ +
+ dꜵsət +
+ ⅤⅠⅠ + Give +
+ +
+ dā’ōsō +
+ ⅤⅠⅠ + Take +
+ +
+ dōhī +
+ ⅤⅠⅠ + Have +
+ +
+ to͡osō +
+ ⅤⅠⅠ + Want +
+ +
+ däsāt +
+ ⅤⅠⅠ + Need +
+ +
+ dədōwä +
+ ⅤⅠⅠ + Grow +
+ +
+ ōsə +
+ ⅤⅠⅠ + Use +
+ +
+ ʒāsō +
+ ⅤⅠⅠ + Touch/​feel +
+ +
+ jäsātō +
+ ⅤⅠⅠ + Speak +
+ +
+ dōtōwä +
+ ⅤⅠⅠ + Sleep +
+ +
+ hōwōsē +
+ ⅤⅠⅠ + See +
+ +
+ dōwāt +
+ ⅤⅠⅠ + make new + Mix +
+ +
+ tōtō +
+ ⅤⅠⅠ able + Can +
+ +
+ dꜵtā’ō +
+ ⅤⅠⅠ + + Fly +
+ +
+ däo͡od +
+ ⅤⅠⅠ + + Grab +
+ +
+ fō’āsō +
+ ⅤⅠⅠ + + Drop +
+ +
+ ēdꜵtī +
+ ⅤⅠⅠ + + Attack +
+ +
+ ätꜵs +
+ ⅤⅠⅠ + + Hurt +
+ +
+ sītā +
+ ⅤⅠⅠ + + Punch +
+ +
+ sētī +
+ ⅤⅠⅠ + + Kick +
+ +
+ sādō + +
+ ⅤⅠⅠ + + Bring +
+ +
+ dōsī +
+ ⅤⅠⅠ + + Come +
+ +
+ tōtā +
+ ⅤⅠⅠ + + Leave +
+ +
+ ħōwatē +
+ ⅤⅠⅠ + + Kill +
+
+
+ Other + +
+ do͡o +
+ ⅤⅠⅠ + Yes +
+ +
+ +
+ ⅤⅠⅠ + No +
+
+ Conjunctions + +
+ +
+ ⅤⅠⅠ + For +
+ +
+ +
+ M.U. + And +
+ +
+ fīt +
+ ⅤⅠⅠ + Nor +
+ +
+ ō +
+ M.U. + But +
+ +
+ äz +
+ ⅤⅠⅠ + Or +
+ +
+ ōd +
+ M.U. + Yet +
+ +
+ +
+ ⅤⅠⅠ + So +
+
+
+ Modifiers + +
+ ‐l +
+ Pluralize +
+ +
+ ‐ħə +
+ ‐ing +
+ +
+ ‐’vet +
+ ‐tion +
+ +
+ ‐’to +
+ ‐er (as in, teacher) +
+ +
+ ‐ā’ʒē +
+ ‐ate +
+ +
+ ‐fl’fə +
+ anti‐ +
+ +
+ ‐fl’ō +
+ un‐ +
+ +
+ mēt’- +
+ re‐ +
+ +
+ dō’- +
+ pro‐ +
+ +
+ ‐’lō +
+ More (as in, closer) +
+ +
+ ‐vō +
+ ‐ify +
+ +
+ ‐ā’ō +
+ trans‐ +
+ +
+ ‐’et +
+ inter‐ +
+ +
+ ‐’gō +
+ Past tense +
+ +
+ lä‐ +
+ Future tense +
+
+
+ Prepositions + +
+ ʒꜵ +
+ ⅤⅠⅠ + With +
+ +
+ ʒoħ +
+ ⅤⅠⅠ + To +
+ +
+ + +
+ ⅤⅠⅠ + From +
+ +
+ zafō +
+ ⅤⅠⅠ + In +
+ +
+ täħdē +
+ ⅤⅠⅠ + Out +
+ +
+ īə +
+ ⅤⅠⅠ + On +
+ +
+ tsə +
+ ⅤⅠⅠ + Off +
+ +
+ ād +
+ ⅤⅠⅠ + Around +
+ +
+ āō +
+ ⅤⅠⅠ + Through +
+ +
+ gōs +
+ ⅤⅠⅠ + Above +
+ +
+ āsō +
+ ⅤⅠⅠ + Below +
+ +
+ āī +
+ ⅤⅠⅠ + Between +
+ +
+ äādī +
+ ⅤⅠⅠ + Beside +
+ +
+ āʒō +
+ ⅤⅠⅠⅠ + + Of +
+
+
+ Articles + +
+ +
+ M.U. + The +
+ +
+ ʒā +
+ M.U. + A +
+ +
+ äʒə +
+ M.U. + Proper Article +
+
+
+
+ + + + + + + +
+ +
diff --git a/data/qjl/srcs/I--VII/page01 b/data/qjl/srcs/I--VII/page01 new file mode 100644 index 0000000..f29eaec Binary files /dev/null and b/data/qjl/srcs/I--VII/page01 differ diff --git a/data/qjl/srcs/I--VII/page01.license b/data/qjl/srcs/I--VII/page01.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page01.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page02 b/data/qjl/srcs/I--VII/page02 new file mode 100644 index 0000000..b7b6dca Binary files /dev/null and b/data/qjl/srcs/I--VII/page02 differ diff --git a/data/qjl/srcs/I--VII/page02.license b/data/qjl/srcs/I--VII/page02.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page02.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page03 b/data/qjl/srcs/I--VII/page03 new file mode 100644 index 0000000..5c731f6 Binary files /dev/null and b/data/qjl/srcs/I--VII/page03 differ diff --git a/data/qjl/srcs/I--VII/page03.license b/data/qjl/srcs/I--VII/page03.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page03.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page04 b/data/qjl/srcs/I--VII/page04 new file mode 100644 index 0000000..efb81f9 Binary files /dev/null and b/data/qjl/srcs/I--VII/page04 differ diff --git a/data/qjl/srcs/I--VII/page04.license b/data/qjl/srcs/I--VII/page04.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page04.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page05 b/data/qjl/srcs/I--VII/page05 new file mode 100644 index 0000000..5c3ac23 Binary files /dev/null and b/data/qjl/srcs/I--VII/page05 differ diff --git a/data/qjl/srcs/I--VII/page05.license b/data/qjl/srcs/I--VII/page05.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page05.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page06 b/data/qjl/srcs/I--VII/page06 new file mode 100644 index 0000000..0ec223c Binary files /dev/null and b/data/qjl/srcs/I--VII/page06 differ diff --git a/data/qjl/srcs/I--VII/page06.license b/data/qjl/srcs/I--VII/page06.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page06.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page07 b/data/qjl/srcs/I--VII/page07 new file mode 100644 index 0000000..e548b0c Binary files /dev/null and b/data/qjl/srcs/I--VII/page07 differ diff --git a/data/qjl/srcs/I--VII/page07.license b/data/qjl/srcs/I--VII/page07.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page07.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page08 b/data/qjl/srcs/I--VII/page08 new file mode 100644 index 0000000..a3d5023 Binary files /dev/null and b/data/qjl/srcs/I--VII/page08 differ diff --git a/data/qjl/srcs/I--VII/page08.license b/data/qjl/srcs/I--VII/page08.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page08.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/I--VII/page09 b/data/qjl/srcs/I--VII/page09 new file mode 100644 index 0000000..33728b9 Binary files /dev/null and b/data/qjl/srcs/I--VII/page09 differ diff --git a/data/qjl/srcs/I--VII/page09.license b/data/qjl/srcs/I--VII/page09.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/I--VII/page09.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/cover b/data/qjl/srcs/RedBook/cover new file mode 100644 index 0000000..c84510e Binary files /dev/null and b/data/qjl/srcs/RedBook/cover differ diff --git a/data/qjl/srcs/RedBook/cover.license b/data/qjl/srcs/RedBook/cover.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/cover.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page01 b/data/qjl/srcs/RedBook/page01 new file mode 100644 index 0000000..9679543 Binary files /dev/null and b/data/qjl/srcs/RedBook/page01 differ diff --git a/data/qjl/srcs/RedBook/page01.license b/data/qjl/srcs/RedBook/page01.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page01.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page02 b/data/qjl/srcs/RedBook/page02 new file mode 100644 index 0000000..26251e5 Binary files /dev/null and b/data/qjl/srcs/RedBook/page02 differ diff --git a/data/qjl/srcs/RedBook/page02.license b/data/qjl/srcs/RedBook/page02.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page02.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page03 b/data/qjl/srcs/RedBook/page03 new file mode 100644 index 0000000..9e6e7d6 Binary files /dev/null and b/data/qjl/srcs/RedBook/page03 differ diff --git a/data/qjl/srcs/RedBook/page03.license b/data/qjl/srcs/RedBook/page03.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page03.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page04 b/data/qjl/srcs/RedBook/page04 new file mode 100644 index 0000000..4557761 Binary files /dev/null and b/data/qjl/srcs/RedBook/page04 differ diff --git a/data/qjl/srcs/RedBook/page04.license b/data/qjl/srcs/RedBook/page04.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page04.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page05 b/data/qjl/srcs/RedBook/page05 new file mode 100644 index 0000000..2eae87f Binary files /dev/null and b/data/qjl/srcs/RedBook/page05 differ diff --git a/data/qjl/srcs/RedBook/page05.license b/data/qjl/srcs/RedBook/page05.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page05.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page06 b/data/qjl/srcs/RedBook/page06 new file mode 100644 index 0000000..4f78794 Binary files /dev/null and b/data/qjl/srcs/RedBook/page06 differ diff --git a/data/qjl/srcs/RedBook/page06.license b/data/qjl/srcs/RedBook/page06.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page06.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page07 b/data/qjl/srcs/RedBook/page07 new file mode 100644 index 0000000..20eec50 Binary files /dev/null and b/data/qjl/srcs/RedBook/page07 differ diff --git a/data/qjl/srcs/RedBook/page07.license b/data/qjl/srcs/RedBook/page07.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page07.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page08 b/data/qjl/srcs/RedBook/page08 new file mode 100644 index 0000000..f82098a Binary files /dev/null and b/data/qjl/srcs/RedBook/page08 differ diff --git a/data/qjl/srcs/RedBook/page08.license b/data/qjl/srcs/RedBook/page08.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page08.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page09 b/data/qjl/srcs/RedBook/page09 new file mode 100644 index 0000000..416703f Binary files /dev/null and b/data/qjl/srcs/RedBook/page09 differ diff --git a/data/qjl/srcs/RedBook/page09.license b/data/qjl/srcs/RedBook/page09.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page09.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page10 b/data/qjl/srcs/RedBook/page10 new file mode 100644 index 0000000..d2abfa1 Binary files /dev/null and b/data/qjl/srcs/RedBook/page10 differ diff --git a/data/qjl/srcs/RedBook/page10.license b/data/qjl/srcs/RedBook/page10.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page10.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page11 b/data/qjl/srcs/RedBook/page11 new file mode 100644 index 0000000..f9e6983 Binary files /dev/null and b/data/qjl/srcs/RedBook/page11 differ diff --git a/data/qjl/srcs/RedBook/page11.license b/data/qjl/srcs/RedBook/page11.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page11.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page12 b/data/qjl/srcs/RedBook/page12 new file mode 100644 index 0000000..79fbe75 Binary files /dev/null and b/data/qjl/srcs/RedBook/page12 differ diff --git a/data/qjl/srcs/RedBook/page12.license b/data/qjl/srcs/RedBook/page12.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page12.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page13 b/data/qjl/srcs/RedBook/page13 new file mode 100644 index 0000000..72ac623 Binary files /dev/null and b/data/qjl/srcs/RedBook/page13 differ diff --git a/data/qjl/srcs/RedBook/page13.license b/data/qjl/srcs/RedBook/page13.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page13.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page14 b/data/qjl/srcs/RedBook/page14 new file mode 100644 index 0000000..9a9694c Binary files /dev/null and b/data/qjl/srcs/RedBook/page14 differ diff --git a/data/qjl/srcs/RedBook/page14.license b/data/qjl/srcs/RedBook/page14.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page14.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjl/srcs/RedBook/page15 b/data/qjl/srcs/RedBook/page15 new file mode 100644 index 0000000..188df86 Binary files /dev/null and b/data/qjl/srcs/RedBook/page15 differ diff --git a/data/qjl/srcs/RedBook/page15.license b/data/qjl/srcs/RedBook/page15.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjl/srcs/RedBook/page15.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/docs/dict b/data/qjt/docs/dict new file mode 100644 index 0000000..97b900e --- /dev/null +++ b/data/qjt/docs/dict @@ -0,0 +1,8076 @@ + + + +]> + + + + + + + + + <seg xml:id="title-main">Jastugay</seg>: <seg xml:id="title-sub">Documentation and Dictionary</seg> + Project Langdev + Lady + + + Version 3, Draft 04 + + + + 2024-08-20 + urn:fdc:langdev.ladys.computer:2024:qjt:docs:dict + + Marked with CC0 1.0 Universal. + + + + The Langdev Project Dictionaries + + +

+ Born digital. + Initially generated via an XSLTeXtensible Stylesheet Language Transformation transform from the Apple dictionary file at , which was in turn largely sourced from the older HTMLHyperText Markup Language dictionary at , then edited by hand to ensure consistent spellings and structure, combining information from both sources as needed. + Commentary added. +

+
+
+ + + + + +

Comprehensive linguistic reference for the various LANGDEV languages.

+
+ + + Used to mark dictionary entries. + The BCP47 type marks an IETFInternet Engineering Task Force language tag, as defined by <choice><abbr>BCP</abbr><expan>Best Current Practices</expan></choice> 47. + The version type is used to denote versions in the list of changes. + The derived type is used to denote derivatives of words. + The unicode type is used to reference a Unicode character. + + The splash type refers to an optional splash quote. + A splash with subtype default identifies the default splash; all others are alternates. + + + +
+ + + + + + English + Jastugay + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Language tag for Jastugay changed from art-Latn-x-qjt to simply qjt-Latn. + A new URIUniform Resource Identifier for the document was provided which uses the urn:fdc:langdev.ladys.computer:2024: prefix. + Some link targets have changed to reflect the new structure of the Langdev site. + 3.04 + + + Minor documentation updates; improvements to the XSLTXSL Transformations stylesheet. + 3.03 + + + Language tag for Jastugay changed from art-x-jst to art-x-qjt to enable use in environments where the art-x- prefix is not usable. + 3.02 + + + Created TEIText Encoding Initiative document based on the final version of the Apple dictionary. + Added back in some missing entries and information from the HTMLHyperText Markup Language dictionary, including etymological information for words derived from the Jastugay lexis. + Normalized spellings according to current best practices. + 3.01 + + + Development of the Apple dictionary continued for some time, likely at least partially overlapping the development period of the HTMLHyperText Markup Language dictionary. + + + Converted the HTMLHyperText Markup Language dictionary into the Apple dictionary format. + Removed etymological information for most entries. + 2.01 + + + Development of the HTMLHyperText Markup Language dictionary continued for some time. + + + Initial HTMLHyperText Markup Language dictionary created. + 1.01 + + + + + +
+ + + + + + + + + + + + + + + + + + + + + 20 August 2024 + +

+ Official Dictionary! + It’s Awesome! + I ♥ Firefox! + v. 8.2b + De‐1337 + Not ‘to be’! + I’m sorry… + My word! + (un)Censored! + Diacritical! + Unicode! + <h2> + Constantly growing! + Now organic! + Derive this! + y′ + Something different! + Thank you! + Math.random() + ‘Single quotes’! + Not my fault! + Safe! + Refreshing! + What’s this? + Jästūgā is evolving! + ECHO! + …echo… + Look inside! + Learn it! + Synergy! + Not parasitic! + Symbiotic! + Non‐toxic! + Fancy! + Ezh! + -moz-animate + Hid + den + Mess + age! + With taste! + Sounds good! + Emotional! + Life! + Abstract! + Not moldy! + It’s time! + Count me in! + You animal! + Vegetable! + FOOD! + A tool! + Pretty! + Musical! + Building! + A work of art! + Yes! + Modified! + Ōdō! + Action! + β! +

+
+
+ + + +
+

+ Jastugay (jästūgā) is an early culture and language in the Jastu‐Fizonal sprachbund. + It is a direct descendant of Jastulae and the principal ancestor language to Zheshwi. +

+

+ Unlike other languages in the Jastu‐Fizonal family, Jastugay does actually have direct attestation, albeit in a very small fragment of text: pə dätzē āʒo dāʒo (a gloss of this text is available here: ). + Note that this text is an unmistakably early form of the language and features grammatical constructs not present in the version documented here. +

+

+ Dearth of evidence aside, Jastugay is a complete, if small, language with a functioning, albeit rudimentary, grammar that can be used for the composition of meaningful texts. +

+

+ Jastugay has been given the language code qjt; the script subtag Latn should also be supplied. + A native script for Jastugay was developed; the tag Qabj may be used to indicate it. +

+
+ Phonology +

+ Syllables in Jastugay are relatively simple, having an onset of zero or one consonant, a single vowel or diphthong, and an optional coda. + The consonant inventory is as follows: +

+ + + + Glottal + Velar + Post‐Alveolar + Alveolar + Labial + + + Sonorants + + + tl + n + w + + + Stop + + g + + t, d + p + + + Fricative + h + x + ʒ + s + f + +
+

+ A few of these sounds are the result of mergers: +

+ + /w/ was historically sometimes realized as [m]. + /ʒ/ was historically sometimes realized as [z]. + /f/ was historically sometimes realized as [v]. + +

+ Only /s/, /d/, /t/, and /x/ are permitted in syllable codas; /n/ cannot start syllables and is only permitted after the diphthong /eɘ/ (and may be followed by another consonant). + /tl/ is syllabic and features neither vowel nor coda; in later periods, it is often realized [ʔɫ]. + Voicing is only phonemic for the alveolar consonants. +

+

+ The vowel inventory is as follows: +

+ + + + Back + Front + + + Close + ɑ + + + + Mid + ʌ + ɛ + + + Open + u + i + + + A⁓ + + + + + E⁓ + + + + + O⁓ + ɔʊ + ɔɪ + +
+

+ Jastugay formerly had a close front vowel /æ/, but it merged with /ɑ/. +

+
+
+ Orthography +

+ Jastugay follows a straightforward phonetic orthography based in English pronunciation: +

+ + + Letter + Pronunciation + Letter + Pronunciation + + + ä + /ɑ/ + ī + /aɪ/ + + + ā + /eɪ/ + j + /dʒ/ + + + æ + /eɘ/ + l’ + /tl/ + + + å + /aʊ/ + n + /n/ + + + d + /d/ + ō + /ɔʊ/ + + + ë + /ɛ/ + œ + /ɔɪ/ + + + ē + /i/ + p + /p/ + + + ə + /ʌ/ + s + /s/ + + + f + /f/ + t + /t/ + + + g + /g/ + ū + /u/ + + + h + /h/ + w + /w/ + + + ħ + /x/ + ʒ + /ʒ/ + +
+

+ There is also a native syllabary for the language: . + Note that this syllabary predates the loss of certain phonemes, like /v/, /m/, and /z/. +

+
+
+ Grammar +

+ Basic word order in Jastugay is OVSObject‐Verb‐Subject (passive voice) or SOVSubject‐Object‐Verb (active voice). + Passive voice is the default and required for verbs without an object. +

+

+ Jastugay does not have nouns and adjectives proper; these are combined into a single word class (nominals). + Noun phrases consist of a required article (or determiner?), any number of postpositional phases, and finally the nominal which is functioning as a noun. + This may be further followed by any number of nominals functioning as adjectives. +

+

+ Plurality is not marked on nominals. + All numbers require a classifier (). +

+

+ Verbs are conjugated for mood but not tense/aspect or nominal agreement. + Modal conjugation takes the form of a prefix appended to the verb, and optionally a suffix as well. +

+

+ Jastugay does not feature grammatical gender per se, but the vowel æ(n) has strong feminine associations. + Consequently, the normally nongendered becomes with a feminine referent. +

+
+
+ + + +
+ + + + + +
+ æt +
+ + + adjective + + (of a woman) having not had sexual intercourse + + + + noun + + a woman who has not had sexual intercourse + +
+ +
+ dāhätsō +
+ + + adjective + + being a collector + + + + noun + + a collector or a gatherer of materials + +
+ +
+ dātäd +
+ + + adjective + + friendly + + + + noun + + a friend + +
+ +
+ dōgōtād +
+ + + adjective + + adult + + + + noun + + an adult + +
+ +
+ dōwätū +
+ + + adjective + + possessing babylike qualities + very small in size, usu. with connotations of cuteness + + + + noun + + a baby + +
+ +
+ hätfē +
+ + + adjective + + skilled, esp. in making things by hand + + + + noun + + a craftsman + +
+ +
+ hōdōwä +
+ + + adjective + + having the qualities of a leader + chief; most important + + + + noun + + a leader + +
+ +
+ jästūgā +
+ + + adjective + + of the Jastugay culture + written in the Language + + + + noun + + + äʒə jästūgā + the Language + + + ʒā jästūgā + a speaker of the Language or someone of the Jāstūgā culture + + + pə jāstūgā + the Jāstūgā people + + +
+ +
+ jūdæntëd +
+ + + adjective + + caring + + + + noun + + a caretaker + +
+ +
+ ōtfähūd +
+ + + adjective + + mute + + + + noun + + a mute + +
+ +
+ sæntëd +
+ + + adjective + + having the characteristics of a woman; womanly + used as a term of endearment for young girls to praise their maturity. + + + + noun + + a woman + +
+ +
+ tāħätœ +
+ + + adjective + + protective + + + + noun + + a guardian + +
+ +
+ tātä +
+ + + adjective + + military + (of a group) organized and disciplined + + + + noun + + an organized military force + + +
+ +
+ tåtsā +
+ + + adjective + + skilled at hunting or tracking + + + + noun + + a hunter + +
+ +
+ tōtādō +
+ + + adjective + + immature + + + + noun + + an older child + +
+ +
+ tōtëd +
+ + + adjective + + childish + + + + noun + + a younger child + +
+ +
+ tōʒūtā +
+ + + adjective + + exhibiting youth and maturity + + + + noun + + a young adult + +
+ +
+ tūād +
+ + + adjective + + of or concerning the body + + + + noun + + one’s body + +
+ +
+ tūdäfä +
+ + + adjective + + exhibiting age and wisdom + + + + noun + + an elder + +
+ +
+ ʒëtëd +
+ + + adjective + + having the characteristics of a man + + + + noun + + a man + +
+ +
+ dädhē +
+ + + adjective + + relating to the throat + throaty + + + + noun + + a neck or throat + the manner in which a person speaks + +
+ +
+ dājōfōtō +
+ + + adjective + + relating to the ear + having the qualities of a good listener + + + + noun + + an ear + a good listener + +
+ +
+ dāōdwā +
+ + + adjective + + relating to the spine + vertebrate + + + + noun + + a spine + the supporting framework of a structure + +
+ +
+ dāəsāsō +
+ + + adjective + + of a joint or connection + jointed + + + + noun + + a joint + +
+ +
+ dōtädō +
+ + + adjective + + of the head + principal + + + + noun + + a head + a person in charge of making decisions in a group + the most important step in a procedure + +
+ +
+ dōtōfī +
+ + + adjective + + of the nose + (of a voice or speech) resonating in the nose + + + + noun + + a nose + +
+ +
+ dōfätħī +
+ + + adjective + + of the hip + + + + noun + + a hip + +
+ +
+ dōwāħē +
+ + + adjective + + of the heart + positioned in the center + + + + noun + + a heart + an integral or central part of something + +
+ +
+ ëdæn +
+ + + adjective + + of the female breast + + + + noun + + a female breast + a part of a garment designed to cover the female breast + +
+ +
+ hādōsī +
+ + + adjective + + of the eye + (of a person) comprehending best through visual means + + + + noun + + an eye + +
+ +
+ hādōsō +
+ + + adjective + + of the blood + (of an event) involving bloodshed + covered in blood + + + + noun + + blood + bloodshed + +
+ +
+ ħāfōhē +
+ + + adjective + + of the chest + core + + + + noun + + a chest + a torso + a central part of something + +
+ +
+ hāsūtwā +
+ + + adjective + + of the shoulder + on the edge + + + + noun + + a shoulder + a part of a garment designed to cover the shoulder + a part of something with a similar shape or position to the human shoulder + +
+ +
+ hātō +
+ + + adjective + + of the hair + having a large amount of hair; hairy + + + + noun + + a hair + +
+ +
+ hōpājō +
+ + + adjective + + of the foot + at the start or lowest point + + + + noun + + a foot + the part of something which touches the ground; the base + the starting point or first step of a procedure + +
+ +
+ hōpəsātō +
+ + + adjective + + of the lung + related to breathing + + + + noun + + a lung + +
+ +
+ ħōsūād +
+ + + adjective + + of the bones + bony + + + + noun + + a bone + a part of the frame or support of a structure + +
+ +
+ ōwītfē +
+ + + adjective + + of the teeth + having teeth, esp. having large or numerous teeth + + + + noun + + a tooth + + pə ōwītfē + the teeth of an individual + + +
+ +
+ sādō¹ +
+ + + adjective + + of the leg + having limbs + + + + noun + + a leg + a support for a structure connecting to the ground + +
+ +
+ sätåsā +
+ + + adjective + + of meat or flesh + having a large amount of muscle + + + + noun + + meat or flesh + muscle + the edible part of something + +
+ +
+ säthāē +
+ + + adjective + + of the placenta + + + + noun + + a placenta + +
+ +
+ sōds +
+ + + adjective + + of the tongue + talkative + + + + noun + + a tongue + +
+ +
+ sōjā +
+ + + adjective + + of the finger + having long fingers + + + + noun + + a finger + a slender object resembling a finger + +
+ +
+ sōwə +
+ + + adjective + + of the skin + naked + + + + noun + + skin + an outer covering or layer + +
+ +
+ səhōwē +
+ + + adjective + + of or for use by the hand + + + + noun + + a hand + an item attributable to someone because of certain features it contains, esp. in reference to art or handwriting + +
+ +
+ səwā +
+ + + adjective + + of an arm + + + + noun + + an arm + a support of a structure which does not connect to the ground + +
+ +
+ ʒætōwū +
+ + + adjective + + of the female reproductive system + + + + noun + + a female’s reproductive system, esp. a vulva + +
+ +
+ ʒœtō +
+ + + adjective + + of the male reproductive system + + + + noun + + a male’s reproductive system, esp. a penis + +
+ +
+ ʒōtsē +
+ + + adjective + + of the mouth + + + + noun + + a mouth + a large opening, esp. in the front of something + +
+ +
+ əsōtō +
+ + + adjective + + of a pair of pants + + + + noun + + a pair of pants + +
+ +
+ dätōsō +
+ + + adjective + + of a shoe + + + + noun + + a shoe + +
+ +
+ dōwōdä +
+ + + adjective + + of a shirt + + + + noun + + a shirt + a loose covering + +
+ +
+ dətädā +
+ + + adjective + + of a hat + + + + noun + + a hat + a protective cover or lid, especially when used on the top of an object. + +
+ +
+ jätādə +
+ + + adjective + + masked + + + + noun + + a mask + +
+ +
+ tōdā +
+ + + adjective + + wearing clothing + + + + noun + + an article of clothing + clothing collectively + +
+ +
+ dāfūsō +
+ + + adjective + + thirsty + + + + noun + + thirst + +
+ +
+ dōtōgä +
+ + + adjective + + tired + + + + noun + + sleep + +
+ +
+ jōsət +
+ + + adjective + + needing to excrete waste + + + + noun + + an elimination of bodily waste + +
+ +
+ sænäʒē +
+ + + adjective + + menstrual + + + + noun + + menstruation + +
+ +
+ sētgē +
+ + + adjective + + hungry + + + + noun + + hunger + +
+ +
+ bīfëūt +
+ + + adjective + + colored purple + + + + noun + + a purple color + +
+ +
+ dāhētə +
+ + + adjective + + transparent or translucent + lacking impurity or blemish + (of a statement) without fault or contradiction + unobscured, esp. of a choice or when referring to visibility + + + + noun + + translucency or clearness + +
+ +
+ dœwët +
+ + + adjective + + colored brown + + + + noun + + a brown color + +
+ +
+ fōʒē +
+ + + adjective + + visible + + + + noun + + vision + +
+ +
+ hīə +
+ + + adjective + + colored green + having large amounts of plant matter + + + + noun + + a green color + +
+ +
+ hīfə +
+ + + adjective + + luminous + + + + noun + + light + +
+ +
+ jåtə +
+ + + adjective + + colored blue + + + + noun + + a blue color + +
+ +
+ wåt +
+ + + adjective + + colored grey + cloudy, esp. with precipitation + + + + noun + + a grey color + +
+ +
+ utå¹ +
+ + + adjective + + darkly colored + colored black + + + + noun + + a dark color, esp. black + +
+ +
+ ʒå¹ +
+ + + adjective + + warmly colored + + + + noun + + a warm color + +
+ +
+ ʒændā +
+ + + adjective + + lightly colored + colored white + + + + noun + + a light color, esp. white + +
+ +
+ hōfäsē +
+ + + adjective + + sensitive to the touch + + + + noun + + physical feeling, esp. the sense of touch + +
+ +
+ tëdsī +
+ + + adjective + + painful + + + + noun + + a feeling of pain + +
+ +
+ dātīt +
+ + + adjective + + sour + + + + noun + + sourness + +
+ +
+ dōjīdō +
+ + + adjective + + sweet + + + + noun + + sweetness + +
+ +
+ jōwäsët +
+ + + adjective + + salty + + + + noun + + salt + saltiness + +
+ +
+ påfē +
+ + + adjective + + having a hot (spicy) flavor + + + + noun + + hotness (spiciness) + +
+ +
+ sōfēʒī +
+ + + adjective + + bitter + + + + noun + + bitterness + +
+ +
+ ōjīs +
+ + + adjective + + having a powerful odor + + + + noun + + a scent + +
+ +
+ dōpäjē +
+ + + adjective + + loud; noisy + (of a person) particularly rude or obnoxious + + + + noun + + noise + +
+ +
+ fōʒūsō +
+ + + adjective + + quiet + (of a person) shy or modest + + + + noun + + silence + +
+ +
+ ʒāpā +
+ + + adjective + + producing sound + + + + noun + + a sound + +
+ +
+ ʒäsā¹ +
+ + + adjective + + talkative + + + + noun + + speech + +
+ +
+ pōwä +
+ + + adjective + + musical; melodic + + + + noun + + a piece of music + music collectively + +
+ +
+ ʒāō¹ +
+ + + adjective + + emotional + + + + noun + + an emotion + +
+ +
+ dōdā +
+ + + adjective + + happy + + + + noun + + happiness + +
+ +
+ tōpā +
+ + + adjective + + angry + + + + noun + + anger + +
+ +
+ ħœfō +
+ + + adjective + + sad + + + + noun + + sadness + +
+ +
+ hōtäjō +
+ + + adjective + + frustrated + + + + noun + + frustration + +
+ +
+ hōʒīd +
+ + + adjective + + loving + + + + noun + + love, between friends or family + +
+ +
+ jūwændōsā +
+ + + adjective + + awed + + + + noun + + awe, esp. as the result of art or beauty + +
+ +
+ wōwā +
+ + + adjective + + calm or peaceful + + + + noun + + calmness or peacefulness + +
+ +
+ ʒåjə +
+ + + adjective + + passionate + + + + noun + + passion, esp. for a person, idea, or activity + +
+ +
+ dāōsē +
+ + + adjective + + excited + + + + noun + + mental energy; excitement + +
+ +
+ häwē +
+ + + adjective + + alive + + + + noun + + life + +
+ +
+ +
+ + + adjective + + containing energy; energized + + + + noun + + energy + +
+ +
+ fäē +
+ + + adjective + + dead + + + + noun + + death + +
+ +
+ däħwē +
+ + + adjective + + healthy + + + + noun + + health + +
+ +
+ täħē +
+ + + adjective + + dying + + + + noun + + the process of dying + +
+ +
+ ätē +
+ + + adjective + + sick + + + + noun + + a sickness + +
+ +
+ fëdsō +
+ + + adjective + + injured + + + + noun + + an injury + +
+ +
+ +
+ + + adjective + + morally right (correct) + factually accurate or true + + + + noun + + correctness + +
+ +
+ ʒäfō +
+ + + adjective + + morally wrong + factually inaccurate or false + + + + noun + + incorrectness + +
+ +
+ däfō +
+ + + adjective + + knowledgeable + + + + noun + + knowledge + +
+ +
+ jåfə +
+ + + adjective + + powerful + + + + noun + + power + +
+ +
+ sōʒūwäd +
+ + + adjective + + beautiful + + + + noun + + beauty + +
+ +
+ hōsē +
+ + + adjective + + trusting + + + + noun + + trust + +
+ +
+ dāgåwə +
+ + + adjective + + hopeful + + + + noun + + hope + +
+ +
+ dōtëħfō +
+ + + adjective + + courageous + + + + noun + + courage + +
+ +
+ tōʒūtsā +
+ + + adjective + + (of a statement) brief + + + + noun + + a word + +
+ +
+ dōʒātō +
+ + + adjective + + (of a statement) with purpose or meaning + + + + noun + + a statement + +
+ +
+ pœt +
+ + + adjective + + momentary + + + + noun + + a moment + time collectively + +
+ +
+ hœpə +
+ + + adjective + + occurring at midday + + + + noun + + a day + midday + +
+ +
+ ʒænʒā +
+ + + adjective + + occurring at night + + + + noun + + night + +
+ +
+ ædæ +
+ + + adjective + + occurring every month + + + + noun + + a month + +
+ +
+ dōfītə +
+ + + adjective + + occurring in the morning + + + + noun + + morning + +
+ +
+ fəwōfə +
+ + + adjective + + occurring in the evening + nearing the end of its life + + + + noun + + evening + +
+ +
+ səpœ +
+ + + adjective + + current; occurring presently + + + + noun + + the present + + + +
+ +
+ ʒœt +
+ + + adjective + + occurring in the future + + + + noun + + the future + +
+ +
+ pəsä +
+ + + adjective + + occurring in the past + + + + noun + + the past + +
+ +
+ ʒō¹ +
+ + + adjective + + first + + + + quantifier + + one + +
+ +
+ wōs +
+ + + adjective + + second + + + + quantifier + + two + +
+ +
+ gōjū +
+ + + adjective + + third + + + + quantifier + + three + +
+ +
+ ʒäfā +
+ + + adjective + + fourth + + + + quantifier + + four + +
+ +
+ wāt +
+ + + adjective + + fifth + + + + quantifier + + five + +
+ +
+ sōpō +
+ + + adjective + + sixth + + + + quantifier + + six + +
+ +
+ jät +
+ + + adjective + + seventh + + + + quantifier + + seven + +
+ +
+ sæntō +
+ + + adjective + + eighth + + + + quantifier + + eight + +
+ +
+ dāsō +
+ + + adjective + + fluid; watery + + + + noun + + water + +
+ +
+ fëwët +
+ + + adjective + + made of wood + + + + noun + + wood + +
+ +
+ pōʒäsō +
+ + + adjective + + made of stone + + + + noun + + stone + a rock + +
+ +
+ pōʒə +
+ + + adjective + + of the ground, as opposed to being of the sky + + + + noun + + ground + +
+ +
+ dåsē +
+ + + adjective + + burning + + + + noun + + fire + a flame + +
+ +
+ dōʒə +
+ + + adjective + + made of metal + + + + noun + + metal + +
+ +
+ tōfūsō +
+ + + adjective + + made of clay + + + + noun + + clay + +
+ +
+ dåtə +
+ + + adjective + + of the sky + pointed skyward + + + + noun + + the sky + +
+ +
+ ħītə +
+ + + adjective + + of or relating to the moon + + + + noun + + the moon + +
+ +
+ tōfäē +
+ + + adjective + + of a star + guiding, helpful + + + + noun + + a star + +
+ +
+ hōʒā +
+ + + adjective + + of the land + + + + noun + + the land + +
+ +
+ tūdāsō +
+ + + adjective + + of a river + + + + noun + + a river or creek + +
+ +
+ dœfäsō +
+ + + adjective + + of a large body of water + + + + noun + + a large body of water + +
+ +
+ tōwūdō +
+ + + adjective + + of a smaller body of water + + + + noun + + a smaller body of water + +
+ +
+ dōwätsā +
+ + + adjective + + of a mountain + mountainous + + + + noun + + a mountain + +
+ +
+ tōfūtʒā +
+ + + adjective + + of a valley + (of a surface) indented + + + + noun + + a valley + an indentation in a flat surface + +
+ +
+ dāsōʒā +
+ + + adjective + + of an island + isolated + + + + noun + + an island + +
+ +
+ ʒå² +
+ + + adjective + + of the air + airy; open + moving with a fluid motion; free + + + + noun + + air + +
+ +
+ gūpə +
+ + + adjective + + of the Earth + + + + noun + + a world, esp. the Earth + + gūd + allground +
+ +
+ dåtōsā +
+ + + adjective + + having weather + + + + noun + + weather + the atmosphere produced by a group or conversation + +
+ +
+ dātäsō +
+ + + adjective + + cloudy + + + + noun + + a cloud + +
+ +
+ dōʒā +
+ + + adjective + + rainy + + + + noun + + the rain + a raindrop + +
+ +
+ dōtəs +
+ + + adjective + + snowy + + + + noun + + the snow + a snowflake + +
+ +
+ jōwā +
+ + + adjective + + windy + + + + noun + + a wind + +
+ +
+ utå² +
+ + + adjective + + stormy + + + + noun + + a storm + +
+ +
+ jōfəs +
+ + + adjective + + hailing + + + + noun + + hail + a hailstone + +
+ +
+ ʒåsə +
+ + + adjective + + characterized by or producing lightning + + + + noun + + lightning + a lightning bolt + +
+ +
+ hāpē +
+ + + adjective + + vernal + + + + noun + + a period characterized by lengthening days centered around the vernal equinox and taking up one‐fourth of the year + +
+ +
+ ħīwä +
+ + + adjective + + annual + estival + + + + noun + + a year + a period characterized by warmer temperatures and longer days centered around the summer solstice and taking up one‐fourth of the year + +
+ +
+ täænē +
+ + + adjective + + autumnal + + + + noun + + a period characterized by shortening days centered around the autumnal equinox + +
+ +
+ ændə +
+ + + adjective + + hibernal + + + + noun + + a period characterized by colder temperatures and short days centered around the winter solstice and taking up one‐fourth of the year + +
+ +
+ tæn +
+ + + feminine given name + + + +
+ +
+ īōtæhīə +
+ + + feminine given name + + + + green shoot + +
+ īō +
+
+
+ +
+ īō +
+ + + feminine given name + + + +
+ +
+ +
+ + + adjective + + quick + nimble + clever + + + + noun + + speed + +
+ +
+ tūd +
+ + + adjective + + slow + + + + noun + + slowness; sloth (trait) + +
+ +
+ jōfä +
+ + + adjective + + grand; great + + + + noun + + grandiosity; greatness + +
+ +
+ fōwū +
+ + + adjective + + small; unimportant + + + + noun + + smallness; unimportance + +
+ +
+ gōpä +
+ + + adjective + + strong + + + + noun + + strength + +
+ +
+ täwū +
+ + + adjective + + weak + + + + noun + + the condition of being weak + a weakness + +
+ +
+ dāpë +
+ + + adjective + + good + + + + noun + + goodness + +
+ +
+ tāt +
+ + + adjective + + bad + + + + noun + + badness + +
+ +
+ wåwə +
+ + + adjective + + wise + + + + noun + + wisdom + +
+ +
+ dātäʒō +
+ + + adjective + + stupid + + + + noun + + stupidity + + Usage of dātäʒō is generally considered rude, use if possible. +
+ +
+ täʒō +
+ + + adjective + + foolish + + + + noun + + foolishness + + +
+ +
+ tōtāħhō +
+ + + adjective + + hardworking; determined + + + + noun + + the quality of being hardworking; determination + +
+ +
+ tūdfū +
+ + + adjective + + lazy + + + + noun + + laziness + +
+ +
+ äħmō +
+ + + adjective + + sharp + (of a statement) particularly harsh or direct + + + + noun + + sharpness + +
+ +
+ ħāsō +
+ + + adjective + + front + + + + noun + + the front side + the leading edge + +
+ +
+ səsä +
+ + + adjective + + back + + + + noun + + the back side + +
+ +
+ tīhād +
+ + + adjective + + of a side, esp. other than the front or back + + + + noun + + a side + +
+ +
+ dītə +
+ + + adjective + + top + + + + noun + + the top side + +
+ +
+ œsə +
+ + + adjective + + bottom + + + + noun + + the bottom side + +
+ +
+ +
+ + + adjective + + right + + + + noun + + the right side + +
+ +
+ +
+ + + adjective + + left + + + + noun + + the left side + +
+ +
+ ʒätō +
+ + + adjective + + near + (of an idea) relevant + + + + noun + + nearness + (of an idea) relevance + +
+ +
+ sōjō +
+ + + adjective + + far + (of an idea) irrelevant + + + + noun + + distance + +
+ +
+ ʒī +
+ + + first person pronoun + + + +
+ +
+ əwād +
+ + + second person pronoun + + + +
+ +
+ æ +
+ + + feminine third person pronoun + + + +
+ +
+ ā +
+ + + neuter third person pronoun + + + +
+ +
+ ʒōd +
+ + + inanimate third person pronoun + + + +
+ +
+ sət +
+ + + proximal demonstrative adjective + + + + + + proximal demonstrative noun + + + +
+ +
+ ʒō² +
+ + + medial demonstrative adjective + + + + + + medial demonstrative noun + + + +
+ +
+ +
+ + + distal demonstrative adjective + + + + + + distal demonstrative noun + + + +
+ +
+ səī + sähī +
+ + + proximal locational pronoun + + + +
+ +
+ dōsī¹ +
+ + + medial locational pronoun + + + +
+ +
+ sëd +
+ + + distal locational pronoun + + + +
+ +
+ +
+ + + animate interrogative pronoun + + + +
+ +
+ fōt + fœt +
+ + + inanimate interrogative pronoun + + + +
+ +
+ dāʒēt +
+ + + adjective + + starving + + + + noun + + starvation + +
+ +
+ ōdāsō +
+ + + adjective + + extremely thirsty + + + + noun + + suffering or death caused by thirst + +
+ +
+ dōtäsfā +
+ + + adjective + + exhausted + + + + noun + + exhaustion + +
+ +
+ åtə + åtë +
+ + + adjective + + broken + + + + noun + + the state of being broken + +
+ +
+ tūwä + tūdæn +
+ + + adjective + + old; aged + + + + noun + + age + +
+ +
+ ōtād +
+ + + adjective + + young + + + + noun + + youth + +
+ +
+ æn +
+ + + adjective + + female + + + + noun + + femininity + +
+ +
+ sœt +
+ + + adjective + + male + + + + noun + + masculinity + +
+ +
+ fäd +
+ + + adjective + + hard + difficulty + + + + noun + + hardness + difficult + +
+ +
+ ōfū +
+ + + adjective + + soft + (of a person) gentle + + + + noun + + softness + +
+ +
+ ħœt +
+ + + adjective + + rough + (of a person) lacking tact + (of a work) unpolished; crude + + + + noun + + roughness + +
+ +
+ dæs +
+ + + adjective + + smooth + (of a person) tactful + (of a work) polished; finished + + + + noun + + smoothness + (of a person) tact + (of a work) level of completion or polish + +
+ +
+ ʒōsē +
+ + + adjective + + hot + + + + noun + + heat + +
+ +
+ œtäs +
+ + + adjective + + cold + + + + noun + + coldness + +
+ +
+ ħēwə +
+ + + adjective + + flexible + (of a person) open to change + + + + noun + + flexibility + (of a person) openness to change + +
+ +
+ ʒūdsō +
+ + + adjective + + beautiful + + + + noun + + beauty + +
+ +
+ ħōtʒī +
+ + + adjective + + ugly + (of a situation) undesirable + + + + noun + + ugliness + +
+ +
+ dātōwē +
+ + + adjective + + smiling + + + + noun + + a smile + +
+ +
+ ʒōtā +
+ + + adjective + + frowning + + + + noun + + a frown + +
+ +
+ dəsātō +
+ + + adjective + + laughing + + + + noun + + laughter + +
+ +
+ dōjā +
+ + + adjective + + crying + + + + noun + + a tear + +
+ +
+ dātōsō +
+ + + adjective + + wolflike + + + + noun + + a wolf + +
+ +
+ ʒōʒō +
+ + + adjective + + froglike + + + + noun + + a frog + +
+ +
+ ʒōfā +
+ + + adjective + + snakelike + + + + noun + + a snake + +
+ +
+ gåsī +
+ + + adjective + + having the qualities or appearance of a salamander + + + + noun + + a salamander + +
+ +
+ gōsə +
+ + + adjective + + birdlike + + + + noun + + a bird + +
+ +
+ hōtūsē +
+ + + adjective + + crablike + (of a person) not willing to share one’s opinions + + + + noun + + a crab + one who is not willing to share one’s opinions + +
+ +
+ dāʒät +
+ + + adjective + + fishlike + (of a person) hard to contact or reach + + + + noun + + a fish + +
+ +
+ täfē +
+ + + adjective + + insectlike + + + + noun + + an insect + +
+ +
+ dādē +
+ + + adjective + + having the qualities or appearance of a leporid + + + + noun + + a leporid + (fictional) an aquatic species of hare + +
+ +
+ gāō +
+ + + adjective + + having qualities commonly attributed to small mammals + + + + noun + + a small mammal + +
+ +
+ täbå +
+ + + adjective + + mouselike + + + + noun + + a mouse or rat + a fictional species of spiny rat + +
+ +
+ dōfī +
+ + + adjective + + bearlike + + + + noun + + a bear + +
+ +
+ sätsūē +
+ + + adjective + + deerlike + + + + noun + + a deer + +
+ +
+ ʒätē +
+ + + adjective + + having animal qualities + + + + noun + + animal + +
+ +
+ ħōfē +
+ + + adjective + + cowlike + + + + noun + + a cow + (fictional) a semiaquatic creature that feeds on seaweed and aquatic grasses + +
+ +
+ fåʒē +
+ + + adjective + + piglike + (of a person) humble + + + + noun + + a pig + +
+ +
+ dätʒē +
+ + + adjective + + foxlike + (of a person) swift, nimble, or clever + + + + noun + + a fox + (fictional) a semiaquatic foxlike creature that feeds mainly on fish and berries + +
+ +
+ hīät +
+ + + adjective + + vegetated + + + + noun + + vegetation + +
+ +
+ dåʒīt +
+ + + adjective + + flowery + elaborate or full of adornment + + + + noun + + a flowering plant + +
+ +
+ ōfī +
+ + + adjective + + bushlike + complex or chaotic + overgrown + + + + noun + + a bush + +
+ +
+ dōtīät +
+ + + adjective + + treelike + forested + + + + noun + + a tree + +
+ +
+ īōtā +
+ + + adjective + + sproutlike + (of a person) particularly new or unexperienced in a feild + + + + noun + + a sprout + +
+ +
+ sēt +
+ + + adjective + + edible + + + + noun + + food + +
+ +
+ hīfē +
+ + + adjective + + vegetable + + + + noun + + edible plantstuffs, esp. other than fruit + +
+ +
+ sāfē +
+ + + adjective + + (of a food) made primarily of meat + + + + noun + + meat + +
+ +
+ tīdfē +
+ + + adjective + + (of a food) made primarily of or with a distinct flavor of fruit; fruity + + + + noun + + fruit + +
+ +
+ fōtāsē +
+ + + adjective + + (of a food) containing a notable amount of rice + + + + noun + + rice + +
+ +
+ dāħītsə +
+ + + adjective + + (of a food) made with apples + + + + noun + + an apple + +
+ +
+ dædsā +
+ + + adjective + + (of a food) made with citrus + + + + noun + + a citrus fruit + (fictional) a citrus fruit similar in size and flavor to a satsuma, but with a lighter colored skin + +
+ +
+ tōfītsē +
+ + + adjective + + (of a food) made with compound berries + + + + noun + + a compound berry + +
+ +
+ ōdsāō +
+ + + adjective + + alcoholic + + + + noun + + alcohol + +
+ +
+ tåwā +
+ + + adjective + + usable as a weapon + + + + noun + + a weapon + +
+ +
+ ōwī +
+ + + adjective + + sharp + + + + noun + + a sharp object, esp. a blade + +
+ +
+ gəsī +
+ + + adjective + + spearlike + + + + noun + + a spear + +
+ +
+ åfīt +
+ + + adjective + + knifelike + + + + noun + + a knife + +
+ +
+ hōfädō +
+ + + adjective + + wheel‐shaped + + + + noun + + a wheel + +
+ +
+ hōfādsō +
+ + + adjective + + wheeled + + + + noun + + a wheeled cart + + + +
+ +
+ dōtsītō +
+ + + adjective + + having a cavity in which items can be stored + + + + noun + + a pot or similar container + +
+ +
+ däʒētsē +
+ + + adjective + + in the shape of or worn as a necklace + + + + noun + + necklace + +
+ +
+ sədētsā +
+ + + adjective + + in the shape of or worn as a bracelet + + + + noun + + bracelet + +
+ +
+ ōwītsē +
+ + + adjective + + wearable via body piercing + + + + noun + + jewelry worn via body piercing + +
+ +
+ jāsōtə +
+ + + adjective + + (of a piece of music) featuring large amounts of percussion + + + + noun + + a drum (instrument) + +
+ +
+ ʒāō² +
+ + + adjective + + (of a piece of music) played primarily with strings + + + + noun + + a string instrument + +
+ +
+ dōwā +
+ + + adjective + + (of a piece of music) played primarily with flutes or other wind instruments + + + + noun + + a wind instrument, esp. a flute + +
+ +
+ tōtōtsə +
+ + + adjective + + made of copper + coppery in color + + + + noun + + copper + +
+ +
+ däwōtsə +
+ + + adjective + + made of bronze + bronze in color + + + + noun + + bronze + +
+ +
+ hīōtsə +
+ + + adjective + + made of gold + gold in color + + + + noun + + gold + +
+ +
+ ōʒās +
+ + + adjective + + made of dirt + dirty + + + + noun + + dirt + +
+ +
+ tōʒō¹ +
+ + + adjective + + made of cloth + + + + noun + + cloth + +
+ +
+ sōsūtē +
+ + + adjective + + made of leather + + + + noun + + leather + +
+ +
+ ʒūd +
+ + + adjective + + fine; okay + + + + noun + + acceptablility + +
+ +
+ åtfē +
+ + + adjective + + dangerous + + + + noun + + danger + +
+ +
+ pāʒō +
+ + + adjective + + initial; at the beginning + + + + noun + + the start; the beginning + +
+ +
+ ʒätsō +
+ + + adjective + + terminal; at the end + + + + noun + + the finish; the end + +
+ +
+ ʒätāʒō +
+ + + adjective + + greater + + + + quantifier + + more + +
+ +
+ dås +
+ + + adjective + + lesser + + + + quantifier + + less + +
+ +
+ åst +
+ + + indefinite pronoun + + another + +
+ +
+ tōʒō² + tōʒū +
+ + + adjective + + mapped + + + + noun + + a map + + + clay land +
+ +
+ dūwä +
+ + + adjective + + of or intended for a room + + + + noun + + a room + +
+ +
+ dūwātsä +
+ + + adjective + + of a city + + + + noun + + a city + + + +
+ +
+ dāʒō +
+ + + adjective + + like or of a story + + + + noun + + a story (literature) + + +
+ +
+ fōtjō +
+ + + adjective + + long + + + + noun + + a length + + + what farness +
+ +
+ fäħsēħ +
+ + + adjective + + having been drafted + + + + noun + + a draft + + + drawing +
+ +
+ wādœʒə +
+ + + adjective + + of or having a name + + + + noun + + a name + + + œʒə + how are you spoken +
+ +
+ +
+ + + sentence word + + that is correct + + is not a direct translation for the English word yes, as yes contests a negative statement, while affirms it. +
+ +
+ +
+ + + sentence word + + that is incorrect + + is not a direct translation for the English word no, as no affirms a negative statement, while contests it. +
+ +
+ +
+ + + coordinating conjunction + + for; because + + is used when the second statement explains or causes the first. +
+ +
+ +
+ + + coordinating conjunction + + just as… so + + is used when the second statement parallels or is related to the first. +
+ +
+ ōd +
+ + + coordinating conjunction + + yet; although + + ōd is used when the second statement contrasts the first. +
+ +
+ ō +
+ + + coordinating conjunction + + but + + ō is used when the second statement is an alternative to the first. +
+ +
+ +
+ + + coordinating conjunction + + so + + is used when the second statement is results from the first. +
+ +
+ +
+ + + coordinating conjunction + + and + + is used when both statements have the same polarity. +
+ +
+ ʒä + äʒə +
+ + + coordinating conjunction + + or + + ʒä is used when both statements do not have the same polarity. +
+ +
+ ‐l’ħə +
+ + + verb modifier + + participle modifier + + Participles can be used like nominals in a sentence. +
+ +
+ ‐l’fët +
+ + + verb modifier + + procedural nominalizing modifier + + ‐l’fët creates nominals which describe actions or proceedures, similar to ‐tion in English. +
+ +
+ ‐l’tō +
+ + + verb modifier + + agentive nominalizing modifier + + ‐l’tō creates nominals which describe the person(s) who perform an action, similar to ‐er in English. +
+ +
+ tōl’‐ +
+ + + verb modifier + + un‐ + +
+ +
+ wëtl’‐ +
+ + + verb modifier + + re‐ + +
+ +
+ ūħl’‐ +
+ + + verb modifier + + optative modifier + (+) permissive modifier + + The optative mood is used to express hopes and wishes (it would be nice if…), and the permissive mood is used to signify that an action is permitted (it is alright if…). +
+ +
+ äl’‐ +
+ + + verb modifier + + mirative modifier + + The mirative mood is used to express that information is unexpected. +
+ +
+ ōdl’‐ +
+ + + verb modifier + + assumptive/deductive modifier + (+) hortative modifier + + The assumptive/deductive mood is used to show that the information is not known, but that it is usually true under similar conditions. The hortative mood is used to urge another to act. Both moods can be represented by the word must in English (This must be the case/You must do this for me). +
+ +
+ dūl’‐ +
+ + + verb modifier + + alethic modifier + (+) jussive modifier + + The alethic mood is used to show that the information has been logically proven to be truthful; for example, all mathematical statements are alethic. The jussive mood is used for orders to stress that the party in question has no other choice. Both moods can be represented by the word shall in English (One plus one shall equal two/He shall do his duty). +
+ +
+ fīl’‐ +
+ + + verb modifier + + negatory modifier + + fīl‐ negates the verb it is attached to. It can be represented by the word not in English (He is not what he describes). +
+ +
+ ʒāsl’‐ +
+ + + verb modifier + + renarrative modifier + + The renarrative mood is used to show that the information is second‐hand, especially when the validity of the original source is questioned (I heard that…). +
+ +
+ tädl’‐ +
+ + + verb modifier + + commissive modifier + (+) precative modifier + + The commissive mood is used to make a promise that an event will occur (I promise that…). The precative mood is used to make a request (Would you…). +
+ +
+ ‐l +
+ + + verb modifier + + used to vary modality of a verb, often in combination with other verb modifiers + (without another modal modifier) imperative modifier + + The imperative mood is used to make a command. In English, it is often formed by leaving off the subject (which is implied to be you). In Jastugay, the imperative mood still requires all parts of a sentence, and may be first‐ or third‐person. +
+ +
+ ‐l’gī +
+ + + verb modifier + + infinitive modifier + +
+ +
+ +
+ + + definite article + + + +
+ +
+ ʒā +
+ + + indefinite article + + + +
+ +
+ äʒə +
+ + + proper article + + + +
+ +
+ ōdō +
+ + + interjection + + hello + +
+ +
+ ʒåʒā +
+ + + adjective + + of or having an aura or atmosphere + + + + noun + + an aura or atmosphere + + + emotion of the air +
+ +
+ tūʒåā +
+ + + adjective + + of a spirit + + + + noun + + a spirit or presence + + + aura person +
+ +
+ dœwā +
+ + + adjective + + of or related to coffee + + + + noun + + coffee + +
+ +
+ īʒāō +
+ + + adjective + + of or related to bread + + + + noun + + bread + + + ‐l’āō risen +
+ +
+ ʒå +
+ + + postposition + + with + +
+ +
+ ʒōħ +
+ + + postposition + + to + +
+ +
+ +
+ + + postposition + + from + +
+ +
+ ʒəfō +
+ + + postposition + + in(to) + +
+ +
+ täħdē +
+ + + postposition + + out (of) + +
+ +
+ īyə +
+ + + postposition + + on(to) + +
+ +
+ tōsə +
+ + + postposition + + off (of) + +
+ +
+ ād +
+ + + postposition + + around + +
+ +
+ āō +
+ + + postposition + + through + +
+ +
+ gōs +
+ + + postposition + + above + +
+ +
+ āsō +
+ + + postposition + + below + +
+ +
+ āī +
+ + + postposition + + between + +
+ +
+ äādī +
+ + + postposition + + beside + +
+ +
+ āʒō +
+ + + postposition + + of + + + +
+ +
+ āfī +
+ + + postposition + + at + + + āfōhī of where +
+ +
+ dōt +
+ + + verb + + is defined + + dōt is only for use with permanent conditions; for temporary conditions, see . +
+ +
+ hōwā +
+ + + verb + + is done + +
+ +
+ dāō +
+ + + verb + + is gone (to) + +
+ +
+ tëō +
+ + + verb + + is stopped + +
+ +
+ ōtsē +
+ + + verb + + is eaten + +
+ +
+ ōdsō +
+ + + verb + + is drunk + +
+ +
+ ħōwē +
+ + + verb + + is made + +
+ +
+ åhē +
+ + + verb + + is destroyed + +
+ +
+ dåsət +
+ + + verb + + is given + +
+ +
+ dāōsō +
+ + + verb + + is taken + +
+ +
+ dōhī +
+ + + verb + + is had + +
+ +
+ tåsō +
+ + + verb + + is wanted + +
+ +
+ däsāt +
+ + + verb + + is needed + +
+ +
+ dədōwä +
+ + + verb + + is grown + +
+ +
+ ōsə +
+ + + verb + + is used + +
+ +
+ ʒāsō +
+ + + verb + + is touched or felt + +
+ +
+ jäsātō +
+ + + verb + + is spoken + +
+ +
+ dōtōwä +
+ + + verb + + is made to sleep + +
+ +
+ hōwōsē +
+ + + verb + + is seen + +
+ +
+ dōwāt +
+ + + verb + + is mixed + +
+ +
+ tōtō +
+ + + verb + + is enabled + +
+ +
+ dåtāō +
+ + + verb + + is flown + +
+ +
+ däūd +
+ + + verb + + is grabbed + +
+ +
+ fōāsō +
+ + + verb + + is dropped + +
+ +
+ ēdåtī +
+ + + verb + + is attacked + +
+ +
+ ätås +
+ + + verb + + is hurt + +
+ +
+ sītā +
+ + + verb + + is punched + +
+ +
+ sētī +
+ + + verb + + is kicked + +
+ +
+ sādō² +
+ + + verb + + is brought + +
+ +
+ dōsī² +
+ + + verb + + is arrived (at) + +
+ +
+ tōtā +
+ + + verb + + is departed (from) + +
+ +
+ ħōwətē +
+ + + verb + + is killed + +
+ +
+ ʒōħʒə +
+ + + verb + + is arrived + + + to land +
+ +
+ dītāʒō +
+ + + verb + + is raised + + +
+ +
+ fātjōsō +
+ + + verb + + is drawn (in) + + + long take +
+ +
+ fətäsō +
+ + + verb + + is drawn (as in, a picture) + + + drawn speech +
+ +
+ dådō +
+ + + verb + + is pulled + + +
+ +
+ ʒīʒå +
+ + + adjective + + together; collected + + + + noun + + togetherness + + + with ourselves +
+ +
+ +
+ + + subordinating conjunction + + while + + +
+ +
+ ʒäħsō +
+ + + masculine given name + + + + sharp beauty +
+ +
+ dāħə + dāħë +
+ + + adjective + + having house‐like qualities + + + + noun + + a house + (of an animal) a habitat + + + living at +
+ +
+ sāħēt +
+ + + adjective + + of or found in a store + + + + noun + + a store, esp. for food + + + food house +
+ +
+ pätō +
+ + + adjective + + fatherly + + + + noun + + father + +
+ +
+ īʒō +
+ + + verb + + is met + + + assemble +
+ +
+ dåħə +
+ + + adjective + + of or from a brothel + + + + noun + + a brothel + +
+ +
+ ʒäsātūā +
+ + + feminine given name + + + + heard by the spirits + +
+ ʒäsā² +
+
+
+ +
+ ʒäsā² +
+ + + feminine given name + + + +
+ +
+ gåtō +
+ + + adjective + + of a prostitute + + + + noun + + a prostitute + +
+ +
+ tōħfō +
+ + + verb + + (vulgar) is engaged in sexual intercourse by a prostitute + +
+ +
+ däūfət +
+ + + adjective + + portioned + + + + noun + + a portion + +
+ +
+ tåʒə +
+ + + adjective + + syllabic + + + + noun + + a syllable + +
+ +
+ dōwə +
+ + + adjective + + related to the Roman alphabet + (of a text) written using the dōwə system + + + + noun + + the Roman alphabet + a system of romanization for the Jastugay syllabary + +
+ +
+ säīfā +
+ + + verb + + is moved + +
+ +
+ sīfādūwā +
+ + + adjective + + of a bus + + + + noun + + a bus + +
+ +
+ hāwēōs +
+ + + verb + + is hunted + +
+ +
+ äwō +
+ + + verb + + is asked + +
+ +
+ däū +
+ + + verb + + is broken up + +
+ +
+ åāō +
+ + + adjective + + detailed + + + + noun + + a detail + +
+ +
+ åħ +
+ + + postposition + + for + +
+ +
+ jāsō +
+ + + masculine given name + + + +
+ +
+ ətæō +
+ + + feminine given name + + or + +
+ +
+ +
+ + + postposition + + like + +
+ +
+ tāgås +
+ + + verb + + is meant or intended + +
+ +
+ ħīhō +
+ + + masculine given name + + + +
+ +
+ dātō +
+ + + adjective + + of or having a wing + + + + noun + + a wing + +
+ +
+ tāåfūt +
+ + + adjective + + of a feather; feathered + + + + noun + + a feather + +
+ +
+ tæfä +
+ + + feminine given name + + + +
+ +
+ dōfə +
+ + + adjective + + tall; high + + + + noun + + height + +
+ +
+ ʒätīs +
+ + + adjective + + empathetic + + + + noun + + empathy; condolences + + +
+ +
+ fātjədā +
+ + + verb + + is concerned; minds + + drawn as a caretaker +
+ +
+ sådə +
+ + + verb + + is exchanged + + +
+ +
+ ʒōfå +
+ + + adjective + + valuable + + + + noun + + value + + +
+ +
+ ʒōås +
+ + + verb + + is appreciated + + +
+ +
+ +
+ + + honorific + + neuter honorific + + +
+ +
+ +
+ + + honorific + + feminine honorific + + +
+ +
+ tåfō +
+ + + pronoun + + none; nothing + + +
+ +
+ tœʒå +
+ + + pronoun + + all; everything + + +
+ +
+ +
+ + + subordinating conjunction + + to + + +
+ +
+ tōdäħ +
+ + + verb + + is lived + + +
+ +
+ əħwōs +
+ + + verb + + is shown; is presented + + +
+ +
+ ʒōsī +
+ + + classifier + + generic object classifier + + +
+ +
+ ʒäfə +
+ + + adjective + + partitioned; fragmented + + + + noun + + a thing + a piece + + +
+ +
+ ōwāħūë +
+ + + adjective + + practiced + + + + noun + + practice + + +
+ +
+ tōħhō +
+ + + adjective + + studious + + + + noun + + student + + +
+ + + + + + + +
+ +
diff --git a/data/qjt/srcs/AppleDictionary/info.plist b/data/qjt/srcs/AppleDictionary/info.plist new file mode 100644 index 0000000..6688520 --- /dev/null +++ b/data/qjt/srcs/AppleDictionary/info.plist @@ -0,0 +1,26 @@ + + + + + + CFBundleDevelopmentRegion + English + CFBundleDisplayName + Jästūgā to English Dictionary + CFBundleIdentifier + com.apple.dictionary.x-XX-jt + CFBundleName + Jästūgā + CFBundleShortVersionString + 20120301 + DCSDictionaryCopyright + To the extent possible under law, ⸺ has waived all copyright and related or neighboring rights to this work. This work was published from the United States. + DCSDictionaryManufacturerName + + DCSDictionaryFrontMatterReferenceID + front_back_matter + + diff --git a/data/qjt/srcs/AppleDictionary/x-XX-jt.xml b/data/qjt/srcs/AppleDictionary/x-XX-jt.xml new file mode 100644 index 0000000..c7c09a6 --- /dev/null +++ b/data/qjt/srcs/AppleDictionary/x-XX-jt.xml @@ -0,0 +1,4056 @@ + + + + + + +

Jästūgā to English Dictionary | ⸺

+

Front/Back Matter

+
+

This is the Official Jästūgā to English Dictionary.

+

Jästūgā is a language developed by ⸺. To the extent possible under law, ⸺ has waived all copyright and related or neighboring rights to this work. This work was published from the United States.

+
+
+ + + +

aet

+
+

adjective : (of a woman) having not had sexual intercourse

+

noun : a woman who has not had sexual intercourse

+
+
+ + + + +

dāhätsō

+
+

adjective : being a collector

+

noun : a collector or a gatherer of materials

+
+
+ + + +

dātäd

+
+

adjective : friendly

+

noun : a friend

+
+
+ + + +

dōgōtād

+
+

adjective : adult

+

noun : an adult

+
+
+ + + + +

dōwätū

+
+

adjective : possessing babylike qualities

+
  • very small in size, usu. with connotations of cuteness
+

noun : a baby

+
+
+ + + + +

hätfee

+
+

adjective : skilled, esp. in making things by hand

+

noun : a craftsman

+
+
+ + + + +

hōdōwä

+
+

adjective : having the qualities of a leader

+
  • chief; most important
+

noun : a leader

+
+
+ + +

jästūgā

+
+

adjective : of the Jästūgā culture

+
  • written in the Language
+

noun : +

äzhuh jästūgā : the Language

+

zhā jästūgā : a speaker of the Language or someone of the Jāstūgā culture

+

puh jāstūgā : the Jāstūgā people

+

+
+
+ + + + +

jūdaentëd

+
+

adjective : caring

+

noun : a caretaker

+
+
+ + + +

ōtfähūd

+
+

adjective : mute

+

noun : a mute

+
+
+ + + +

saentëd

+
+

adjective : having the characteristics of a woman; womanly

+
  • used as a term of endearment for young girls to praise their maturity.
+

noun : a woman

+
+
+ + + + +

tāhhätoi

+
+

adjective : protective

+

noun : a guardian

+
+
+ + + + +

tātä

+
+

adjective : military

+
  • (of a group) organized and disciplined
+

noun : an organized military force

+
+
+ + + +

tautsā

+
+

adjective : skilled at hunting or tracking

+

noun : a hunter

+
+
+ + + + + +

tōtādō

+
+

adjective : immature

+

noun : an older child

+
+
+ + + + + +

tōtëd

+
+

adjective : childish

+

noun : a younger child

+
+
+ + + + + + +

tōzhūtā

+
+

adjective : exhibiting youth and maturity

+

noun : a young adult

+
+
+ + + + +

tūād

+
+

adjective : of or concerning the body

+

noun : a person +

one's body

+

+
+
+ + + + + +

tūdäfä

+
+

adjective : exhibiting age and wisdom

+

noun : an elder

+
+
+ + + +

zhëtëd

+
+

adjective : having the characteristics of a man

+

noun : a man

+
+
+ + + + + + +

dädhee

+
+

adjective : relating to the throat

+
  • throaty
+

noun : a neck or throat

+
  • the manner in which a person speaks
+
+
+ + + + +

dājōfōtō

+
+

adjective : relating to the ear

+
  • having the qualities of a good listener
+

noun : an ear

+
  • a good listener
+
+
+ + + + + + + +

dāōdwā

+
+

adjective : relating to the spine

+
  • vertebrate
+

noun : a spine

+
  • the supporting framework of a structure
+
+
+ + + + +

dāusāsō

+
+

adjective : of a joint or connection

+
  • jointed
+

noun : a joint

+
+
+ + + + +

dōtädō

+
+

adjective : of the head

+
  • principal
+

noun : a head

+
    +
  • a person in charge of making decisions in a group
  • +
  • the most important step in a procedure
  • +
+
+
+ + + + +

dōtōfiy

+
+

adjective : of the nose

+
  • (of a voice or speech) resonating in the nose
+

noun : a nose

+
+
+ + + +

dōfäthhiy

+
+

adjective : of the hip

+

noun : a hip

+
+
+ + + + + + +

dōwāhhee

+
+

adjective : of the heart

+
  • positioned in the center
+

noun : a heart

+
  • an integral or central part of something
+
+
+ + + +

ëdaen

+
+

adjective : of the female breast

+

noun : a female breast

+
  • a part of a garment designed to cover the female breast
+
+
+ + + + +

hādōsiy

+
+

adjective : of the eye

+
  • (of a person) comprehending best through visual means
+

noun : an eye

+
+
+ + + + +

hādōsō

+
+

adjective : of the blood

+
    +
  • (of an event) involving bloodshed
  • +
  • covered in blood
  • +
+

noun : blood

+
  • bloodshed
+
+
+ + + + + +

hhāfōhee

+
+

adjective : of the chest

+
  • core
+

noun : a chest

+
  • a torso
+
  • a central part of something
+
+
+ + + +

hāsūtwā

+
+

adjective : of the shoulder

+
  • on the edge
+

noun : a shoulder

+
    +
  • a part of a garment designed to cover the shoulder
  • +
  • a part of something with a similar shape or position to the human shoulder
  • +
+
+
+ + + + +

hātō

+
+

adjective : of the hair

+
  • having a large amount of hair; hairy
+

noun : a hair

+
+
+ + + + + + +

hōpājō

+
+

adjective : of the foot

+
  • at the start or lowest point
+

noun : a foot

+
    +
  • the part of something which touches the ground; the base
  • +
  • the starting point or first step of a procedure
  • +
+
+
+ + + + +

hōpusātō

+
+

adjective : of the lung

+
  • related to breathing
+

noun : a lung

+
+
+ + + + + +

hhōsūād

+
+

adjective : of the bones

+
  • bony
+

noun : a bone

+
  • a part of the frame or support of a structure
+
+
+ + + + + + +

ōwiytfee

+
+

adjective : of the teeth

+
  • having teeth, esp. having large or numerous teeth
+

noun : a tooth

+
  • puh ōwiytfee : the teeth of an individual
+
+
+ + + + + + +

sādō¹

+
+

adjective : of the leg

+
  • having limbs
+

noun : a leg

+
  • a support for a structure connecting to the ground
+
+
+ + + + + +

sätausā

+
+

adjective : of meat or flesh

+
  • having a large amount of muscle
+

noun : meat or flesh

+
    +
  • muscle
  • +
  • the edible part of something
  • +
+
+
+ + + +

säthāee

+
+

adjective : of the placenta

+

noun : a placenta

+
+
+ + + + +

sōds

+
+

adjective : of the tongue

+
  • talkative
+

noun : a tongue

+
+
+ + + + +

sōjā

+
+

adjective : of the finger

+
  • having long fingers
+

noun : a finger

+
  • a slender object resembling a finger
+
+
+ + + + + +

sōwuh

+
+

adjective : of the skin

+
  • naked
+

noun : skin

+
  • an outer covering or layer
+
+
+ + + + + +

suhōwee

+
+

adjective : of or for use by the hand

+

noun : a hand

+
  • an item attributable to someone because of certain features it contains, esp. in reference to art or handwriting
+
+
+ + + + +

suwā

+
+

adjective : of an arm

+

noun : an arm

+
  • a support of a structure which does not connect to the ground
+
+
+ + + + +

zhaetōwū

+
+

adjective : of the female reproductive system

+

noun : a female's reproductive system, esp. a vulva

+
+
+ + + + +

zhoitō

+
+

adjective : of the male reproductive system

+

noun : a male's reproductive system, esp. a penis

+
+
+ + + + +

zhōtsee

+
+

adjective : of the mouth

+

noun : a mouth

+
  • a large opening, esp. in the front of something
+
+
+ + + +

usōtō

+
+

adjective : of a pair of pants

+

noun : a pair of pants

+
+
+ + + +

dätōsō

+
+

adjective : of a shoe

+

noun : a shoe

+
+
+ + + + +

dōwōdä

+
+

adjective : of a shirt

+

noun : a shirt

+
  • a loose covering
+
+
+ + + + +

dutädā

+
+

adjective : of a hat

+

noun : a hat

+
  • a protective cover or lid, especially when used on the top of an object.
+
+
+ + + +

jätāduh

+
+

adjective : masked

+

noun : a mask

+
+
+ + + + +

tōdā

+
+

adjective : wearing clothing

+

noun : an article of clothing

+
  • clothing collectively
+
+
+ + + +

dāfūsō

+
+

adjective : thirsty

+

noun : thirst

+
+
+ + + + +

dōtōgä

+
+

adjective : tired

+

noun : sleep

+
+
+ + + + + +

jōsut

+
+

adjective : needing to excrete waste

+

noun : an elimination of bodily waste

+
+
+ + + +

saenäzhee

+
+

adjective : menstrual

+

noun : menstruation

+
+
+ + + + +

seetgee

+
+

adjective : hungry

+

noun : hunger

+
+
+ + + +

biyfëūt

+
+

adjective : colored purple

+

noun : a purple color

+
+
+ + + + + +

dāheetuh

+
+

adjective : transparent or translucent

+
    +
  • lacking impurity or blemish
  • +
  • (of a statement) without fault or contradiction
  • +
  • unobscured, esp. of a choice or when referring to visibility
  • +
+

noun : translucency or clearness

+
+
+ + + +

doiywët

+
+

adjective : colored brown

+

noun : a brown color

+
+
+ + + + +

fōzee

+
+

adjective : visible

+

noun : vision

+
+
+ + + +

hiyuh

+
+

adjective : colored green

+
  • having large amounts of plant matter
+

noun : a green color

+
+
+ + + + +

hiyfuh

+
+

adjective : luminous

+

noun : light

+
+
+ + + +

jautuh

+
+

adjective : colored blue

+

noun : a blue color

+
+
+ + + +

waut

+
+

adjective : colored grey

+
  • cloudy, esp. with precipitation
+

noun : a grey color

+
+
+ + + + +

utau¹

+
+

adjective : darkly colored

+
  • colored black
+

noun : a dark color, esp. black

+
+
+ + + + + + +

zhau¹

+
+

adjective : warmly colored

+

noun : a warm color

+
+
+ + + + +

zhaendā

+
+

adjective : lightly colored

+
  • colored white
+

noun : a light color, esp. white

+
+
+ + + + + +

hōfäsee

+
+

adjective : sensitive to the touch

+

noun : physical feeling, esp. the sense of touch

+
+
+ + + +

tëdsiy

+
+

adjective : painful

+

noun : a feeling of pain

+
+
+ + + +

dātiyt

+
+

adjective : sour

+

noun : sourness

+
+
+ + + +

dōjiydō

+
+

adjective : sweet

+

noun : sweetness

+
+
+ + + + +

jōwäsët

+
+

adjective : salty

+

noun : salt

+
  • saltiness
+
+
+ + + + + +

paufee

+
+

adjective : having a hot (spicy) flavor

+

noun : hotness (spiciness)

+
+
+ + + +

sōfeezhiy

+
+

adjective : bitter

+

noun : bitterness

+
+
+ + + + +

ōjiys

+
+

adjective : having a powerful odor

+

noun : a scent

+
+
+ + + + + + +

dōpäjee

+
+

adjective : loud; noisy

+
  • (of a person) particularly rude or obnoxious
+

noun : noise

+
+
+ + + + + + +

fōzhūsō

+
+

adjective : quiet

+
  • (of a person) shy or modest
+

noun : silence

+
+
+ + + +

zhāpā

+
+

adjective : producing sound

+

noun : a sound

+
+
+ + + + +

zhäsā¹

+
+

adjective : talkative

+

noun : speech

+
+
+ + + +

pōwä

+
+

adjective : musical; melodic

+

noun : a piece of music

+
  • music collectively
+
+
+ + + +

zhāō¹

+
+

adjective : emotional

+

noun : an emotion

+
+
+ + + + +

dōdā

+
+

adjective : happy

+

noun : happiness

+
+
+ + + + +

tōpā

+
+

adjective : angry

+

noun : anger

+
+
+ + + +

hhoifō

+
+

adjective : sad

+

noun : sadness

+
+
+ + + +

hōtäjō

+
+

adjective : frustrated

+

noun : frustration

+
+
+ + + +

hōzhiyd

+
+

adjective : loving

+

noun : love, between friends or family

+
+
+ + + + +

jūwaendōsā

+
+

adjective : awed

+

noun : awe, esp. as the result of art or beauty

+
+
+ + + + +

wōwā

+
+

adjective : calm or peaceful

+

noun : calmness or peacefulness

+
+
+ + + + +

zhaujuh

+
+

adjective : passionate

+

noun : passion, esp. for a person, idea, or activity

+
+
+ + + +

dāōsee

+
+

adjective : excited

+

noun : mental energy; excitement

+
+
+ + + + +

häwee

+
+

adjective : alive

+

noun : life

+
+
+ + + +

hae

+
+

adjective : containing energy; energized

+

noun : energy

+
+
+ + + + +

fäee

+
+

adjective : dead

+

noun : death

+
+
+ + + +

dähhwee

+
+

adjective : healthy

+

noun : health

+
+
+ + + +

tähhee

+
+

adjective : dying

+

noun : the process of dying

+
+
+ + + +

ätee

+
+

adjective : sick

+

noun : a sickness

+
+
+ + + + +

fëdsō

+
+

adjective : injured

+

noun : an injury

+
+
+ + + + + + +

+
+

adjective : morally right (correct)

+
  • factually accurate or true
+

noun : correctness

+
+
+ + + + + + +

zhäfō

+
+

adjective : morally wrong

+
  • factually inaccurate or false
+

noun : incorrectness

+
+
+ + + +

däfō

+
+

adjective : knowledgeable

+

noun : knowledge

+
+
+ + + +

jaufuh

+
+

adjective : powerful

+

noun : power

+
+
+ + + + +

sōzhūwäd

+
+

adjective : beautiful

+

noun : beauty

+
+
+ + + +

hōsee

+
+

adjective : trusting

+

noun : trust

+
+
+ + + +

dāgauwuh

+
+

adjective : hopeful

+

noun : hope

+
+
+ + + + +

tōzhūtsā

+
+

adjective : (of a statement) brief

+

noun : a word

+
+
+ + + +

dōzhātō

+
+

adjective : (of a statement) with purpose or meaning

+

noun : a statement

+
+
+ + + + +

poit

+
+

adjective : momentary

+

noun : a moment

+
  • time collectively
+
+
+ + + + + +

hoipuh

+
+

adjective : occurring at midday

+

noun : a day

+
  • midday
+
+
+ + + + +

zhaenzhā

+
+

adjective : occurring at night

+

noun : night

+
+
+ + + +

aedae

+
+

adjective : occurring every month

+

noun : a month

+
+
+ + + +

dōfiytuh

+
+

adjective : occurring in the morning

+

noun : morning

+
+
+ + + + +

fuwōfuh

+
+

adjective : occurring in the evening

+
  • nearing the end of its life
+

noun : evening

+
+
+ + + + +

supoi

+
+

adjective : current; occurring presently

+

noun : the present

+
+
+ + + +

zhoit

+
+

adjective : occurring in the future

+

noun : the future

+
+
+ + + +

pusä

+
+

adjective : occurring in the past

+

noun : the past

+
+
+ + + + + +

1 – zhō¹

+
+

adjective : first

+

quantifier : one

+
+
+ + + + + +

2 – wōs

+
+

adjective : second

+

quantifier : two

+
+
+ + + + + +

3 - gōjū

+
+

adjective : third

+

quantifier : three

+
+
+ + + + + +

4 – zhäfā

+
+

adjective : fourth

+

quantifier : four

+
+
+ + + + + +

5 – wāt

+
+

adjective : fifth

+

quantifier : five

+
+
+ + + + + +

6 – sōpō

+
+

adjective : sixth

+

quantifier : six

+
+
+ + + + + +

7 – jät

+
+

adjective : seventh

+

quantifier : seven

+
+
+ + + + + + +

10 – saentō

+
+

adjective : eighth

+

quantifier : eight

+
+
+ + + + +

dāsō

+
+

adjective : fluid; watery

+

noun : water

+
+
+ + + +

fëwët

+
+

adjective : made of wood

+

noun : wood

+
+
+ + + + +

pōzhäsō

+
+

adjective : made of stone

+

noun : stone

+
  • a rock
+
+
+ + + + +

pōzhuh

+
+

adjective : of the ground, as opposed to being of the sky

+

noun : ground

+
+
+ + + +

dausee

+
+

adjective : burning

+

noun : fire

+
  • a flame
+
+
+ + + +

dōzhuh

+
+

adjective : made of metal

+

noun : metal

+
+
+ + + +

tōfūsō

+
+

adjective : made of clay

+

noun : clay

+
+
+ + + +

dautuh

+
+

adjective : of the sky

+
  • pointed skyward
+

noun : the sky

+
+
+ + + +

hhiytuh

+
+

adjective : of or relating to the moon

+

noun : the moon

+
+
+ + + + + +

tōfäee

+
+

adjective : of a star

+
  • guiding, helpful
+

noun : a star

+
+
+ + + +

hōzhā

+
+

adjective : of the land

+

noun : the land

+
+
+ + + + +

tūdāsō

+
+

adjective : of a river

+

noun : a river or creek

+
+
+ + + + + + +

doifäsō

+
+

adjective : of a large body of water

+

noun : a large body of water

+
+
+ + + + + +

tōwūdō

+
+

adjective : of a smaller body of water

+

noun : a smaller body of water

+
+
+ + + + +

dōwätsā

+
+

adjective : of a mountain

+
  • mountainous
+

noun : a mountain

+
+
+ + + + +

tōfūtzhā

+
+

adjective : of a valley

+
  • (of a surface) indented
+

noun : a valley

+
  • an indentation in a flat surface
+
+
+ + + +

dāsōzhā

+
+

adjective : of an island

+
  • isolated
+

noun : an island

+
+
+ + + + + +

zhau²

+
+

adjective : of the air

+
    +
  • airy; open
  • +
  • moving with a fluid motion; free
  • +
+

noun : air

+
+
+ + + + +

gūpuh

+
+

adjective : of the Earth

+

noun : a world, esp. the Earth

+
+
+ + + + +

dautōsā

+
+

adjective : having weather

+

noun : weather

+
  • the atmosphere produced by a group or conversation
+
+
+ + + +

dātäsō

+
+

adjective : cloudy

+

noun : a cloud

+
+
+ + + +

dōzhā

+
+

adjective : rainy

+

noun : the rain

+
  • a raindrop
+
+
+ + + +

dōtus

+
+

adjective : snowy

+

noun : the snow

+
  • a snowflake
+
+
+ + + +

jōwā

+
+

adjective : windy

+

noun : a wind

+
+
+ + + +

utau²

+
+

adjective : stormy

+

noun : a storm

+
+
+ + + +

jōfus

+
+

adjective : hailing

+

noun : hail

+
  • a hailstone
+
+
+ + + +

zhausuh

+
+

adjective : characterized by or producing lightning

+

noun : lightning

+
  • a lightning bolt
+
+
+ + + + +

hāpee

+
+

adjective : vernal

+

noun : a period characterized by lengthening days centered around the vernal equinox and taking up one-fourth of the year

+
+
+ + + + + +

hhiywä

+
+

adjective : annual

+
  • estival
+

noun : a year

+
  • a period characterized by warmer temperatures and longer days centered around the summer solstice and taking up one-fourth of the year
+
+
+ + + + +

täaenee

+
+

adjective : autumnal

+

noun : a period characterized by shortening days centered around the autumnal equinox

+
+
+ + + + +

aenduh

+
+

adjective : hibernal

+

noun : a period characterized by colder temperatures and short days centered around the winter solstice and taking up one-fourth of the year

+
+
+ + + +

taen

+
+

feminine given name : from täaenee

+
+
+ + + +

iyōtaehiyuh

+
+

feminine given name : meaning "green shoot"

+

Diminutives:

+ +
+
+ + + +

iyō

+
+

feminine given name : diminutive of iyōtaehiyuh

+
+
+ + + + + +

+
+

adjective : quick

+
    +
  • nimble
  • +
  • clever
  • +
+

noun : speed

+
+
+ + + + +

tūd

+
+

adjective : slow

+

noun : slowness; sloth (trait)

+
+
+ + + + +

jōfä

+
+

adjective : grand; great

+

noun : grandiosity; greatness

+
+
+ + + + +

fōwū

+
+

adjective : small; unimportant

+

noun : smallness; unimportance

+
+
+ + + + +

gōpä

+
+

adjective : strong

+

noun : strength

+
+
+ + + +

täwū

+
+

adjective : weak

+

noun : the condition of being weak

+
  • a weakness
+
+
+ + + +

dāpë

+
+

adjective : good

+

noun : goodness

+
+
+ + + +

tāt

+
+

adjective : bad

+

noun : badness

+
+
+ + + + +

wauwuh

+
+

adjective : wise

+

noun : wisdom

+
+
+ + + +

dātäzhō

+
+

adjective : stupid

+

noun : stupidity

+

Note: Usage of dātäzhō is generally considered rude, use täzhō if possible.

+
+
+ + + +

täzhō

+
+

adjective : foolish

+

noun : foolishness

+
+
+ + + + +

tōtāhhhō

+
+

adjective : hardworking; determined

+

noun : the quality of being hardworking; determination

+
+
+ + + + +

tūdfū

+
+

adjective : lazy

+

noun : laziness

+
+
+ + + + + +

ähhmō

+
+

adjective : sharp

+
  • (of a statement) particularly harsh or direct
+

noun : sharpness

+
+
+ + + + + +

hhāsō

+
+

adjective : front

+

noun : the front side

+
  • the leading edge
+
+
+ + + + +

susä

+
+

adjective : back

+

noun : the back side

+
+
+ + + +

tiyhād

+
+

adjective : of a side, esp. other than the front or back

+

noun : a side

+
+
+ + + + +

diytuh

+
+

adjective : top

+

noun : the top side

+
+
+ + + + +

oisuh

+
+

adjective : bottom

+

noun : the bottom side

+
+
+ + + +

piy

+
+

adjective : right

+

noun : the right side

+
+
+ + + +

diy

+
+

adjective : left

+

noun : the left side

+
+
+ + + + +

zhätō

+
+

adjective : near

+
  • (of an idea) relevant
+

noun : nearness

+
  • (of an idea) relevance
+
+
+ + + + +

sōjō

+
+

adjective : far

+
  • (of an idea) irrelevant
+

noun : distance

+
+
+ + + + + + +

zhiy

+
+

first person pronoun

+
+
+ + + + +

uwād

+
+

second person pronoun

+
+
+ + + + + +

ae

+
+

feminine third person pronoun

+
+
+ + + + + +

ā

+
+

neuter third person pronoun

+
+
+ + + + + +

zhōd

+
+

inanimate third person pronoun

+
+
+ + + + +

sut

+
+

proximal demonstrative adjective

+

proximal demonstrative noun

+
+
+ + + + +

zhō²

+
+

medial demonstrative adjective

+

medial demonstrative noun

+
+
+ + + + + + +

+
+

distal demonstrative adjective

+

distal demonstrative noun

+
+
+ + + +

suhiy

+
+

proximal locational pronoun

+
+
+ + + +

dōsiy¹

+
+

medial locational pronoun

+
+
+ + + + +

sëd

+
+

distal locational pronoun

+
+
+ + + +

fiy

+
+

animate interrogative pronoun

+
+
+ + + + + + + +

fōt

+
+

inanimate interrogative pronoun

+
+
+ + + + +

dāzheet

+
+

adjective : starving

+

noun : starvation

+
+
+ + + + +

ōdāsō

+
+

adjective : extremely thirsty

+

noun : suffering or death caused by thirst

+
+
+ + + +

dōtäsfā

+
+

adjective : exhausted

+

noun : exhaustion

+
+
+ + + +

autuh

+
+

adjective : broken

+

noun : the state of being broken

+
+
+ + + + +

tūwä

+
+

adjective : old; aged

+

noun : age

+
+
+ + + + +

ōtād

+
+

adjective : young

+

noun : youth

+
+
+ + + + +

aen

+
+

adjective : female

+

noun : femininity

+
+
+ + + + +

soit

+
+

adjective : male

+

noun : masculinity

+
+
+ + + + +

fäd

+
+

adjective : hard

+
  • difficulty
+

noun : hardness

+
  • difficult
+
+
+ + + + +

ōfū

+
+

adjective : soft

+
  • (of a person) gentle
+

noun : softness

+
+
+ + + + + +

hhoit

+
+

adjective : rough

+
    +
  • (of a person) lacking tact
  • +
  • (of a work) unpolished; crude
  • +
+

noun : roughness

+
+
+ + + + + + + + +

daes

+
+

adjective : smooth

+
    +
  • (of a person) tactful
  • +
  • (of a work) polished; finished
  • +
+

noun : smoothness

+
    +
  • (of a person) tact
  • +
  • (of a work) level of completion or polish
  • +
+
+
+ + + + +

zhōsee

+
+

adjective : hot

+

noun : heat

+
+
+ + + +

oitäs

+
+

adjective : cold

+

noun : coldness

+
+
+ + + + + +

hheewuh

+
+

adjective : flexible

+
  • (of a person) open to change
+

noun : flexibility

+
  • (of a person) openness to change
+
+
+ + + + +

zhūdsō

+
+

adjective : beautiful

+

noun : beauty

+
+
+ + + + + +

hhōtzhiy

+
+

adjective : ugly

+
  • (of a situation) undesirable
+

noun : ugliness

+
+
+ + + +

dātōwee

+
+

adjective : smiling

+

noun : a smile

+
+
+ + + +

zhōtā

+
+

adjective : frowning

+

noun : a frown

+
+
+ + + + +

dusātō

+
+

adjective : laughing

+

noun : laughter

+
+
+ + + +

dōjā

+
+

adjective : crying

+

noun : a tear

+
+
+ + + +

dātōsō

+
+

adjective : wolflike

+

noun : a wolf

+
+
+ + + +

zhōzhō

+
+

adjective : froglike

+

noun : a frog

+
+
+ + + +

zhōfā

+
+

adjective : snakelike

+

noun : a snake

+
+
+ + + +

gausiy

+
+

adjective : having the qualities or appearance of a salamander

+

noun : a salamander

+
+
+ + + +

gōsuh

+
+

adjective : birdlike

+

noun : a bird

+
+
+ + + + + +

hōtūsee

+
+

adjective : crablike

+
  • (of a person) not willing to share one's opinions
+

noun : a crab

+
  • one who is not willing to share one's opinions
+
+
+ + + + +

dāzhät

+
+

adjective : fishlike

+
  • (of a person) hard to contact or reach
+

noun : a fish

+
+
+ + + +

täfee

+
+

adjective : insectlike

+

noun : an insect

+
+
+ + + + + +

dādee

+
+

adjective : having the qualities or appearance of a leporid

+

noun : a leporid

+
  • (fictional) an aquatic species of hare
+
+
+ + + + +

gāō

+
+

adjective : having qualities commonly attributed to small mammals

+

noun : a small mammal

+
+
+ + + + + + +

täbao

+
+

adjective : mouselike

+

noun : a mouse or rat

+
  • a fictional species of spiny rat
+
+
+ + + +

dōfiy

+
+

adjective : bearlike

+

noun : a bear

+
+
+ + + +

sätsūee

+
+

adjective : deerlike

+

noun : a deer

+
+
+ + + +

zhätee

+
+

adjective : having animal qualities

+

noun : animal

+
+
+ + + +

hhōfee

+
+

adjective : cowlike

+

noun : a cow

+
  • (fictional) a semiaquatic creature that feeds on seaweed and aquatic grasses
+
+
+ + + + +

fauzee

+
+

adjective : piglike

  • (of a person) humble
+

noun : a pig

+
+
+ + + + + + +

dätzhee

+
+

adjective : foxlike

+
  • (of a person) swift, nimble, or clever
+

noun : a fox

+
  • (fictional) a semiaquatic foxlike creature that feeds mainly on fish and berries
+
+
+ + + +

hiyät

+
+

adjective : vegetated

+

noun : vegetation

+
+
+ + + + + +

dauzhiyt

+
+

adjective : flowery

+
  • elaborate or full of adornment
+

noun : a flowering plant

+
+
+ + + + + + +

ōfiy

+
+

adjective : bushlike

+
    +
  • complex or chaotic
  • +
  • overgrown
  • +
+

noun : a bush

+
+
+ + + +

dōtiyät

+
+

adjective : treelike

+
  • forested
+

noun : a tree

+
+
+ + + +

iyōtā

+
+

adjective : sproutlike

+
  • (of a person) particularly new or unexperienced in a feild
+

noun : a sprout

+
+
+ + + + +

seet

+
+

adjective : edible

+

noun : food

+
+
+ + + + +

hiyfee

+
+

adjective : vegetable

+

noun : edible plantstuffs, esp. other than fruit

+
+
+ + + +

sāfee

+
+

adjective : (of a food) made primarily of meat

+

noun : meat

+
+
+ + + +

tiydfee

+
+

adjective : (of a food) made primarily of or with a distinct flavor of fruit; fruity

+

noun : fruit

+
+
+ + + +

fōtāsee

+
+

adjective : (of a food) containing a notable amount of rice

+

noun : rice

+
+
+ + + +

dāhhiytsuh

+
+

adjective : (of a food) made with apples

+

noun : an apple

+
+
+ + + +

daedsā

+
+

adjective : (of a food) made with citrus

+

noun : a citrus fruit

+
  • (fictional) a citrus fruit similar in size and flavor to a satsuma, but with a lighter colored skin
+
+
+ + + + +

tōfiytsee

+
+

adjective : (of a food) made with compound berries

+

noun : a compound berry

+
+
+ + + +

ōdsāō

+
+

adjective : alcoholic

+

noun : alcohol

+
+
+ + + +

tauwā

+
+

adjective : usable as a weapon

+

noun : a weapon

+
+
+ + + + + +

ōwiy

+
+

adjective : sharp

+

noun : a sharp object, esp. a blade

+
+
+ + + +

gusiy

+
+

adjective : spearlike

+

noun : a spear

+
+
+ + + +

aufiyt

+
+

adjective : knifelike

+

noun : a knife

+
+
+ + + +

hōfädō

+
+

adjective : wheel-shaped

+

noun : a wheel

+
+
+ + + +

hōfādsō

+
+

adjective : wheeled

+

noun : a wheeled cart

+
+
+ + + + +

dōtsiytō

+
+

adjective : having a cavity in which items can be stored

+

noun : a pot or similar container

+
+
+ + + +

däzheetsee

+
+

adjective : in the shape of or worn as a necklace

+

noun : necklace

+
+
+ + + +

sudeetsā

+
+

adjective : in the shape of or worn as a bracelet

+

noun : bracelet

+
+
+ + + + +

ōwiytsee

+
+

adjective : wearable via body piercing

+

noun : jewelry worn via body piercing

+
+
+ + + +

jāsōtuh

+
+

adjective : (of a piece of music) featuring large amounts of percussion

+

noun : a drum (instrument)

+
+
+ + + +

zhāō²

+
+

adjective : (of a piece of music) played primarily with strings

+

noun : a string instrument

+
+
+ + + + +

dōwā

+
+

adjective : (of a piece of music) played primarily with flutes or other wind instruments

+

noun : a wind instrument, esp. a flute

+
+
+ + + +

ōzhās

+
+

adjective : made of dirt

+
  • dirty
+

noun : dirt

+
+
+ + + +

tōzhō¹

+
+

adjective : made of cloth

+

noun : cloth

+
+
+ + + +

sōsūtee

+
+

adjective : made of leather

+

noun : leather

+
+
+ + + + + + +

zhūd

+
+

adjective : fine; okay

+

noun : acceptablility

+
+
+ + + +

autfee

+
+

adjective : dangerous

+

noun : danger

+
+
+ + + + + +

pāzhō

+
+

adjective : initial; at the beginning

+

noun : the start; the beginning

+
+
+ + + + + +

zhätsō

+
+

adjective : terminal; at the end

+

noun : the finish; the end

+
+
+ + + + +

zhätāzhō

+
+

adjective : greater

+

quantifier : more

+
+
+ + + + +

daus

+
+

adjective : lesser

+

quantifier : less

+
+
+ + + +

aust

+
+

indefinite pronoun : another

+
+
+ + + +

tōzhō²

+
+

adjective : mapped

+

noun : a map

+
+
+ + + +

dūwä

+
+

adjective : of or intended for a room

+

noun : a room

+
+
+ + + +

dūwātsä

+
+

adjective : of a city

+

noun : a city

+
+
+ + + +

dāzhō

+
+

adjective : like or of a story

+

noun : a story (literature)

+
+
+ + + + +

fōtjō

+
+

adjective : long

+

noun : a length

+
+
+ + + +

fähhseehh

+
+

adjective : having been drafted

+

noun : a draft

+
+
+ + + +

wādoizhuh

+
+

adjective : of or having a name

+

noun : a name

+
+
+ + + + + + +

+
+

sentence word : that is correct

+

Note: is not a direct translation for English word yes, as yes contests a negative statement, while affirms it.

+
+
+ + + + + + +

+
+

sentence word : that is incorrect

+

Note: is not a direct translation for English word no, as no affirms a negative statement, while contests it.

+
+
+ + + + +

fae

+
+

coordinating conjunction : for; because

+

Note: ōd is used when the second statement explains or causes the first.

+
+
+ + + +

dau

+
+

coordinating conjunction : just as… so

+

Note: dau is used when the second statement parallels or is related to the first.

+
+
+ + + + +

ōd

+
+

coordinating conjunction : yet; although

+

Note: ōd is used when the second statement contrasts the first.

+
+
+ + + +

ō

+
+

coordinating conjunction : but

+

Note: ō is used when the second statement is an alternative to the first.

+
+
+ + + +

see

+
+

coordinating conjunction : so

+

Note: ōd is used when the second statement results from the first.

+
+
+ + + +

woi

+
+

coordinating conjunction : and

+

Note: woi is used when both statements have the same polarity.

+
+
+ + + +

zhä

+
+

coordinating conjunction : or

+

Note: zhä is used when both statements do not have the same polarity.

+
+
+ + + + +

-l'hhuh

+
+

verb modifier : participle modifier

+

Note: Participles can be used like noun/adjectives in a sentence.

+
+
+ + + + +

-l'tō

+
+

verb modifier : agent modifier

+

Note: -l'tō creates agent nouns/adjective, which describe the person(s) who perform an action (similar to adding -er in Engish).

+
+
+ + +

ūhhl'-

+
+

verb modifier : optative modifier

+
  • (+'l) permissive modifier
+

Note: The optative mood is used to express hopes and wishes (it would be nice if…), and the permissive mood is used to signify that an action is permitted (it is alright if…)

+
+
+ + +

äl'-

+
+

verb modifier : mirative modifier

+

Note: The mirative mood is used to show that information is unexpected

+
+
+ + +

ōdl'-

+
+

verb modifier : assumptive/deductive modifier

+
  • (+'l) hortative modifier
+

Note: The assumptive/deductive mood is used to show that the information is not known, but that it is usually true under similar conditions. The hortative mood is used to urge another to act. Both moods can be represented by the word "must" in English (This must be the case/You must do this for me).

+
+
+ + +

dūl'-

+
+

verb modifier : alethic modifier

+
  • (+'l) jussive modifier
+

Note: The alethic mood is used to show that the information has been logically proven to be truthful; for example, all mathematical statements are alethic. The jussive mood is used for orders to stress that the party in question has no other choice. Both moods can be represented by the word "shall" in English (One plus one shall equal two/He shall do his duty)./

+
+
+ + + +

word

+
+

verb modifier : negatory modifier

+

Note: fiyl'- negates the verb it is attached to. It can be represented by the word "not" in English (He is not what he describes).

+
+
+ + +

zhāsl'-

+
+

verb modifier : renarrative modifier

+

Note: The renarrative mood is used to show that the information is second-hand, especially when the validity of the original source is questioned (I heard that…).

+
+
+ + +

tädl'-

+
+

verb modifier : commissive modifier

+
  • (+'l) precative modifier
+

Note: The commissive mood is used to make a promise that an event will occur (I promise that…). The precative mood is used to make a request (Would you…).

+
+
+ + +

-'l

+
+

verb modifier : used to vary modality of a verb, often in combination with other verb modifiers

+
  • (without another modal modifier) imperative modifier
+

Note: The imperative mood is used to make a command. In English, it is often formed by leaving off the subject (which is implied to be "you"). In Jästūgā, the imperative mood still requires all parts of a sentence, and may be first- or third-person.

+
+
+ + +

-l'giy

+
+

verb modifier : infinitive modifier

+

Note: Infinitives can be used like adverb phrases in a sentence.

+
+
+ + + +

puh

+
+

definite article

+
+
+ + + + +

zhā

+
+

indefinite article

+
+
+ + +

äzhuh

+
+

proper article

+
+
+ + + +

word

+
+

interjection : hello

+
+
+ + + + +

zhauzhā

+
+

adjective : of or having an aura or atmosphere

+

noun : an aura or atmosphere

+
+
+ + + + +

tūzhauā

+
+

adjective : of a spirit

+

noun : a spirit or presence

+
+
+ + + +

doiwā

+
+

adjective : of or related to coffee

+

noun : coffee

+
+
+ + + +

iyzhāō

+
+

adjective : of or related to bread

+

noun : bread

+
+
+ + + +

zhau

+
+

postposition : with

+
+
+ + + +

zhōhh

+
+

postposition : to

+
+
+ + + +

siy

+
+

postposition : from

+
+
+ + + + +

zhufō

+
+

postposition : in(to)

+
+
+ + + +

tähhdee

+
+

postposition : out (of)

+
+
+ + + + +

iyuh

+
+

postposition : on(to)

+
+
+ + + +

tōsuh

+
+

postposition : off (of)

+
+
+ + + +

ād

+
+

postposition : around

+
+
+ + + +

āō

+
+

postposition : through

+
+
+ + + +

gōs

+
+

postposition : above

+
+
+ + + +

āsō

+
+

postposition : below

+
+
+ + + +

āiy

+
+

postposition : between

+
+
+ + + +

äādiy

+
+

postposition : beside

+
+
+ + + +

āzhō

+
+

postposition : of

+
+
+ + + +

āfiy

+
+

postposition : at

+
+
+ + + + +

dōt

+
+

verb : is defined

+

Note: dōt is only for use with permanent conditions; for temporary conditions, see dōhiy.

+
+
+ + + +

hōwā

+
+

verb : is done

+
+
+ + + +

dāō

+
+

verb : is gone (to)

+
+
+ + + +

tëō

+
+

verb : is stopped

+
+
+ + + +

ōtsee

+
+

verb : is eaten

+
+
+ + + +

ōdsō

+
+

verb : is drunk

+
+
+ + + +

hhōwee

+
+

verb : is made

+
+
+ + + +

auhee

+
+

verb : is destroyed

+
+
+ + + +

dausut

+
+

verb : is given

+
+
+ + + +

dāōsō

+
+

verb : is taken

+
+
+ + + +

dōhiy

+
+

verb : is had

+
+
+ + + +

tausō

+
+

verb : is wanted

+
+
+ + + +

däsāt

+
+

verb : is needed

+
+
+ + + +

dudōwä

+
+

verb : is grown

+
+
+ + + +

ōsuh

+
+

verb : is used

+
+
+ + + + +

zhāsō

+
+

verb : is touched or felt

+
+
+ + + +

jäsātō

+
+

verb : is spoken

+
+
+ + + +

dōtōwä

+
+

verb : is made to sleep

+
+
+ + + +

hōwōsee

+
+

verb : is seen

+
+
+ + + +

dōwāt

+
+

verb : is mixed

+
+
+ + + + +

tōtō

+
+

verb : is enabled

+
+
+ + + +

dautāō

+
+

verb : is flown

+
+
+ + + +

däūd

+
+

verb : is grabbed

+
+
+ + + +

fōāsō

+
+

verb : is dropped

+
+
+ + + +

eedautiy

+
+

verb : is attacked

+
+
+ + + +

ätaus

+
+

verb : is hurt

+
+
+ + + +

siytā

+
+

verb : is punched

+
+
+ + + +

seetiy

+
+

verb : is kicked

+
+
+ + + +

sādō²

+
+

verb : is brought

+
+
+ + + + +

dōsiy²

+
+

verb : is arrived (at)

+
+
+ + + + +

tōtā

+
+

verb : is departed (from)

+
+
+ + + +

hhōwutee

+
+

verb : is killed

+
+
+ + + +

diytāzhō

+
+

verb : is raised

+
+
+ + + + +

fātjōsō

+
+

verb : is drawn (in)

+
+
+ + + +

futäsō

+
+

verb : is drawn (as in, a picture)

+
+
+ + + +

daudō

+
+

verb : is pulled

+
+
+ + + +

zhiyzhau

+
+

adjective : together; collected

+

noun : togetherness

+
+
+ + + +

+
+

subordinating conjunction : while

+
+
+ + + +

zhähhsō

+
+

masculine given name : meaning "sharp beauty"

+
+
+ + + + +

dāhhuh

+
+

adjective : having house-like qualities

+

noun : a house

+
  • (of an animal) a habitat
+
+
+ + + +

sāhheet

+
+

adjective : of or found in a store

+

noun : a store, esp. for food

+
+
+ + + +

pätō

+
+

adjective : fatherly

+

noun : father

+
+
+ + + +

iyzhō

+
+

verb : is met

+
+
+ + + +

dauhhuh

+
+

adjective : of or from a brothel

+

noun : a brothel

+
+
+ + + +

zhäsātūā

+
+

feminine given name : meaning "heard by the spirits"

+

Diminutives:

+ +
+
+ + + +

zhäsā²

+
+

feminine given name : diminutive of zhäsātūā.

+
+
+ + + +

gautō

+
+

adjective : of a prostitute

+

noun : a prostitute

+
+
+ + + +

tōhhfō

+
+

verb : (vulgar) is engaged in sexual intercourse by a prostitute

+
+
+ + + +

däūfut

+
+

adjective : portioned

+

noun : a portion

+
+
+ + + +

tauzhuh

+
+

adjective : syllabic

+

noun : a syllable

+
+
+ + + +

dōwuh

+
+

adjective : related to the Roman alphabet

+
  • (of a text) written using the dōwuh system
+

noun : the Roman alphabet

+
  • a system of romanization for the Jästūgā syllabary
+
+
+ + + +

säiyfā

+
+

verb : is moved

+
+
+ + + +

siyfādūwā

+
+

adjective : of a bus

+

noun : a bus

+
+
+ + + +

hāweeōs

+
+

verb : is hunted

+
+
+ + + +

äwō

+
+

verb : is asked

+
+
+ + + +

däū

+
+

verb : is broken up

+
+
+ + + +

auāō

+
+

adjective : detailed

+

noun : a detail

+
+
+ + + +

auhh

+
+

postposition : for

+
+
+ + +

jāsō

+
+

masculine given name : meaning "is felt"

+
+
+ + +

utaeō

+
+

feminine given name : from utao.

+
+
+ + + +

+
+

postposition : like

+
+
+ + + + +

tāgaus

+
+

verb : is meant or intended

+
+
+ + + +

hhiyhō

+
+

masculine given name : from hiyfuh.

+
+
+ + + +

dātō

+
+

adjective : of or having a wing

+

noun : a wing

+
+
+ + + +

tāaufūt

+
+

adjective : of a feather; feathered

+

noun : a feather

+
+
+ + +

taefä

+
+

feminine given name : from tāaufūt.

+
+
+ + + + + +

dōfuh

+
+

adjective : tall; high

+

noun : height

+
+
+ + + + + +

zhätiys

+
+

adjective : empathetic

+

noun : empathy; condolences

+
+
+

uwād zhau zhiy ätaus

+
+
+ + + + +

fātjudā

+
+

verb : is concerned; minds

+
+
+

fātjōsō judaentëd [drawn as a caretaker]

+
+
+ + + + +

sauduh

+
+

verb : is exchanged

+
+
+

susä zhōhh dausut

+
+
+ + + + +

zhōfau

+
+

adjective : valuable

+

noun : value

+
+
+

zhā jōfä sauduh

+
+
+ + + + +

zhōaus

+
+

verb : is appreciated

+
+
+

zhā zhōfau dausut

+
+
+ + + + +

+
+

honorific : neuter honorific

+
+
+

-tāhhätoi

+
+
+ + + + +

tae

+
+

honorific : feminine honorific

+
+
+

-tāhhätoi

+
+
+ + + + +

taufō

+
+

pronoun : none; nothing

+
+
+

tūād fō

+
+
+ + + + +

toizhau

+
+

pronoun : all; everything

+
+
+

tūād zhiyzhau

+
+
+ + + +

wau

+
+

subordinating conjunction : to

+
+
+

woi+auhh

+
+
+ + + +

tōdähh

+
+

verb : is lived

+
+
+

tōtā dähhmee

+
+
+ + + + +

uhhwōs

+
+

verb : is shown; is presented

+
+
+

ūhhl'hōwōsee

+
+
+ + + +

zhōsiy

+
+

classifier : generic object classifier

+
+
+

zhōd siy

+
+
+ + + + + + +

zhäfuh

+
+

adjective : partitioned; fragmented

+

noun : a thing

+
  • a piece
+
+
+

zhōd däūfut

+
+
+ + + + +

ōwāhhūë

+
+

adjective : practiced

+

noun : practice

+
+
+

hōwāl'giy auhh dāpë

+
+
+ + + + +

tōhhhō

+
+

adjective : studious

+

noun : student

+
+
+

tōtāhhhō

+
+
+
diff --git a/data/qjt/srcs/BasicVocab b/data/qjt/srcs/BasicVocab new file mode 100644 index 0000000..bf9ac2f --- /dev/null +++ b/data/qjt/srcs/BasicVocab @@ -0,0 +1,58 @@ + + +]> + + +Jästūgā – Basic vocab + + + + + +
+

Jästūgā – Basic Vocab

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
x-XX-jten-US
ōdōHello
uwād dōt?You are…? (To ask for a name)
ziy dōt _____I am _____ (To provide a name)
foet dōhiy uwād?How are you?
zhā dāpë (dohiy ziy)(I am) good
zhā dāzeetHungry
zhā dōtäsvāExhausted
zhā jōväGreat
zhā ōdāsōThirsty
zhā oetäsCold
zhā tātBad
zhā zhōseeHot
zhā zhūdFine; okay
zhā ziyzhaoCollected
uwād dōt foet?What are you like?
(ziy dōt) puh ziy āzhō aen(I am) Female
puh ziy āzhō dāQuick
puh ziy āzhō fōwūSmall
puh ziy āzhō gōpäStrong
puh ziy āzhō jōväGreat
puh ziy āzhō maowuhWise
puh ziy āzhō ōfūSoft
puh ziy āzhō ōtādYoung
puh ziy āzhō soetMale
puh ziy āzhō tämūWeak
puh ziy āzhō täzhōFoolish
puh ziy āzhō tōtāhhhōHardworking/Determined
puh ziy āzhō tūdSlow
puh ziy āzhō tūdvūLazy
puh ziy āzhō tūmäAged
puh ziy āzhō zūdsōBeautiful
moeAnd
Yes
No
+
+ + diff --git a/data/qjt/srcs/Syllabary b/data/qjt/srcs/Syllabary new file mode 100644 index 0000000..242237f Binary files /dev/null and b/data/qjt/srcs/Syllabary differ diff --git a/data/qjt/srcs/Syllabary.license b/data/qjt/srcs/Syllabary.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjt/srcs/Syllabary.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/srcs/SyllabaryOrigins/page01 b/data/qjt/srcs/SyllabaryOrigins/page01 new file mode 100644 index 0000000..d5d6738 Binary files /dev/null and b/data/qjt/srcs/SyllabaryOrigins/page01 differ diff --git a/data/qjt/srcs/SyllabaryOrigins/page01.license b/data/qjt/srcs/SyllabaryOrigins/page01.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjt/srcs/SyllabaryOrigins/page01.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/srcs/SyllabaryOrigins/page02 b/data/qjt/srcs/SyllabaryOrigins/page02 new file mode 100644 index 0000000..bfd8250 Binary files /dev/null and b/data/qjt/srcs/SyllabaryOrigins/page02 differ diff --git a/data/qjt/srcs/SyllabaryOrigins/page02.license b/data/qjt/srcs/SyllabaryOrigins/page02.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjt/srcs/SyllabaryOrigins/page02.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/srcs/SyllabaryOrigins/page03 b/data/qjt/srcs/SyllabaryOrigins/page03 new file mode 100644 index 0000000..38399ca Binary files /dev/null and b/data/qjt/srcs/SyllabaryOrigins/page03 differ diff --git a/data/qjt/srcs/SyllabaryOrigins/page03.license b/data/qjt/srcs/SyllabaryOrigins/page03.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjt/srcs/SyllabaryOrigins/page03.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/srcs/x-XX-jt/About.html b/data/qjt/srcs/x-XX-jt/About.html new file mode 100644 index 0000000..bb6d6f9 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/About.html @@ -0,0 +1,96 @@ + + + + + Jästugā - The Official Information Page for The Language + + + + + + + + + + +
+
+ +
+ + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Jästugā

+

+
+
+
+
+ + +
+ +
+ + +
+

ABOUT:
The Jästugā Project was started sometime around 2010, with the ambitious goal of eventually becoming a "complete" language. The language began with only a handful of simple words, and has gradually evolved from there.

+

So, why did you really create this language?
I am a writer, and one of the simple truths of writing in any "real" language is that, no matter what name you should pick, someone or something else also has that name. Since the focus of my writings was a fictional place that I wanted to detach from the real world as much as possible, I decided to create a language of my own so that I could create unique names with a real etymological basis. Furthermore, I wanted to prove that a complex language could evolve from a small selection of very simple words.

+

Why don't some of the words have definitions?
In order to prevent awkward situations that could potentially be created by having one's mouse in the wrong place when another looks at one's screen, the definitions of any words with "questionable" content have been "commented out". You can undo this, or view any such definitions, by opening the db.js file in a text editor.

+ + + + + + + +
+ CC0 + To the extent possible under law, has waived all copyright and related or neighboring rights to this work. This work is published from: United States .
+
+ + \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/Grammar.html b/data/qjt/srcs/x-XX-jt/Grammar.html new file mode 100644 index 0000000..ec76b07 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/Grammar.html @@ -0,0 +1,114 @@ + + + + + Jästugā - The Official Grammar Page for The Language + + + + + + + + + + +
+
+ +
+ + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Jästugā

+

+
+
+
+
+ + +
+ +
+ + +
+

THE VERB:
The verb defines an action. Verbs are, by default, in the passive voice; that is, they show to what an action happens before they what performed the action.

+

THE OBJECT AND SUBJECT:
The object tells what received an action, while the subject tells what performed the action. Every sentence must have either a subject or an object.

+

NOUN PHRASES:
The noun phrase defines a noun. There are two basic elements of a noun phrase: article, and noun. Adjective phrases can also be used to further describe a noun.
The article both defines the noun and describes it, as definite, indefinite, or proper. Articles are required for noun phrases.
The noun is the “subject” of a noun phrase; it states that which is being defined. Nouns can be any noun/adjective or any name. Nouns are required for noun phrases.
The adjective phrase helps to describe the noun. It is an alternative to using an adjective after the noun, and is the only way to show possession. For more information, see the section on adjective phrases.
The proper structure of the noun phrase is as follows:
Article, adjective phrase, noun
The noun phrase can be followed by a verb, some form of punctuation, or a solitary adjective.

+

ADJECTIVES:
The adjective is used to further describe a noun. The adjective is any noun/adjective without an article. Names cannot be adjectives. The adjective must be preceded by a noun phrase or another adjective (not in an adjective phrase).

+

ADJECTIVE PHRASES:
The adjective phrase can be used inside the noun phrase to describe a noun. It is preceded by an article, and followed by a noun. The adjective phrase has two parts: the adjective and the preposition.
The adjective describes the noun and can be any noun/adjective. The adjective can also be replaced with a name or a pronoun in an adjective phrase, and as a result is the only way to show possession by a proper noun.
The preposition is used to define the relationship between the adjective and the noun.
The proper structure of the adjective phrase phrase is as follows:
Adjective, preposition

+

ADVERB PHRASES:
An adverb phrase describes an action. It is comprised of a noun phrase and a preposition.
The noun phrase is used to describe the manner in which the action takes place, by drawing a correlation to a trait that is characteristic of the action.
The preposition defines the correlation between the verb and the noun phrase.
The proper structure of the adverb phrase is as follows:
Noun phrase, preposition
Adverb phrases describing an action can be placed either at the beginning of a sentence, or at the end. If the phrase is placed at the end, it must be separated by a comma.
Adverb phrases may also be used to describe adjectives, in which case they are placed before the adjectives.

+

SENTENCE STRUCTURE:

+
+
Basic (passive):
+
Adverb phrase, object, verb, subject
+
Furthermore, any noun or adjective not in an adjective phrase may be followed by an adjective (not shown), adverb phrases may be used before any adjective, and multiple adjective or adverb phrases may be used.
+
Indefinite object:
+
Verb, subject
+
The indefinite object sentence allows one to describe an action without saying on what the action is performed. Example: If one wanted to say “He eats,” without saying what he eats, then one would write “Eaten by him”. The object is implied to mean “things”, resulting in a sentence interpreted as “[Things are] eaten by him.”
+
Indefinite subject:
+
Object, verb
+
The indefinite subject sentence allows one to describe an action without saying who performs the action. Example: If one could say “It was eaten,” without saying who it was eaten by.
+
Active voice:
+
Subject, "is defined by", (noun phrase), relative pronoun, object, verb
+
The active voice allows the emphasis of the sentence to be placed on the performer of an action. Example: to say “He ate it,” one could write “He is defined as (the person) who it was eaten by.”
+
+ + + + + + + + +
+ CC0 + To the extent possible under law, has waived all copyright and related or neighboring rights to this work. This work is published from: United States .
+
+ + \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/Lessons.html b/data/qjt/srcs/x-XX-jt/Lessons.html new file mode 100644 index 0000000..391c5d7 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/Lessons.html @@ -0,0 +1,94 @@ + + + + + Jästugā - The Official Learning Page for The Language + + + + + + + + + + +
+
+ +
+ + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Jästugā

+

+
+
+
+
+ + +
+ +
+ + +
+ Lesson 1 + + + + + + + + +
+ CC0 + To the extent possible under law, has waived all copyright and related or neighboring rights to this work. This work is published from: United States .
+
+ + \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/Main.html b/data/qjt/srcs/x-XX-jt/Main.html new file mode 100644 index 0000000..3f5690c --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/Main.html @@ -0,0 +1,170 @@ + + + + + Jästugā - The Official Dictionary for The Language + + + + + + + + + + + + +
+
+ +
+ + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Jästugā

+

+
+
+
+
+ + +
+ +
+ + +
+
+ Filter Content: + +
+ + + + + +
WordEtymologyDefinition
+ + + + + + + +
+ CC0 + To the extent possible under law, has waived all copyright and related or neighboring rights to this work. This work is published from: United States .
+

+
+ + \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/Readme.txt b/data/qjt/srcs/x-XX-jt/Readme.txt new file mode 100644 index 0000000..c07b76b --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/Readme.txt @@ -0,0 +1,19 @@ +Jästugā Readme + +Requires Mozilla Firefox. Yes, really. Don't blame me if it looks wierd on other browsers. +And honestly, if you want it to look good, you should be running Aurora (http://www.mozilla.org/en-US/firefox/aurora/) + +Night mode added! Goto View -> Page Style -> Night! + +More detailed requirements: + Animated words: Firefox 5 + Awesome columns (links at top): Firefox 12 + Centered last line of paragraphs: Firefox 12 + +Tell me if you have problems! + +To view the dictionary, click "Main.html". +Please extract the .zip file before opening. + + + - ⸺ \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/Readme.txt.license b/data/qjt/srcs/x-XX-jt/Readme.txt.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/Readme.txt.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/srcs/x-XX-jt/Syllabary.html b/data/qjt/srcs/x-XX-jt/Syllabary.html new file mode 100644 index 0000000..bba12c9 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/Syllabary.html @@ -0,0 +1,96 @@ + + + + + Jästugā - The Official Syllabary for The Language + + + + + + + + + + +
+
+ +
+ + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Jästugā

+

+
+
+
+
+ + +
+ +
+ + +
+ Coming soon! + + + + + + + + +
+ CC0 + To the extent possible under law, has waived all copyright and related or neighboring rights to this work. This work is published from: United States .
+
+ + \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/files/ah.ico b/data/qjt/srcs/x-XX-jt/files/ah.ico new file mode 100644 index 0000000..f8268ac Binary files /dev/null and b/data/qjt/srcs/x-XX-jt/files/ah.ico differ diff --git a/data/qjt/srcs/x-XX-jt/files/ah.ico.license b/data/qjt/srcs/x-XX-jt/files/ah.ico.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/files/ah.ico.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/srcs/x-XX-jt/files/clover.css b/data/qjt/srcs/x-XX-jt/files/clover.css new file mode 100644 index 0000000..befb0b3 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/files/clover.css @@ -0,0 +1,252 @@ +/* +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 +*/ +/*Basic stuff:*/ + +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: normal; + src: url('../files/junicode/fonts/Junicode.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: normal; + src: url('../files/junicode/fonts/Junicode-Bold.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: italic; + src: url('../files/junicode/fonts/Junicode-Italic.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: italic; + src: url('../files/junicode/fonts/Junicode-BoldItalic.woff'); +} + +body { + background: #77CC77; + font-family: 'JCode', serif; + color: #236632; + -moz-font-feature-settings: "onum" 1, "ss02" 1, "dlig" 1; +} +h1 { + font-size: 3em; + text-align: center; + line-height: 1; +} +h2 { + font-size: 1em; + text-align: center; + line-height: 1; + color: #22BB22; +} +h3 { + font-size: 1.5em; +} +*:lang(x-XX-jt) { + color: #236632!important; +} +dfn { + font-style: normal; +} +.def { + color: #008813!important; +} +a { + text-decoration: none; + color: #226622; +} +a:hover { + color: #449944; +} +*.mainbody p { + text-align: justify; + -moz-text-align-last: center; +} +*.mainbody dt { + color: green; + text-decoration: underline; +} +*.mainbody dd { + text-align: justify; + -moz-text-align-last: center; + color: #668877; +} +*.mpl { + color: #6B6F63; + font-style: italic; +} + + +/*Top banner styling*/ +*.topcontainer { + position: absolute; + width: 100%; + left: 0%; + height: 200px; + background: #259535; + top: 0%; + border-bottom: thin solid #003000; + resize: vertical; +} +*.topbanner { + position: absolute; + height: 175px; + background: #AAFFAA; + top: 12.5px; + left: 12.5%; + right: 12.5%; +} +*.toptext { + position: absolute; + -moz-columns: 2; + -moz-column-fill: balance; + -moz-column-gap: 310px; + left: 0%; + top: 0%; + right: 0%; + bottom: 0%; + padding: .8em; + text-align: center; + line-height: 1.8; +} +*.topsvg { + width: 310px; + height: 175px; + margin: auto; +} +svg { + position: absolute; + stroke: #057505; +} +*.topsvg #textbox { + width: 220px; + position: absolute; + padding-left: 45px; + padding-right: 45px; +} +h2 { + -moz-animation-duration: 2s; + -moz-animation-name: pulse; + -moz-animation-iteration-count: infinite; +} +@-moz-keyframes pulse { + from { + font-size: 1em; + } + 50% { + font-size: 1.2em; + } + to { + font-size: 1em; + } +} + + +/*Sidebar styling*/ +*.sidecontainer{ + position: absolute; + top: 210px; + bottom: 10px; + width: 35%; + left: 0%; +} +*.sidebar{ + position: absolute; + height: 92.5%; + left: 5%; + right: 5%; + border: 5px solid #007700; + background: #AAFFAA; + padding: 5%; + overflow: auto; +} +*.pro { + font-size: 90%; +} + + +/*Main table styling*/ +*.mainbody { + margin-top: 210px; + margin-left: 37.5%; + margin-right: 2.5%; + margin-bottom: 10px; + color: #666600; + position: absolute; + top: 0px; + bottom: 0px; + overflow-y: auto; + border: 3px solid #007700; + background: #99ee99; + padding-left: .2em; + padding-right: .2em; +} +table{ + background: #123321; + width: 100%; +} +.sel { + background: #123321; + height: 1.8em; + text-align: right; + -moz-columns: 2; +} +select { + width: 50%; + margin-left: 0%; + margin-right: 50%; +} +#cc { + background: #003300; + font-size: 85%; +} +td:hover { + background: #BBFFBB; +} +td { + border: thin solid #055505; + padding-right: .8em; + padding-left: .8em; +} +tr { + background: #88CC88; +} +tr:hover { + background: #AADFAA; +} +col:first-child { + width: 15%; + height: 100%; +} +col:nth-child(2) { + width: 45%; +} +col:last-child { + width: 40%; +} +*.header { + background: none!important; +} +*.header td { + text-decoration: underline; + color: #33CC33; + border: none!important; + background: none!important; +} +thead tr { + background: none!important; + text-decoration: underline; + color: white; +} +*.empty { + background: none!important; + border: none; + height: .2em; +} \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/files/db.js b/data/qjt/srcs/x-XX-jt/files/db.js new file mode 100644 index 0000000..7a460fa --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/files/db.js @@ -0,0 +1,523 @@ +// SPDX-FileCopyrightText: Lady +// SPDX-License-Identifier: CC0-1.0 +/* Main Database */ +var dispList = new Array(); +var wordList = new Array(); +var tagList = { + people: new Array(), + body_parts: new Array(), + clothing: new Array(), + biorythms: new Array(), + sight: new Array(), + touch: new Array(), + taste: new Array(), + smell: new Array(), + hearing: new Array(), + emotions: new Array(), + life: new Array(), + abstracts: new Array(), + lang: new Array(), + time: new Array(), + numbers: new Array(), + submat: new Array(), + easky: new Array(), + natoc: new Array(), + names: new Array(), + qualcon: new Array(), + locn: new Array(), + pron: new Array(), + exp: new Array(), + anim: new Array(), + plant: new Array(), + food: new Array(), + tool: new Array(), + jwlry: new Array(), + inst: new Array(), + build: new Array(), + dist: new Array(), + art: new Array(), + yn: new Array(), + conj: new Array(), + mod: new Array(), + tense: new Array(), + mood: new Array(), + article: new Array(), + excl: new Array(), + prep: new Array(), + verb: new Array(), +}; + +function wordFilter() { + var f = document.getElementById("filters").value + if (f === "all") dispList = wordList.sort(nameSort); + else dispList = tagList[f].sort(nameSort); + document.getElementById("dictContent").innerHTML = ""; + for (i=0; i"+this.etymology+""+this.meaning+""; + this.sort = ""; +} + +function nameSort(word1, word2) { + var name1 = word1.sort; + var name2 = word2.sort; + if (name1 < name2) return -1; + else return 1; +}; + +var categorize = function(word) { + wordList[wordList.length] = word; + tagList[word.tag][tagList[word.tag].length] = word; + var caseLtr; + for (i=0; i2. The Language", "people")); +categorize(new Word("judænted", "VIII jundænted, from VII juädosā + sæted, 'loving woman'", "Caretaker", "people")); +categorize(new Word("otfähud", "VII hotsähē + tuædl, 'crab people'", "Mute", "people")); +categorize(new Word("sænted", "VIII sæntid, from VII sæted", "Woman", "people")); +categorize(new Word("tāħätœ", "VII", "Guardian", "people")); +categorize(new Word("tātä", "VIII tāhätœ", "Army", "people")); +categorize(new Word("tꜵtsā", "VII tautsē", "Hunter", "people")); +categorize(new Word("totādo", "VII totæd + dā, 'fast child'", "Older child", "people")); +categorize(new Word("toted", "VIII totid, from VII totæd", "Young child", "people")); +categorize(new Word("toʒutā", "VII towu + switād, 'small man'", "Young adult", "people")); +categorize(new Word("tuād (1)", "VII tuæd", "Person", "people")); +categorize(new Word("tudävä", "VII tudāwä", "Elder", "people")); +categorize(new Word("ʒeted", "VIII ʒitid, from VII switād", "Man", "people")); +categorize(new Word("dädhē", "VII däwdhī", "Neck/Throat", "body_parts")); +categorize(new Word("dājofoto", "VII dāoso + jäsāto, 'takes speech'", "Ear", "body_parts")); +categorize(new Word("dāodwā", "VII dā'o + dowā, 'go strong'", "Spine", "body_parts")); +categorize(new Word("dāəsāso", "VII dā'o + həsäso, 'goes back'", "Joints", "body_parts")); +categorize(new Word("dotädo", "VII", "Head", "body_parts")); +categorize(new Word("dotovī", "VII dotädo + owī, 'head owī'", "Nose", "body_parts")); +categorize(new Word("dovätħī", "VII dowä + tähādī, 'big side'", "Hip", "body_parts")); +categorize(new Word("dowāħē", "VII dowa+hā'ē, 'great life'", "Heart", "body_parts")); +// categorize(new Word("edæn", "VIII nedæ, from VII sæted", "Female breast", "body_parts")); +categorize(new Word("hādosī", "VII", "Eye", "body_parts")); +categorize(new Word("hādoso", "VII ħā'o + dāso", "Blood", "body_parts")); +categorize(new Word("ħāfohē", "VIII ħæfohē, from VII ħœtsohē", "Chest/Torso", "body_parts")); +categorize(new Word("hāsutmā", "VII hāso + sat'wā 'front of arm'", "Shoulder", "body_parts")); +categorize(new Word("hāto", "VII", "Hair", "body_parts")); +categorize(new Word("hopājo", "VII hotad + jāso, 'ground touch'", "Foot", "body_parts")); +categorize(new Word("hopəsāto", "VII howē + jäsāto, 'speech maker'", "Lung", "body_parts")); +categorize(new Word("ħosuād", "VII hosāso + tuæd, 'rock body'", "Bone", "body_parts")); +categorize(new Word("ovītfē", "VII owī+otsē, 'sharp eater'", "Tooth", "body_parts")); +categorize(new Word("sādo", "VII sā'do", "Leg", "body_parts")); +categorize(new Word("sätꜵsā", "VII sä'täusē", "Meat/Flesh", "body_parts")); +// categorize(new Word("säthāē", "VII sä'täusē + hā'ē, 'lifemeat'", "Placenta", "body_parts")); +categorize(new Word("sods", "VII so + odso, 'that which drinks'", "Tongue", "body_parts")); +categorize(new Word("sojā", "VII so + jāso, 'that which touches'", "Finger", "body_parts")); +categorize(new Word("somə", "VII sodā", "Skin", "body_parts")); +categorize(new Word("səhowē", "VII so + howē, 'that which creates'", "Hand", "body_parts")); +categorize(new Word("səwā", "VIII sawā, from VII sat'wā", "Arm", "body_parts")); +categorize(new Word("tuād (2)", "VII tuæd", "Body", "body_parts")); +// categorize(new Word("zætowu", "VII sæd + towu, 'female weakness'", "Female reproductive system, esp. vulva", "body_parts")); +// categorize(new Word("ʒœto", "VII sœt", "Male reproductive system, esp. penis", "body_parts")); +categorize(new Word("zotsē", "VII sotsē", "Mouth", "body_parts")); +categorize(new Word("əsoto", "VIII asoto, from VII dasīto", "Pants", "clothing")); +categorize(new Word("dätoso", "VII dotäsā", "Shoes", "clothing")); +categorize(new Word("domodä", "VII dosoä", "Shirt", "clothing")); +categorize(new Word("dətädā", "VII ddotädā", "Hat", "clothing")); +categorize(new Word("jätādə", "VII säte + dotädā, 'animal hat'", "Mask", "clothing")); +categorize(new Word("todā", "VII todæ", "Clothing", "clothing")); +categorize(new Word("dāfuso", "VII dāso + tuso, 'water need'", "Thirst", "biorythms")); +categorize(new Word("dotogä", "VIII dotolvä, from VII dotowā, 'to sleep'", "Sleep", "biorythms")); +categorize(new Word("josət", "VII däusət + hotsə", "Waste elimination", "biorythms")); +// categorize(new Word("sænäʒē", "VII sædhā + ätē, 'moon sickness'", "Menstration", "biorythms")); +categorize(new Word("sētgē", "VII sēt + tēdsī, 'food pain'", "Hunger", "biorythms")); +categorize(new Word("bīfeut", "VII towu + hīätsē, 'berry'", "Purple", "sight")); +categorize(new Word("dāhētə (1)", "VII", "Transparent/Translucent", "sight")); +categorize(new Word("dwīmet", "VII dowīet", "Brown", "sight")); +categorize(new Word("fozē", "VII howosē", "Vision", "sight")); +categorize(new Word("hīə", "VIII hīa, from VII hīat", "Green", "sight")); +categorize(new Word("hīfə", "VII ħīha", "Light", "sight")); +categorize(new Word("jꜵtə", "VII daotə", "Blue", "sight")); +categorize(new Word("mꜵt", "VII ətäut", "Grey", "sight")); +categorize(new Word("ətꜵ", "VII utꜵt", "Dark/Black", "sight")); +categorize(new Word("ʒꜵ", "VII dꜵsē", "Red/Yellow/Orange", "sight")); +categorize(new Word("ʒændā", "VII sædhā", "White", "sight")); +categorize(new Word("hofäsē", "VII hotsäsē", "Feeling (physical)", "touch")); +categorize(new Word("tedsī", "VII tēdsī", "Pain", "touch")); +categorize(new Word("dātīt", "VII dātītsē", "Sourness", "taste")); +categorize(new Word("dojīdo", "VII däwdhī + dosā'o, 'throat feelings'", "Sweetness", "taste")); +categorize(new Word("jowäset", "VII dowäso + sēt, 'ocean food'", "Saltiness", "taste")); +categorize(new Word("pꜵfē", "VII sotsē + dꜵsē, 'mouth fire'", "Hotness (spiciness)", "taste")); +categorize(new Word("sofēʒī", "VII sotsē + tēdsī, 'tongue pain'", "Bitterness", "taste")); +categorize(new Word("ojīs", "VII owī + dosā'o, 'nose emotions'", "Scent", "smell")); +categorize(new Word("dopäjē", "VII dotädo + tēdsī, 'head pain'", "Loud", "hearing")); +categorize(new Word("foʒuso", "VII towu + tēdsī, 'weak voice'", "Quiet", "hearing")); +categorize(new Word("zāpā", "VII jäsāto", "Noise", "hearing")); +categorize(new Word("ʒäsā", "VII jäsāto", "Speech", "hearing")); +categorize(new Word("pomä", "No direct ancestors, influenced by VII dosā'ā and jäsāto", "Music", "hearing")); +categorize(new Word("ʒāo", "VII dosā'o", "Emotion", "emotions")); +categorize(new Word("dodā", "VII", "Happiness", "emotions")); +categorize(new Word("topā", "VII dotāt", "Anger", "emotions")); +categorize(new Word("ħœfo", "VII ħo'to", "Sadness", "emotions")); +categorize(new Word("hotäjo", "VII hosāso + dotädo", "Frustration", "emotions")); +categorize(new Word("hozīd", "VII hosīd", "Love, between friends or family", "emotions")); +categorize(new Word("jumændosā", "VIII numädosā, from VII juädosā", "Awe; love of art/beauty", "emotions")); +categorize(new Word("mowā", "VII dowæt", "Calmness/Peacefulness", "emotions")); +categorize(new Word("ʒꜵjə", "VII dꜵsē + dodsā", "Passion", "emotions")); +categorize(new Word("dāosē", "VII dā + dæsī", "Mental energy/Exitement", "emotions")); +categorize(new Word("hämē", "VII hā'ē", "Life", "life")); +categorize(new Word("fäē", "VII täh'ē", "Death", "life")); +categorize(new Word("däħmē", "VII däħē", "Livingness/Healthiness", "life")); +categorize(new Word("täħē", "VII täħ'ē", "Deadness/Lack of life", "life")); +categorize(new Word("ätē", "VII", "Sickness", "life")); +categorize(new Word("fedso", "VII tēdsī + so, 'pain thing'", "Injury", "life")); +categorize(new Word("jo", "VII dāt + so", "Right", "abstracts")); +categorize(new Word("zäfo", "VII tāt + so", "Wrong", "abstracts")); +categorize(new Word("dävo", "VII dꜵwä", "Knowledge/Wisdom", "abstracts")); +categorize(new Word("jꜵvə", "VII dowä", "Power", "abstracts")); +categorize(new Word("soʒumäd", "VII so + juädosā", "Beauty", "abstracts")); +categorize(new Word("hosē", "VII hosīd", "Trust", "abstracts")); +categorize(new Word("dāgꜵwə", "VII dāt + dæwä", "Hope", "abstracts")); +categorize(new Word("doteħvo", "VII dowä + totehħo", "Courage", "abstracts")); +categorize(new Word("toʒutsā", "VII towu + jäsāto, 'small speech'", "Word", "lang")); +categorize(new Word("doʒāto", "VII dowä + jasāto", "Statement", "lang")); +categorize(new Word("pœt", "No direct ancestors", "A moment; also, time", "time")); +categorize(new Word("hœpə", "VII hīhä", "Day, esp. midday", "time")); +categorize(new Word("zænʒā", "VII sædhā", "Night", "time")); +categorize(new Word("ædæ", "VII sædhā + hā'ē, 'moon life'", "Month", "time")); +categorize(new Word("dovītə", "VII dowätu + ħīhä, 'baby sun'", "Morning", "time")); +categorize(new Word("fəmovə", "VII tudowu + ħīhä, 'old sun'", "Evening", "time")); +categorize(new Word("səpœ", "VIII sapœ, from VII sat + VIII pœt", "The current time; the present", "time")); +categorize(new Word("ʒœt", "VII so + VIII pœt", "A later time; the future", "time")); +categorize(new Word("pəsä", "VII pœt + səsä", "A previous time; the past", "time")); +categorize(new Word("1 - ʒo", "VII so", "One", "numbers")); +categorize(new Word("2 - mos", "VIII los, from VII sol, 'things'", "Two", "numbers")); +categorize(new Word("3 - goju", "VIII ʒols, from VII so + sol", "Three", "numbers")); +categorize(new Word("4 - zävā", "VII sat'wā, 'hand'", "Four", "numbers")); +categorize(new Word("5 - wāt", "VIII wālt, from VIII zālt, from VII sol", "Five", "numbers")); +categorize(new Word("6 - spo", "VII sol", "Six", "numbers")); +categorize(new Word("7 - jät", "VIII ʒät, from VII sol", "Seven", "numbers")); +categorize(new Word("10 - sænto", "VIII säntol, from VII sat'wāl, 'hands'", "Eight", "numbers")); +categorize(new Word("dāso", "VII", "Water", "submat")); +categorize(new Word("vemet", "VIII vimet, from VII dowiet", "Wood", "submat")); +categorize(new Word("pozäso", "VII hosāso", "Rock/Stone", "submat")); +categorize(new Word("pozə", "VII hotsə", "Ground", "submat")); +categorize(new Word("dꜵsē", "VII", "Fire", "submat")); +categorize(new Word("dozə", "VII dowä + hosāso, 'strong rock'", "Metal", "submat")); +categorize(new Word("tovuso", "VII towu + hosāso", "Clay", "submat")); +categorize(new Word("dꜵtə", "VII", "Sky", "easky")); +categorize(new Word("ħītə", "VII ħīhä", "Moon", "easky")); +categorize(new Word("toväē", "VII towā'ē", "Star", "easky")); +categorize(new Word("hoʒā", "VII hotsā", "Land", "easky")); +categorize(new Word("tudāso", "VII", "River/Creek", "easky")); +categorize(new Word("dœväso", "VII dowäso", "Large body of water", "easky")); +categorize(new Word("towudo", "VII towu + dāso, 'small water'", "Smaller body of water", "easky")); +categorize(new Word("dowätsā", "VII dowä + hotsā, 'great land'", "Mountains", "easky")); +categorize(new Word("tovutzā", "VII towu + hotsā, 'weak land'", "Valleys", "easky")); +categorize(new Word("dāsozā", "VII dāso + hotsā, 'water land'", "Island", "easky")); +categorize(new Word("ʒꜵ", "VII dꜵtə + so, 'skystuff'", "Air", "submat")); +categorize(new Word("gupə", "VIII gud + pozə, 'allground'", "Earth/World", "easky")); +categorize(new Word("dꜵtosā", "VII dꜵtə + dosāo, 'sky emotions'", "Weather", "natoc")); +categorize(new Word("dātäso", "VII", "Cloud", "natoc")); +categorize(new Word("dozā", "VII dodsā", "Rain", "natoc")); +categorize(new Word("dotəs", "VII dotās", "Snow", "natoc")); +categorize(new Word("jowā", "VII dowæt", "Wind", "natoc")); +categorize(new Word("ətꜵ", "VII ətꜵt", "Storm", "natoc")); +categorize(new Word("jovəs", "VII dowä + dotās, 'hard snow'", "Hail", "natoc")); +categorize(new Word("ʒꜵsə", "VII dætə + dꜵsē, 'sky fire'", "Lightning", "natoc")); +categorize(new Word("hāpē", "VII hā'ē", "Spring", "natoc")); +categorize(new Word("ħīmä (1)", "VII ħīhä", "Summer", "natoc")); +categorize(new Word("ħīmä (2)", "VIII ħīmä (1)", "Year", "time")); +categorize(new Word("täænē", "VIII tänē, from VII täh'ē", "Autumn", "natoc")); +categorize(new Word("ændə", "VII sædħā", "Winter", "natoc")); +categorize(new Word("tæn", "IX täænē, 'Autumn'", "Feminine name", "names")); +categorize(new Word("īotæhiə", "IX īotā + VII hīa, 'Green Shoot'", "Feminine name", "names")); +categorize(new Word("īo", "dim. of īotæhiə", "Feminine name", "names")); +categorize(new Word("dā", "VII", "Quickness", "qualcon")); +categorize(new Word("tud", "VII", "Slowness", "qualcon")); +categorize(new Word("jovä", "VII dowä", "Greatness", "qualcon")); +categorize(new Word("fowu", "VII towu", "Smallness/Unimporance", "qualcon")); +categorize(new Word("gopä", "VII dowä", "Strength", "qualcon")); +categorize(new Word("tämu", "VII towu", "Weakness", "qualcon")); +categorize(new Word("dāpe", "VII dāt", "Goodness", "qualcon")); +categorize(new Word("tāt", "VII", "Badness", "qualcon")); +categorize(new Word("mꜵwə", "VII dꜵwə", "Wisdom", "qualcon")); +categorize(new Word("dātäʒo", "VII dotädo + dātäso", "Stupidity", "qualcon")); +categorize(new Word("täʒo", "VIII dātäʒo", "Foolishness", "qualcon")); +categorize(new Word("totāħho", "VII totehħo", "Hardworkingness/Determination", "qualcon")); +categorize(new Word("tudvu", "VII tud + towu", "Lazy", "qualcon")); +categorize(new Word("äħmo", "No direct ancestors, influenced by VII owī", "Sharpness", "qualcon")); +categorize(new Word("ħāso", "VII", "Front", "locn")); +categorize(new Word("səsä", "VII həsāso", "Back", "locn")); +categorize(new Word("tīhād", "VII tähādī", "Side", "locn")); +categorize(new Word("dhītə", "VII", "Top", "locn")); +categorize(new Word("œsə", "VII dœtsə", "Down", "locn")); +categorize(new Word("pī", "No direct ancestors", "Right (side)", "locn")); +categorize(new Word("dī", "No direct ancestors", "Left (side)", "locn")); +categorize(new Word("zäto", "VII satohī", "Nearness", "locn")); +categorize(new Word("sojo", "VII sodohī", "Farness", "locn")); +categorize(new Word("sahī", "VII satohī", "Here", "pron")); +categorize(new Word("dosī", "VII sodohī", "There", "pron")); +categorize(new Word("zo", "VII so", "That", "pron")); +categorize(new Word("sət", "VIII sat, from VII", "This", "pron")); +categorize(new Word("ʒod", "VII sod", "Impersonal third person pronoun", "pron")); +categorize(new Word("æ", "VII sæ", "Female third person pronoun", "pron")); +categorize(new Word("su", "VII", "Male third person pronoun", "pron")); +categorize(new Word("əwād", "VII sə'æd", "Second person pronoun", "pron")); +categorize(new Word("zī", "VII sī", "First person pronoun", "pron")); +categorize(new Word("fœt", "VII zo + sat, 'This or that?'", "Impersonal relative pronoun", "pron")); +categorize(new Word("fī", "VII sī, 'Me?'", "Personal relative pronoun", "pron")); +categorize(new Word("dāzēt", "VII däsāt + sēt, 'Need food'", "Hunger", "qualcon")); +categorize(new Word("odāso", "VII däsāt + odso, 'Need drink'", "Thirst", "qualcon")); +categorize(new Word("dotäsvā", "VII däsāt + dotowā, 'Need sleep'", "Exhaustion", "qualcon")); +categorize(new Word("ꜵte", "VII ꜵhē", "Brokenness", "qualcon")); +categorize(new Word("tudän", "VII tudowä", "Age", "qualcon")); +categorize(new Word("otād", "VII totæd", "Youth", "qualcon")); +categorize(new Word("æn", "VII sæd", "Female", "qualcon")); +categorize(new Word("sœt", "VII", "Male", "qualcon")); +categorize(new Word("väd", "VII dowä", "Hardness", "qualcon")); +categorize(new Word("ofu", "VII towu", "Softness", "qualcon")); +categorize(new Word("ħœt", "VII hotsə", "Roughness", "qualcon")); +categorize(new Word("dæs", "VII dāso", "Smoothness", "qualcon")); +categorize(new Word("ʒosē", "VII dꜵsē", "Heat", "qualcon")); +categorize(new Word("œtäs", "VII dotās", "Coldness", "qualcon")); +categorize(new Word("ħēmə", "VII ħīat", "Flexibility", "qualcon")); +categorize(new Word("zudso", "VII juädosā +so", "Beauty", "qualcon")); +categorize(new Word("ħotʒī", "VII howosē + tēdsī", "Ugliness", "qualcon")); +categorize(new Word("dātomē", "VII dāt + sotsē", "Smile", "exp")); +categorize(new Word("ʒotā", "VII dotāt", "Frown", "exp")); +categorize(new Word("dəsāto", "VII dodā + jäsāto, 'Happy voice", "Laughter", "exp")); +categorize(new Word("dojā", "VII dodsā", "Crying", "exp")); +categorize(new Word("dātoso", "VII", "Shortwolf", "anim")); +categorize(new Word("zoʒo", "VII", "Largefrog", "anim")); +categorize(new Word("zofā", "VII zotsā", "Snake", "anim")); +categorize(new Word("gꜵsī", "VII", "Salamander", "anim")); +categorize(new Word("gosə", "VII", "Bird", "anim")); +categorize(new Word("hotusē", "VII hotsäħē", "Crab", "anim")); +categorize(new Word("dāzät", "VII dāsotē", "Fish", "anim")); +categorize(new Word("tävē", "VII toväħe", "Insects", "anim")); +categorize(new Word("dādē", "VII", "Frog hare", "anim")); +categorize(new Word("gāo", "VII bāo", "Small mammal", "anim")); +categorize(new Word("tabꜵ", "VII täh'e + bāo, 'Zombie mouse'", "Porcumouse (poisonous)", "anim")); +categorize(new Word("dovī", "VII dowī", "Otterbear", "anim")); +categorize(new Word("sätsuē", "VII sätsutē", "Deer", "anim")); +categorize(new Word("zätē", "VII sätē", "Animal", "anim")); +categorize(new Word("ħofē", "VII hīätsē + otsē, 'Plant-eater'", "Platipus-cow (cattle)", "anim")); +categorize(new Word("fꜵzē", "VII sä'tꜵsē", "Pig", "anim")); +categorize(new Word("dätzē", "VII dā + sätē, 'quick animal'", "Waterfox (cat)", "anim")); + //Note: For dätze, the "quick" in the etymology is a reference to swiftness, nimbleness, cleverness, etc. +categorize(new Word("hīät", "VII hīat", "Vegitation", "plant")); +categorize(new Word("dꜵʒīt", "VII dꜵzīat", "Flowering plant", "plant")); +categorize(new Word("ofī", "VII hotsīt", "Bush", "plant")); +categorize(new Word("dotīät", "VII dotiat", "Tree", "plant")); +categorize(new Word("īotā", "VII hīāt + otād", "A sprout", "plant")); +categorize(new Word("sēt", "VII", "Food", "food")); +categorize(new Word("hīfē", "VII hīätsē", "Plantstuffs (edible)", "food")); +categorize(new Word("sāfē", "VII sä'tꜵsē", "Meat", "food")); +categorize(new Word("tidfē", "VII dtāītsē", "Fruit", "food")); +categorize(new Word("votāsē", "VII towā'ē + sēt, 'Starfood'", "Rice", "food")); +categorize(new Word("dāħītsə", "VII ħīhä + dātītsē, 'Sun fruit'", "Apple (yellow)", "food")); +categorize(new Word("dædsā", "VII sædħā + dātītsē, 'Moon fruit'", "Snow citrus (similar to Satsuma)", "food")); +categorize(new Word("tovītsē", "VII towā'ē + dātītsē, 'Star fruit'", "Compound berry", "food")); +categorize(new Word("odsāo", "VII dosā'o + odsā", "Alcohol", "food")); +categorize(new Word("tꜵwā", "VII tauhā", "Weapon", "tool")); +categorize(new Word("owī", "VII", "Sharp object", "tool")); +categorize(new Word("gəsī", "VIII bəsī, from VII gosə + owī", "Spear", "tool")); +categorize(new Word("ꜵvīt", "VII owī", "Knife", "tool")); +categorize(new Word("hofädo", "VII hotsə + dā'o", "Wheel", "tool")); +categorize(new Word("hofādso", "VIII hofädo + so", "Wheeled cart", "tool")); +categorize(new Word("dotsīto", "VII dotohī + so", "Pot (or other container)", "tool")); +categorize(new Word("däʒētsē", "VII däwdhī + dātītsē, 'neck fruit'", "Necklace", "jwlry")); +categorize(new Word("sədētsā", "VIII sadētsā, from VII sat'wā + dātītsē, 'wrist fruit'", "Bracelet", "jwlry")); +categorize(new Word("owītsē", "VII owī + dātītsē, 'sharp fruit'", "Piercing", "jwlry")); +//Note: As you may have noticed, fruit is considered a symbol of wealth, beauty, and adornment - Jewelry +categorize(new Word("jāsotə", "VII jāso + hotsə", "Drums", "inst")); +categorize(new Word("ʒāo", "VII jāso + dāso", "Strings", "inst")); +categorize(new Word("domā", "VII dowæt", "Flutes", "inst")); +categorize(new Word("tototsə", "VII totēhħo + hotsə", "Copper", "submat")); +categorize(new Word("dawotsə", "VII dꜵwä + hotsə", "Bronze", "submat")); +categorize(new Word("hīotsə", "VII hīhä + hotsə", "Gold", "submat")); +categorize(new Word("oʒās", "VII ħosāso", "Dirt", "submat")); +categorize(new Word("tozo", "VII todā + so", "Cloth", "submat")); +categorize(new Word("sosutē", "VII sodā + sätsutē", "Leather", "submat")); +categorize(new Word("ʒud", "VII du", "Fine; OK", "qualcon")); +categorize(new Word("ꜵtfē", "VII ꜵħē", "Dangerous", "qualcon")); +categorize(new Word("pāzo", "VII hāso", "Start/Beginning", "locn")); +categorize(new Word("ʒätso", "VII həsäso", "Finish/End", "locn")); +categorize(new Word("ʒätāzo", "VII däsāt", "More", "pron")); +categorize(new Word("dꜵs", "VII dāoso", "Less", "pron")); +categorize(new Word("ꜵst", "VII dꜵsət", "Another", "pron")); +categorize(new Word("toʒu", "VIII hoʒā + tovuso, 'Clay land'", "Map", "tool")); +categorize(new Word("tātä", "VIII tāhätœ", "Army", "people")); +categorize(new Word("dumä", "VII daħmē + səhī", "Room", "build")); +categorize(new Word("duwātsä", "VIII tuād + dowätsā", "City", "build")); +categorize(new Word("dāʒo", "VIII doʒāto", "Story (literature)", "lang")); +categorize(new Word("fotjo", "VIII fot + sojo, 'What farness'", "Length", "dist")); +categorize(new Word("fäħsēħ", "VIII fatäsol'ħə, 'drawing'", "Draft", "art")); +categorize(new Word("wādœʒə", "VIII jäsāto + œʒə + əwād, 'How are you spoken?'", "Name", "lang")); +categorize(new Word("du", "VII", "Yes", "yn")); +categorize(new Word("fo", "VII to", "No", "yn")); +categorize(new Word("væ", "VII howē", "For", "conj")); +categorize(new Word("mœ", "No direct ancestors", "And", "conj")); +categorize(new Word("fīt", "VII to", "Nor", "conj")); +categorize(new Word("o", "No direct ancestors", "But", "conj")); +categorize(new Word("äz", "VII däsat", "Or", "conj")); +categorize(new Word("od", "No direct ancestors", "Yet", "conj")); +categorize(new Word("sē", "VII howosē", "So", "conj")); +categorize(new Word("-l (1)", "- - -", "Pluralize", "mod")); +categorize(new Word("-l'ħə", "- - -", "-ing", "mod")); +categorize(new Word("-l'vet", "- - -", "-tion", "mod")); +categorize(new Word("-l'to", "- - -", "One who... (-er)", "mod")); +categorize(new Word("-l'ʒē", "- - -", "-ate", "mod")); +categorize(new Word("to-", "- - -", "un-", "mod")); +categorize(new Word("met-", "- - -", "re-", "mod")); +categorize(new Word("uħl'-", "- - -", "Optative (indicative)/Permissive (imperative)", "mood")); +categorize(new Word("äl'-", "- - -", "Mirative (indicative)", "mood")); +categorize(new Word("odl'-", "- - -", "Assumptive & deductive (indicative)/Hortative (imperative)", "mood")); +categorize(new Word("dul'-", "- - -", "Alethic - No other possibility; must be true (indicative)/Jussive (imperative)", "mood")); +categorize(new Word("fīl'-", "- - -", "Not", "mod")); +categorize(new Word("ʒāsl'-", "- - -", "Renarrative (indicative)", "mood")); +categorize(new Word("tädl'-", "- - -", "Commissive (indicative)/Precative (imperative)", "mood")); +categorize(new Word("-l'vo", "- - -", "-ify", "mod")); +categorize(new Word("-l'go", "- - -", "Past tense", "tense")); +categorize(new Word("-l'ä", "- - -", "Future tense", "tense")); +categorize(new Word("-l'gī", "- - -", "Infinitive", "mod")); +categorize(new Word("-l (2)", "- - -", "Imperative", "mood")); +categorize(new Word("pə", "No direct ancestors", "Definite Article", "article")); +categorize(new Word("ʒā", "No direct ancestors", "Indefinite Article", "article")); +categorize(new Word("äʒə", "No direct ancestors", "Proper Article", "article")); +categorize(new Word("odo", "VIII dosī", "Hello", "excl")); +categorize(new Word("ʒꜵʒā", "VIII ʒāo + ʒꜵ, 'Emotion of the air'", "Aura/Atmosphere", "abstracts")); +categorize(new Word("tuʒꜵā", "VIII tuād + IX ʒꜵʒā, 'Aura person'", "Spirit/Presence", "people")); +categorize(new Word("dwomā", "VIII dwīmet", "Coffee", "food")); +categorize(new Word("-l'āo", "- - -", "Past participle", "mod")); +categorize(new Word("īʒāo", "VIII dītāʒol'āo, 'risen'", "Bread", "food")); +categorize(new Word("ʒꜵ", "VII jāso", "With", "prep")); +categorize(new Word("ʒoħ", "VII sodoħī", "To", "prep")); +categorize(new Word("sī", "VII satoħī", "From", "prep")); +categorize(new Word("zəfo", "VIII zafo, from VII satoħī", "In", "prep")); +categorize(new Word("täħdē", "VII tähādī", "Out", "prep")); +categorize(new Word("īə", "VII hīhä", "On", "prep")); +categorize(new Word("tsə", "VII ħofsə", "Off", "prep")); +categorize(new Word("ād", "VII dādē", "Around", "prep")); +categorize(new Word("āo", "VII bāo", "Through", "prep")); +categorize(new Word("gos", "VII gosə", "Above", "prep")); +categorize(new Word("āso", "VII hosāso", "Below", "prep")); +categorize(new Word("āī", "VII hādī", "Between", "prep")); +categorize(new Word("äādī", "VII tähādī", "Beside", "prep")); +categorize(new Word("āʒo", "VIII āo + ʒꜵ", "Of", "prep")); +categorize(new Word("āfī", "IX āʒo + VIII āfohī, 'Of where'", "At", "prep")); // Note: āfohī was later removed from VIII in favor of an improved interrogative pronoun system +categorize(new Word("dot", "VII", "Is defined", "verb")); +categorize(new Word("howā", "VII ohwā", "Is done/Is able to be done", "verb")); +categorize(new Word("dāo", "VII", "Is gone", "verb")); +categorize(new Word("teo", "VII", "Is stopped", "verb")); +categorize(new Word("otsē", "VII", "Is eaten", "verb")); +categorize(new Word("odso", "VII", "Is drunk", "verb")); +categorize(new Word("ħowē", "VII", "Is made", "verb")); +categorize(new Word("ꜵhē", "VII", "Is destroyed", "verb")); +categorize(new Word("dꜵsət", "VII", "Is given", "verb")); +categorize(new Word("dāoso", "VII", "Is taken", "verb")); +categorize(new Word("dohī", "VII dotohī", "Is had", "verb")); +categorize(new Word("tꜵso", "VII", "Is wanted", "verb")); +categorize(new Word("däsāt", "VII", "Is needed", "verb")); +categorize(new Word("dədowä", "VII dodowə", "Is grown", "verb")); +categorize(new Word("osə", "VII", "Is used", "verb")); +categorize(new Word("ʒāso", "VII jāso", "Is touched/Is felt", "verb")); +categorize(new Word("jäsāto", "VII", "Is spoken", "verb")); +categorize(new Word("dotowä", "VII", "Is slept", "verb")); +categorize(new Word("howosē", "VII", "Is seen", "verb")); +categorize(new Word("dowāt", "VII dowätu + ħowē, 'Make new'", "Is mixed", "verb")); +categorize(new Word("toto", "VII totehħo, 'able'", "Is enabled", "verb")); +categorize(new Word("dꜵtāo", "VII dꜵtə + dā'o", "Is flown", "verb")); +categorize(new Word("däud", "VII dā'oso + sod", "Is grabbed", "verb")); +categorize(new Word("foāso", "VII toh + dā'oso", "Is dropped", "verb")); +categorize(new Word("ēdꜵtī", "VII dꜵsət + tēdsī", "Is attacked", "verb")); +categorize(new Word("ätꜵs", "VII dꜵsət + ätē", "Is hurt", "verb")); +categorize(new Word("sītā", "VII sat'wā + tēdsī", "Is punched", "verb")); +categorize(new Word("sētī", "VII sā'do + tēdsī", "Is kicked", "verb")); +categorize(new Word("sādo", "VII dā'o + dā'oso", "Is brought", "verb")); +categorize(new Word("dosī", "VII dā'o + sī", "Is come", "verb")); +categorize(new Word("totā", "VII to + te'o", "Is left", "verb")); +categorize(new Word("ħowətē", "VIII ħowatē, from VII ħowē + tahē", "Is killed", "verb")); +categorize(new Word("ʒoħʒə", "VIII ʒoħ + hoʒā, 'To land'", "Is arrived", "verb")); +categorize(new Word("dītāʒo", "VIII dhītə ʒo sādo", "Is risen", "verb")); +categorize(new Word("fātjoso", "VIII fotjo + dāoso, 'Long take'", "Is drawn (as in 'pull')", "verb")); +categorize(new Word("fətäso", "X fatäso, from IX fātjoso + VIII jäsāto, 'Drawn speech'", "Is drawn (as in, a picture)", "verb")); +categorize(new Word("dꜵdo", "VIII sādo", "Is pulled", "verb")); +categorize(new Word("zīʒꜵ", "VIII zīol + ʒꜵ, 'With ourselves'", "Togetherness", "qualcon")); +categorize(new Word("po", "VIII pœt", "While", "conj")); +categorize(new Word("zäħso", "VIII zudso + äħmo, 'Sharp beauty'", "Masculine name", "names")); +categorize(new Word("dāħe", "VIII däħme + āfī, 'Living at'", "House", "build")); +categorize(new Word("sāħēt", "IX dāħe + VIII sēt, 'Food house'", "Store, esp. for food", "build")); +categorize(new Word("päto", "No direct ancestors", "Father", "people")); +categorize(new Word("īʒo", "IX zīʒꜵ + VIII ħowē, 'Assemble'", "Is met", "verb")) + +window.addEventListener('DOMContentLoaded', wordFilter, false); +window.addEventListener('change', wordFilter, false); \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/files/global.js b/data/qjt/srcs/x-XX-jt/files/global.js new file mode 100644 index 0000000..c23e074 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/files/global.js @@ -0,0 +1,31 @@ +// SPDX-FileCopyrightText: Lady +// SPDX-License-Identifier: CC0-1.0 +/* Quote-thingies */ +var hTwo = ["Official Dictionary!", "It's Awesome!", "I ♥ Firefox!", "v. 8.2b", "De-1337", "Not 'to be'!", "I'm sorry...", "My word!", "(un)Censored!", "Diacritical!", "Unicode!", "<h2>", "Constantly growing!", "Now organic!", "Derive this!", "y'", "Something different!", "Thank you!", "Math.random()", "'Single quotes'!", "Not my fault!", "Safe!", "Refreshing!", "What's this?", "Jästugā is evolving!", "ECHO!", "...echo...", "Look inside!", "Learn it!", "Synergy!", "Not parasitic!", "Symbiotic!", "Non-toxic!", "Fancy!", "Ezh!", "-moz-animate", "Hid", "den", "Mess", "age!", "With taste!", "Sounds good!", "Emotional!", "Life!", "Abstract!", "Not moldy!", "It's time!", "Count me in!", "You animal!", "Vegetable!", "FOOD!", "A tool!", "Pretty!", "Musical!", "Building!", "A work of art!", "Yes!", "Modified!", "Odo!", "Action!", "β!"]; + +/* Stylesheet Selection */ +var now = new Date(); +var cssList = [document.getElementById("day"), document.getElementById("night"), document.getElementById("clover"), document.getElementById("oe")] +function cssSwitcher(n) { + for (i=0; i < cssList.length; i++) { + if (i === n) cssList[i].disabled = false; + else cssList[i].disabled = true; + } +} +if (now.getHours() < 8 || now.getHours() >= 20) { + cssSwitcher(1); + hTwo.push("It's nighttime!", "Ooh, Vampires!", "You're up late!"); +} +else if (now.getHours() === 12) { + cssSwitcher(3); + hTwo = ["Greetings!", "Good afternoon!", "Time for luncheon!", "Would you like some tea?"]; +} +else if (now.getMonth() === 2) { + if (now.getDate() === 17) { + cssSwitcher(2); + hTwo = ["Happy St. Patrick's Day!"]; + } +} +else if (now.getMonth() === 5) { + if (now.getDate() === 8) hTwo = ["Good Day!"]; +} \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/files/night.css b/data/qjt/srcs/x-XX-jt/files/night.css new file mode 100644 index 0000000..04966fa --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/files/night.css @@ -0,0 +1,252 @@ +/* +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 +*/ +/*Basic stuff:*/ + +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: normal; + src: url('../files/junicode/fonts/Junicode.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: normal; + src: url('../files/junicode/fonts/Junicode-Bold.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: italic; + src: url('../files/junicode/fonts/Junicode-Italic.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: italic; + src: url('../files/junicode/fonts/Junicode-BoldItalic.woff'); +} + +body { + background: #222222; + font-family: 'JCode', serif; + color: #EEEEEE; + -moz-font-feature-settings: "onum" 1; +} +h1 { + font-size: 3em; + text-align: center; + line-height: 1; +} +h2 { + font-size: 1em; + text-align: center; + line-height: 1; + color: #CC3355; +} +h3 { + font-size: 1.5em; +} +*:lang(x-XX-jt) { + color: #EEEEEE!important; +} +dfn { + font-style: normal; +} +.def { + color: #DD0013!important; +} +a { + text-decoration: none; + color: #BCBCBC; +} +a:hover { + color: #DEDEDE; +} +*.mainbody p { + text-align: justify; + -moz-text-align-last: center; +} +*.mainbody dt { + color: white; + text-decoration: underline; +} +*.mainbody dd { + text-align: justify; + -moz-text-align-last: center; + color: #DDCCFF; +} +*.mpl { + color: #FFBBC3; + font-style: italic; +} + + +/*Top banner styling*/ +*.topcontainer { + position: absolute; + width: 100%; + left: 0%; + height: 200px; + background: #000000; + top: 0%; + border-bottom: thin solid #550022; + resize: vertical; +} +*.topbanner { + position: absolute; + height: 175px; + background: #330011; + top: 12.5px; + left: 12.5%; + right: 12.5%; +} +*.toptext { + position: absolute; + -moz-columns: 2; + -moz-column-fill: balance; + -moz-column-gap: 310px; + left: 0%; + top: 0%; + right: 0%; + bottom: 0%; + padding: .8em; + text-align: center; + line-height: 1.8; +} +*.topsvg { + width: 310px; + height: 175px; + margin: auto; +} +svg { + position: absolute; + stroke: #EEEEEE; +} +*.topsvg #textbox { + width: 220px; + position: absolute; + padding-left: 45px; + padding-right: 45px; +} +h2 { + -moz-animation-duration: 2s; + -moz-animation-name: pulse; + -moz-animation-iteration-count: infinite; +} +@-moz-keyframes pulse { + from { + font-size: 1em; + } + 50% { + font-size: 1.2em; + } + to { + font-size: 1em; + } +} + + +/*Sidebar styling*/ +*.sidecontainer{ + position: absolute; + top: 210px; + bottom: 10px; + width: 35%; + left: 0%; +} +*.sidebar{ + position: absolute; + height: 92.5%; + left: 5%; + right: 5%; + border: 5px solid #220000; + background: #330011; + padding: 5%; + overflow: auto; +} +*.pro { + font-size: 90%; +} + + +/*Main table styling*/ +*.mainbody { + margin-top: 210px; + margin-left: 37.5%; + margin-right: 2.5%; + margin-bottom: 10px; + color: #BB99AA; + position: absolute; + top: 0px; + bottom: 0px; + overflow-y: auto; + border: 3px solid #220000; + background: #131313; + padding-left: .2em; + padding-right: .2em; +} +table{ + background: #331221; + width: 100%; +} +.sel { + background: #331221; + height: 1.8em; + text-align: right; + -moz-columns: 2; +} +select { + width: 50%; + margin-left: 0%; + margin-right: 50%; +} +#cc { + background: #000000; + font-size: 85%; +} +td:hover { + background: #5F2F3F; +} +td { + border: thin solid #542133; + padding-right: .8em; + padding-left: .8em; +} +tr { + background: #441122; +} +tr:hover { + background: #4F1F2F; +} +col:first-child { + width: 15%; + height: 100%; +} +col:nth-child(2) { + width: 45%; +} +col:last-child { + width: 40%; +} +*.header { + background: none!important; +} +*.header td { + text-decoration: underline; + color: #551100; + border: none!important; + background: none!important; +} +thead tr { + background: none!important; + text-decoration: underline; + color: white; +} +*.empty { + background: none!important; + border: none; + height: .2em; +} \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/files/oldenglish.css b/data/qjt/srcs/x-XX-jt/files/oldenglish.css new file mode 100644 index 0000000..7141a4c --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/files/oldenglish.css @@ -0,0 +1,252 @@ +/* +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 +*/ +/*Basic stuff:*/ + +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: normal; + src: url('../files/junicode/fonts/Junicode.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: normal; + src: url('../files/junicode/fonts/Junicode-Bold.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: italic; + src: url('../files/junicode/fonts/Junicode-Italic.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: italic; + src: url('../files/junicode/fonts/Junicode-BoldItalic.woff'); +} + +body { + background: #999ABC; + font-family: 'JCode', serif; + color: black; + -moz-font-feature-settings: "onum" 1, "hist" 1, "hlig" 1; +} +h1 { + font-size: 3em; + text-align: center; + line-height: 1; +} +h2 { + font-size: 1em; + text-align: center; + line-height: 1; +} +h3 { + font-size: 1.5em; +} +*:lang(x-XX-jt) { + color: black!important; +} +dfn { + font-style: normal; +} +.def { + color: #227002!important; +} +a { + text-decoration: none; + color: #454545; + -moz-font-feature-settings: "smcp" 1; +} +a:hover { + color: #747474; +} +*.mainbody p { + text-align: justify; + -moz-text-align-last: center; +} +*.mainbody dt { + color: black; + text-decoration: underline; +} +*.mainbody dd { + text-align: justify; + -moz-text-align-last: center; + color: #227002; +} +*.mpl { + color: #999BAD; + font-style: italic; +} + + +/*Top banner styling*/ +*.topcontainer { + position: absolute; + width: 100%; + left: 0%; + height: 200px; + background: #777899; + top: 0%; + border-bottom: thin solid #535555; + resize: vertical; +} +*.topbanner { + position: absolute; + height: 175px; + background: #EEE8DD; + top: 12.5px; + left: 12.5%; + right: 12.5%; +} +*.toptext { + position: absolute; + -moz-columns: 2; + -moz-column-fill: balance; + -moz-column-gap: 310px; + left: 0%; + top: 0%; + right: 0%; + bottom: 0%; + padding: .8em; + text-align: center; + line-height: 1.8; +} +*.topsvg { + width: 310px; + height: 175px; + margin: auto; +} +svg { + position: absolute; + stroke: black; +} +*.topsvg #textbox { + width: 220px; + position: absolute; + padding-left: 45px; + padding-right: 45px; +} +h2 { + -moz-animation-duration: 2s; + -moz-animation-name: pulse; + -moz-animation-iteration-count: infinite; +} +@-moz-keyframes pulse { + from { + font-size: 1em; + } + 50% { + font-size: 1.2em; + } + to { + font-size: 1em; + } +} + + +/*Sidebar styling*/ +*.sidecontainer{ + position: absolute; + top: 210px; + bottom: 10px; + width: 35%; + left: 0%; +} +*.sidebar{ + position: absolute; + height: 92.5%; + left: 5%; + right: 5%; + border: 5px solid #555666; + background: #EEE8DD; + padding: 5%; + overflow: auto; +} +*.pro { + font-size: 90%; +} + + +/*Main table styling*/ +*.mainbody { + margin-top: 210px; + margin-left: 37.5%; + margin-right: 2.5%; + margin-bottom: 10px; + color: #334566; + position: absolute; + top: 0px; + bottom: 0px; + overflow-y: auto; + border: 3px solid #545454; + background: #EEEEEE; + padding-left: .2em; + padding-right: .2em; +} +table { + background: #CCCCCC; + width: 100%; +} +.sel { + background: #CCCCCC; + height: 1.8em; + text-align: right; + -moz-columns: 2; +} +select { + width: 50%; + margin-left: 0%; + margin-right: 50%; +} +#cc { + background: #000000; + font-size: 85%; +} +td:hover { + background: #F6F6F6; +} +td { + border: thin solid #A0A0A0; + padding-right: .8em; + padding-left: .8em; +} +tr { + background: #DDDDDD; +} +tr:hover { + background: #EBEBEB; +} +col:first-child { + width: 15%; + height: 100%; +} +col:nth-child(2) { + width: 45%; +} +col:last-child { + width: 40%; +} +*.header { + background: none!important; +} +*.header td { + text-decoration: underline; + color: #001155; + border: none!important; + background: none!important; +} +thead tr { + background: none!important; + text-decoration: underline; + color: black; +} +*.empty { + background: none!important; + border: none; + height: .2em; +} \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/files/style.css b/data/qjt/srcs/x-XX-jt/files/style.css new file mode 100644 index 0000000..7e9319b --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/files/style.css @@ -0,0 +1,251 @@ +/* +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 +*/ +/*Basic stuff:*/ + +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: normal; + src: url('/font/Junicode/Junicode.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: normal; + src: url('/font/Junicode/Junicode-Bold.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: normal; + font-style: italic; + src: url('/font/Junicode/Junicode-Italic.woff'); +} +@font-face { + font-family: 'JCode'; + font-weight: bold; + font-style: italic; + src: url('/font/Junicode/Junicode-BoldItalic.woff'); +} + +body { + background: #999ABC; + font-family: 'JCode', serif; + color: black; + -moz-font-feature-settings: "onum" 1; +} +h1 { + font-size: 3em; + text-align: center; + line-height: 1; +} +h2 { + font-size: 1em; + text-align: center; + line-height: 1; +} +h3 { + font-size: 1.5em; +} +*:lang(x-XX-jt) { + color: black!important; +} +dfn { + font-style: normal; +} +.def { + color: #227002!important; +} +a { + text-decoration: none; + color: #454545; +} +a:hover { + color: #747474; +} +*.mainbody p { + text-align: justify; + -moz-text-align-last: center; +} +*.mainbody dt { + color: black; + text-decoration: underline; +} +*.mainbody dd { + text-align: justify; + -moz-text-align-last: center; + color: #227002; +} +*.mpl { + color: #999BAD; + font-style: italic; +} + + +/*Top banner styling*/ +*.topcontainer { + position: absolute; + width: 100%; + left: 0%; + height: 200px; + background: #777899; + top: 0%; + border-bottom: thin solid #535555; + resize: vertical; +} +*.topbanner { + position: absolute; + height: 175px; + background: #EEE8DD; + top: 12.5px; + left: 12.5%; + right: 12.5%; +} +*.toptext { + position: absolute; + -moz-columns: 2; + -moz-column-fill: balance; + -moz-column-gap: 310px; + left: 0%; + top: 0%; + right: 0%; + bottom: 0%; + padding: .8em; + text-align: center; + line-height: 1.8; +} +*.topsvg { + width: 310px; + height: 175px; + margin: auto; +} +svg { + position: absolute; + stroke: black; +} +*.topsvg #textbox { + width: 220px; + position: absolute; + padding-left: 45px; + padding-right: 45px; +} +h2 { + -moz-animation-duration: 2s; + -moz-animation-name: pulse; + -moz-animation-iteration-count: infinite; +} +@-moz-keyframes pulse { + from { + font-size: 1em; + } + 50% { + font-size: 1.2em; + } + to { + font-size: 1em; + } +} + + +/*Sidebar styling*/ +*.sidecontainer{ + position: absolute; + top: 210px; + bottom: 10px; + width: 35%; + left: 0%; +} +*.sidebar{ + position: absolute; + height: 92.5%; + left: 5%; + right: 5%; + border: 5px solid #555666; + background: #EEE8DD; + padding: 5%; + overflow: auto; +} +*.pro { + font-size: 90%; +} + + +/*Main table styling*/ +*.mainbody { + margin-top: 210px; + margin-left: 37.5%; + margin-right: 2.5%; + margin-bottom: 10px; + color: #334566; + position: absolute; + top: 0px; + bottom: 0px; + overflow-y: auto; + border: 3px solid #545454; + background: #EEEEEE; + padding-left: .2em; + padding-right: .2em; +} +table { + background: #CCCCCC; + width: 100%; +} +.sel { + background: #CCCCCC; + height: 1.8em; + text-align: right; + -moz-columns: 2; +} +select { + width: 50%; + margin-left: 0%; + margin-right: 50%; +} +#cc { + background: #000000; + font-size: 85%; +} +td:hover { + background: #F6F6F6; +} +td { + border: thin solid #A0A0A0; + padding-right: .8em; + padding-left: .8em; +} +tr { + background: #DDDDDD; +} +tr:hover { + background: #EBEBEB; +} +col:first-child { + width: 15%; + height: 100%; +} +col:nth-child(2) { + width: 45%; +} +col:last-child { + width: 40%; +} +*.header { + background: none!important; +} +*.header td { + text-decoration: underline; + color: #001155; + border: none!important; + background: none!important; +} +thead tr { + background: none!important; + text-decoration: underline; + color: black; +} +*.empty { + background: none!important; + border: none; + height: .2em; +} \ No newline at end of file diff --git a/data/qjt/srcs/x-XX-jt/lessons/1.html b/data/qjt/srcs/x-XX-jt/lessons/1.html new file mode 100644 index 0000000..5675970 --- /dev/null +++ b/data/qjt/srcs/x-XX-jt/lessons/1.html @@ -0,0 +1,170 @@ + + + + + Jästugā - The Official Learning Page for The Language + + + + + + + + + + +
+
+ +
+ + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Jästugā

+

+
+
+
+
+ + +
+ +
+ + +
+

Lesson 1: The Basics

+
    +
  1. Chapter 1
  2. +
  3. Chapter 2
  4. +
  5. Chapter 3
  6. +
  7. Chapter 4
+

Chapter One - About the Language

+

So, what exactly is Jästugā? Well, aside from whatever other uses it may have, Jästugā is a language. By definition, then, it is a method of communication. You can use it to talk to people, tell stories, et cetera. However, since so few people know it, you can also use it to amaze and confuse your friends (unless, of course, your friends know it too).

+

Literally translated, Jästugā means one who speaks the Language. However, it can also be used to refer to the language itself (the English speak English; the French, French, and so on). In general, this is how to properly phrase the word so that it means what you want: If you are talking about the Language, say pə Jästugā (the Language), if you are talking about a person who speaks it, say pə tuād Jästugā (the Language person), and if you are talking about Language-speaking people in general, say pə Jästugāl.

+

As one of the Jästugāl, you will probably come across situations in which you want to say something, but the proper word does not yet exist. That's okay! Jästugā is a young language, and as one of its speakers, you have the right and responsibility to help it grow. However, there are some guidelines that you must follow when making new words...

+
  1. Do not "make up" words.
    + Let me say that again, because it's important. Don't just make stuff up. Jästugā is evolved, not created. Every word should be a derivative or a combination of other words. And keeping track of etymology is important, so write that stuff down.
  2. +
  3. Try to avoid large "compound" words.
    + Don't just stick two words together and call it a new word. If it is hard to say, then people won't say it. And that's bad. So try to simplify words. Having said that, there is such a thing as oversimplifying, so don't overdo it.
  4. +
  5. Use it!
    + There's no point in having a new word if it's not used. So start using it, and introduce it to the world!
  6. +
  7. Keep track of it!
    + Write down the word, its etymological origins, and its meaning, just like you see in this dictionary. Keep a database. When your database gets large (say, 25 words), send it to me! Some of those words might find their way into the Official Dictionary!
+

There are some situations in which it might be necessary to adapt words from other languages into Jästugā. Try to keep this to a minimum. However, should the occasion arise, be sure to keep in mind the limited number of syllables at your disposal. Most consonants can't be placed without a vowel afterward, and not all consonants and vowels exist. Æ and æn are exclusively feminine. Don't create it if one can't write it!

+

So, there you have it. Jästugā is a language, spoken by the Jästugāl, to be used for communication and other awesome things. It will evolve over time, and it is possible to convert words from other languages into Jästugā words (but please don't if you don't have to). Now, time to learn some Language!

+

Chapter 2 - Your first words

+

Probably the most important word you should know is dot (long "o"), meaning is defined as (or, if you prefer, "is described as"). It's the Jästugā equivilent of "is". It can be used to tell names ("She is defined as Tæn") or give descriptions ("Tæn is defined as intelligent"). Keep in mind, however, that when you use dot, you are helping to define someone or something, so don't use it for temporary conditions. For that, we use the word dohī, meaning "is had by". It is used to describe things in one's possession ("A book is had by her"), or temporary conditions ("Sleepiness was had by him"). Note that dot is followed by adjectives or adjective phrases while dohī is preceded by noun phrases.

+

Look at that! You've already learned two new words! Unfortunately, both of them are verbs, so you'll have a tough (impossible) time trying to form a sentence that way. So, without further delay, let's learn some pronouns! Pronouns are easy: they always represent nouns, and never need articles. There are three main pronouns in Jästugā: (first person), əwād (second person), and ʒod (third person). In English, their corresponding words are "I", "you", and "it". These can be pluralized to create equivilants of "we", "y'all", and "they". If you're talking about people, you'll probably want to use su (masculine 3rd person, "he") and æ (feminine 3rd person, "she") as well; these can also be pluralized. Pronouns are the same whether they're in the subject or the object, so "I" doesn't become "me", or anything like that. Not too difficult, huh?

+

So, now that you know some words, let's learn some grammar. Verbs are, by default, conjugated in the present passive tense. That means that the object recieving the action comes first and that the person performing the action comes last. You always have to have either a subject or an object, but you don't need both. Having said that, some sentences won't make a lot of sense if you don't have both the subject and the object (example: "æ dot"), so it's always better to be specific.

+

It's hard to be specific without knowing any words, however, so here are some N/A's. Nouns and adjectives are the same in Jästugā, except for one tiny difference: Nouns are preceded by articles (think: "the", "a"). Adjectives usually come after nouns, or are put all on their lonesome

+

So, your first new N/A: tuād. You might recognize it from the first chapter. Tuād has two meanings — it can refer to a person ("æ dot pā tuād", she is a person), or to one's body. You can use tuād to describe people (think: "she is defined as a happy person"), although this is optional ("she is defined as happy" works just as well).

+

Review so far: With pronouns and dot, you can introduce people, and with dohī you can describe temporary conditions (although you haven't learned any of those, yet). Sentence structure goes in the order of object, verb, subject; and adjectives come after nouns. None too shabby!

+

Chapter 3 - Describing oneself

+

You've already learned how to introduce yourself, but what if you want to give more information than that? By using only dot and dohī, one can provide a large amount of information about themselves. Let's start with one of the most basic questions one can ask: "How are you?" This leads us to our first dilemma: How do you ask questions in Jästugā? The key component of questions is the interrogative pronoun, fot. By default, fot means what, but it can be combined with prepositions to change its meaning. "At what" becomes "where", "for what" becomes "why", "at what time" becomes "when", and "by what" becomes how. While fot is a pronoun, "fot+preposition" is an adverb, and thus must be placed at the beginning of a sentence, or at the end and seperated by a comma.

+

So, to return to the original question, how does one say "How are you?"? When we ask this question, we are asking about a temporary condition ("How are you today?" or "How are you right now?" Because of this, we know that we will be using dohī, not dot. Now, when we ask a question with dohī, what we are actually asking is What is had by you? Since this could be interpreted as either "How are you?" or "What do you have?", more clarification is necessary. We do this by inserting one of two words: hofäsē if one is asking about physical feeling, or ʒāo if one is talking about emotional state. So, how do we combine this all into one sentece? Well, let's start with the subject. Since ʒāo is being used as a noun in this case, we will need an article. But which one? Since we don't know what one's emotional state is, we have to use the indefinite article, . We are using fot as an adjective in this case (it describes ʒāo), and whenever we use a pronoun as an adjective, it comes before the noun, separated by a preposition (in this case: āʒo). Then, to close off the noun phrase, we add ʒāo. So, the completed object for this sentence is "pā fot āʒo ʒāo". Add the verb, dohī, and the subject əwād, and the sentence is complete: "pā fot āʒo ʒāo dohī əwād?" (Literally: An emotion of what is had by you?).

+

Now, when it comes to answering that question, things get much easier. The object is "I", or ; and the verb, again, is dohī. When it comes to the subject, you can pick any noun that describes your current state. (Remember: Since we are using dohī, you need an article, which in this case will almost always be .)

+

Some common nouns to use:

+
    +
  • dāzēt - Hunger
  • +
  • odāso - Thirst
  • +
  • dotäsvā - Exhaustion
  • +
  • ʒud - Acceptibility (Used to say that something is "fine" or "OK")
  • +
+

Feel free to use any other N/A's that you find in the Official Dictionary, as well. Also, by attaching fil' to the beginning of the verb (fil'dohī), you can reverse its meaning (e.g., to say "Hunger is not had by me").

+

Chapter 4 - Sentences, In Depth

+

As I'm sure the last chapter showed you, there's a lot that goes into making a sentence in Jästugā. This chapter should break things down for you so that things are easier to understand. Let's go over the basic parts of speech, first:

+

THE VERB:
+ The verb defined an action. Verbs are, by default in the passive voice; that is, they show to what an action happens before they show what performed the action.

+

THE OBJECT AND SUBJECT:
+ The object tells what received an action, while the subject tells what performed the action. Every sentence must have either a subject or an object.

+

NOUN PHRASES:
+ The noun phrase defined a noun. There are two basic elements of a noun phrase: the article, and the noun. Adjective phrases can also be used to further describe a noun.
+ The article both defines the noun and describes it, as definite, indefinite, or proper. Articles are required for noun phrases.
+ The noun is the "subject" of a noun phrase; it states that which is being defined. Nouns can be any noun/adjective or any name. Nouns are required for noun phrases.
+ The adjective phrase helps to describe the noun. It is an alternative to using an adjective after the noun, and is the only way to show possession. For more information, see the section on adjective phrases.
+ The proper structure of the noun phrase is as follows:
+ Article, adjective phrase, noun
+ The noun phrase can be followed by a verb, some form of punctuation, or a solitary adjective. It can also be replaced with a pronoun.

+

ADJECTIVES:
+ The adjective is used to further describe a noun. The adjective is any noun/adjective without an article. Names and pronouns cannot be solitary adjectives. The adjective must be preceded by a noun phrase or another adjective (outside of an adjective phrase).

+

ADJECTIVE PHRASES:
+ The adjective phrase can be used inside of the noun phrase to describe a noun. It is preceded by an article, and followed by a noun. The adjective phrase has two parts: the adjective and the preposition.
+ The adjective describes the noun and can be any noun/adjective. The adjective can also be replaced with a name or a pronound in an adjective phrase, and thus is the only way to show possession by a proper noun.
+ The preposition is used to define the relationship between the adjective and the noun.
+ The proper structure of the adjective phrase is as follows:
+ Adjective, preposition

+

ADVERB PHRASES:
+ An adverb phrase describes an action. It is comprised of a noun phrase and a preposition.
+ The noun phrase is used to describe the manner in which the action takes place, by drawing a correlation to a trait that is characteristic of the action.
+ The preposition defined the correlation between the verb and the noun phrase.
+ The proper structure of the adverb phrase is as follows:
+ Noun phrase, preposition
+ Adverb phrases describing an action can be placed either at the beginning of a sentence, or at the end. If the phrase is placed at the end, it must be separated by a comma.
+ Adverb phrases may also be used to describe adjectives, in which case they are placed before the adjectives.

+

Hopefully that cleared some things up. Right now, just focus on noun and adjective phrases; we'll deal more with adverbs later. There are also variations on this sentence structure, such as active voice, but, again, that's more advanced than we need at the moment.

+ + + + + + + +
+ CC0 + To the extent possible under law, has waived all copyright and related or neighboring rights to this work. This work is published from: United States .
+
+ + \ No newline at end of file diff --git a/data/qjt/txts/puh_dahtzee_ayzho_dayzho/gloss b/data/qjt/txts/puh_dahtzee_ayzho_dayzho/gloss new file mode 100644 index 0000000..ee2a13f --- /dev/null +++ b/data/qjt/txts/puh_dahtzee_ayzho_dayzho/gloss @@ -0,0 +1,18 @@ +Once upon a time [lit. “in a moment”], there was a fox. +The fox lived[?][^1] in the water. +A sadness was had by him. +He wanted somebody to speak to. +Because of this, the fox departed the water, and he came to the land. + +“The fox and the crabs” + +The fox arriving onto The Land, he saw some crabs. +Said he, “Hello!”, but the crabs did not speak to him. +Said he, “Do you speak?” +They did not speak to him. +The fox saw that he wasn’t making progress; because of this, he departed. + +--- + +[^1]: The meaning of this verb (‘hämāt’) is unclear. +The current best guess is that it meant “to live” (compare Jastulae ⅤⅠⅠⅠ ‘hämē’ “life”), predating the later ‘todäħ’. diff --git a/data/qjt/txts/puh_dahtzee_ayzho_dayzho/gloss.license b/data/qjt/txts/puh_dahtzee_ayzho_dayzho/gloss.license new file mode 100644 index 0000000..bd96d84 --- /dev/null +++ b/data/qjt/txts/puh_dahtzee_ayzho_dayzho/gloss.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Lady +SPDX-License-Identifier: CC0-1.0 diff --git a/data/qjt/txts/puh_dahtzee_ayzho_dayzho/text b/data/qjt/txts/puh_dahtzee_ayzho_dayzho/text new file mode 100644 index 0000000..0d4eebb --- /dev/null +++ b/data/qjt/txts/puh_dahtzee_ayzho_dayzho/text @@ -0,0 +1,21 @@ + + + + + + + +

pə dätzē āʒo dāʒo

+

ʒā pœt zafo ʒā dätzē dotl’go.  pǝ dāso zafo hämātl’go pǝ dätzē.  ʒā Hœfo dohil'go su.  ʒā tuād ʒoH jäsātol’gi tusol’go su.  sat äHɑɔ pǝ dāso tutā pǝ dätzē, mœ pǝ hoʒā ʒoH dosil’go su.

+

"pə dätzē mœ pə fäʒēl"

+

pə dätzē āʒo hoʒā ʒoH ʒoHʒəl'Hə iə ʒā fäʒēl vodə howosēl'go su.  jäsātol'go su, "odo!", o su ʒoH fil'jäsātol'go pə fäʒēl.  jäsātol'go su, "jäsātol'gi howāl əwādl?".  su ʒoH fil'jäsātol'go sul.  zo ʒā so fil'dotl'go howāl'Hə howosēl'go pə dätzē; sat äHɑ totāl'go su.

+ + diff --git a/data/qlr/docs/dict b/data/qlr/docs/dict new file mode 100644 index 0000000..784de18 --- /dev/null +++ b/data/qlr/docs/dict @@ -0,0 +1,2228 @@ + + + +]> + + + + + + + + + + <seg xml:id="title-main">Elrex</seg>: <seg xml:id="title-sub">Documentation and Dictionary</seg> + Project Langdev + Lady + + + Version 2, Draft 08 + + + + 2024-08-20 + urn:fdc:langdev.ladys.computer:2024:qlr:docs:dict + + Marked with CC0 1.0 Universal. + + + + The Langdev Project Dictionaries + + +

+ Born digital. + Words and definitions taken from the revised digital lexis at . + Pronunciation information taken from the Hope Pronunciation Guide. + Commentary added. +

+
+
+ + + + + +

Comprehensive linguistic reference for the various LANGDEV languages.

+
+ + + Used to separate the different versions of the Elrex language, and also to contain preface material. + Used to mark dictionary entries. + The class type marks a Elrex version 6 word class. + The BCP47 type marks an IETFInternet Engineering Task Force language tag, as defined by <choice><abbr>BCP</abbr><expan>Best Current Practices</expan></choice> 47. + The version type is used to denote versions in the list of changes. + The unicode type is used to reference a Unicode character. + + The splash type refers to an optional splash quote. + A splash with subtype default identifies the default splash; all others are alternates. + + + +
+ + + + + + English + Elrex + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Language tag for Elrex changed from art-Latn-x-qlr to simply qlr-Latn. + A new URIUniform Resource Identifier for the document was provided which uses the urn:fdc:langdev.ladys.computer:2024: prefix. + Some link targets have changed to reflect the new structure of the Langdev site. + 2.08 + + + Minor documentation updates; improvements to the XSLTXSL Transformations stylesheet. + 2.07 + + + Language tag for Elrex changed from art-x-lrx to art-x-qlr to enable use in environments where the art-x- prefix is not usable. + 2.06 + + + Minor adjustments to formatting. + 2.05 + + + Minor updates to document metadata. + A new URIUniform Resource Identifier was provided; the old value was version‐specific, which is not actually useful (old versions of this dictionary are not being preserved). + 2.04 + + + Minor revisions to make metadata current. + The name of the language was revised from Lrex to Elrex to aid in pronunciation. + 2.03 + + + Minor markup improvements. + 2.02 + + + Rewrote LRECLexisMLLexis Markup Language index RECord+HTMLHyperText Markup Language dictionary files into a single TEIText Encoding Initiative document. + Corrections were made where errors were found and documentation was improved. + 2.01 + + + Created LRECLexisMLLexis Markup Language index RECord+HTMLHyperText Markup Language dictionary files, including frontmatter, from the original source documents. + 1.01 + + + + + +
+ + + + + + + + + + + + + + + + + + + + + 20 August 2024 + +

+ Kingly! + Emotional! + Great! + Small! + Woah! + Good! + Bad! + Scary! + Shoo! + Fixed! + Out loud! + Edited! + .app! + Land ho! +

+
+
+ + + +
+

+ Elrex is an early culture and language in the Jastu‐Fizonal sprachbund. + Most of the words in the known Elrex lexicon pertained to feelings or emotions, as these are the words which went on to influence later languages. + Elrex is highly onomatopœic and features a large number of vowels. + The spelling Lrex has traditionally been used as a shorthand for Elrex. +

+

+ The words below are grouped into six generations based on their approximate times of origin. + The earliest of these are categorized as Elrex version 1 and the latest as Elrex version 6. + As most of the influence on later Jastu‐Fizonal languages occured around the time of Elrex version 5, our knowledge of Elrex version 6 is incomplete. +

+

+ Definitive etymological classifications for Elrex words have not been made. + However, in the later Elrex versions, broad associations have been noted. + These are marked via a U+223B ∻ HOMOTHETIC Unicode character below. +

+

+ As Elrex is in essence a speculative proto‐language, the pronunciation data should not be taken as anything more than a broad guideline. + However, given an American English dialect, the following pronunciation key may be helpful: +

+ + + Like the a in at + + Like the ay in play + + Like the a in lawn + + Like the u in fun + + Like the first e in enter + + Like the e in be + + Like the i in it + + Like the i in white + + Like the o in grow + + Like the u in june + + Like the oy in joy + + Similar to œ, above, except with the ē sound replaced with ī + + Pronounced ay‐eh + +

+ Elrex has been given the language code qlr; the script subtag Latn should also be supplied. + Elrex has no known native script. +

+
+ + + +
+ + + + + + + +
+ Lrex version 1 + +
+ oi +
+ + excl + + woah +
+ +
+ ra +
+ + excl + + shoo +
+ +
+ ee +
+ + adj + + good +
+ +
+ tah +
+ + pron + + that +
+ +
+ aah +
+ + adj + + bad +
+ +
+ aei +
+ + adj + + scary +
+
+ + + +
+ Lrex version 2 + +
+ ohwei +
+ + adj + + surprising +
+ +
+ raoi +
+ + v + + leave +
+ +
+ sa +
+ + excl + v + + stop/shoo +
+ +
+ ae +
+ + adj + + good/pleasant +
+ +
+ ee +
+ + adj + + great +
+ +
+ uh +
+ + adj + + relaxing +
+ +
+ tuh +
+ + pron + + this/that/you/me/etc. +
+ +
+ aah +
+ + adj + + bad +
+ +
+ iy +
+ + adj + + scary +
+ +
+ ta +
+ + adj + + do +
+
+ + + +
+ Lrex version 3 + +
+ koi +
+ + v + + stop +
+ +
+ ka +
+ + v + + go +
+ +
+ ohwi +
+ + excl + + a surprised exclamation +
+ +
+ rie +
+ + v + + leave +
+ +
+ soi +
+ + v + + quit +
+ +
+ sie +
+ + excl + v + + shoo +
+ +
+ hae +
+ + adj + + good +
+ +
+ aahe +
+ + adj + + pleasant +
+ +
+ eehai +
+ + adj + + calm +
+ +
+ uhai +
+ + adj + + relaxing +
+ +
+ tuwei +
+ + pron + + this/that +
+ +
+ uhwei +
+ + pron + + he/she/they +
+ +
+ ahnwei +
+ + adj + + bad +
+ +
+ iywei +
+ + adj + + scary +
+ +
+ tai +
+ + adj + + do +
+ +
+ ‐wei + +
+ + affix + + of or pertaining to a thing +
+ +
+ ‐hai + +
+ + affix + + calm +
+ +
+ ‐he + he +
+
+ ‐hǽ + +
+ + affix + + good +
+ +
+ aa‐ + ä +
+ + affix + + somewhat +
+ +
+ ahn‐ + än +
+ + affix + + bad +
+ +
+ iy‐ + ī +
+ + affix + + scary +
+
+ + + +
+ Lrex version 4 + +
+ kohwhǽ + kō+​whǽ +
+ + v + + stop/wait +
+ +
+ tawhǽ + tä+​whǽ +
+ + v + + go +
+ +
+ ohwy + ōh+​wī +
+ + excl + + a surprised exclamation +
+ +
+ wahwei + wä+​wā +
+ + adj + + surprising +
+ +
+ rie + +
+ + v + + leave +
+ +
+ kotai + kō+​tī +
+ + v + + quit +
+ +
+ rawhǽ + rä+​whǽ +
+ + excl + v + + shoo +
+ +
+ hae + +
+ + adj + + good +
+ +
+ ahǽ + ah+​ǽ +
+ + adj + + pleasant +
+ +
+ eehae + ē+​hā +
+ + adj + + great +
+ +
+ eehoi + ē+​hớ +
+ + adj + + peaceful +
+ +
+ hohwǽ’ihy + hō+​wǽ·​ī +
+ + adj + + calm +
+ +
+ hoita + hōē+​tə +
+ + adj + + relaxing +
+ +
+ awei + ä+​wā +
+ + pron + + something (this/that) +
+ +
+ uhwei + ə+​wā +
+ + pron + + he/she/they +
+ +
+ ahn + än +
+ + adj + + bad +
+ +
+ koe + +
+ + excl + + no +
+ +
+ taw + täw +
+ + excl + + yes +
+ +
+ iy + ī +
+ + adj + + scary +
+ +
+ ee + ē +
+ + adv + + very +
+ +
+ een + ēn +
+ + adj + + very bad / horrible +
+ +
+ eeyih + ē+​yīh +
+ + adj + + very frightening +
+ +
+ a‐ + ä +
+ + affix + + somewhat/one +
+ +
+ aht + ät +
+ + adv + + moderately +
+ +
+ wah + +
+ + adj + + different/strange +
+ +
+ whǽ + whǽ +
+ + v + + go +
+
+ + + +
+ Lrex version 5 + +
+ aln + äln +
+ + pron + + some +
+ +
+ alhǽ + äl+​hǽ +
+ + adj + + + pleasant +
+ +
+ alwei + äl+​wā +
+ + pron + + + something +
+ +
+ alht + älht +
+ + adv + + + moderately +
+ +
+ hǽn + hǽn +
+ + adj + + good +
+ +
+ hoin + hœn +
+ + adv + + still +
+ +
+ hohwǽ’uh + hō+​wǽ·​ə +
+ + adj + + + calm +
+ +
+ hoiten + hœ+​ten +
+ + adj + + + relaxing +
+ +
+ ee + ē +
+ + adv + + very +
+ +
+ elnhǽ + eln+​hǽ +
+ + adj + + + great +
+ +
+ elnhoi + eln+​hœ +
+ + adj + + + peaceful +
+ +
+ elnhun + eln+​hən +
+ + adj + + + horrible +
+ +
+ elnyih + eln+​yīh +
+ + adj + + + very frightening +
+ +
+ un + ən +
+ + adj + + bad +
+ +
+ koen + kō+​en +
+ + adv + excl + + no/not +
+ +
+ koewhǽ + kœ+​whǽ +
+ + v + + + stop/wait +
+ +
+ koeta + kœ+​tə +
+ + v + + + quit +
+ +
+ tawen + täw+​en +
+ + adj + exclamation + + yes/right +
+ +
+ tehǽ + täh+​ǽ +
+ + v + + + go +
+ +
+ wah + wäh +
+ + adj + + strange +
+ +
+ wahnei + wäh+​nā +
+ + adj + + + surprising +
+ +
+ rie + +
+ + v + + leave +
+ +
+ raewhǽ + rā+​whǽ +
+ + v + + + shoo +
+ +
+ whǽn + whǽn +
+ + v + + move +
+ +
+ ohn + ōhn +
+ + pron + + us +
+ +
+ ono + ō+​nō +
+ + pron + + + you +
+ +
+ jo + ʒō +
+ + pron + + + me/i +
+ +
+ ohnwei + ōhn+​wā +
+ + pron + + + they/he/she +
+ +
+ wiev + wēv +
+ + n + + thing +
+ +
+ sǽna + sǽ+​nə +
+ + v + + are/is +
+ +
+ sǽkon + sǽ+​kōn +
+ + v + + + are/is not +
+ +
+ teen + tēn +
+ + v + + do +
+ +
+ teewǽn + tē+​wǽn +
+ + v + adj + + + live/alive +
+ +
+ tekowǽn + tā+​kō+​​wǽn +
+ + v + adj + + + die/dead +
+
+ + + +
+ Lrex version 6 + +
+ tewǽ +
+ life +
+ +
+ tewǽn + tā+​wǽn +
+ + adj + + life + alive +
+ +
+ tewhǽ + tā+​whǽ +
+ + adj + + life + living +
+ +
+ witawǽ + wi+​tä+​wǽ +
+ + n + + life + water +
+ +
+ wiku + wi+​ku +
+ + n + + life + food +
+ +
+ tekǽ +
+ death +
+ +
+ tekǽn + tā+​kǽn +
+ + adj + + death + dead +
+ +
+ teko + tā+​kō +
+ + adj + + death + dying +
+ +
+ waev +
+ thing +
+ +
+ alwee + äl+​wā +
+ + pron + + thing + something +
+ +
+ ohnwev + ōhn+​wev +
+ + pron + + thing + they/he/she +
+
+ + + + + + + +
+ +
diff --git a/data/qlr/srcs/15.Lang.Ev.Lrex b/data/qlr/srcs/15.Lang.Ev.Lrex new file mode 100644 index 0000000..f5386cf --- /dev/null +++ b/data/qlr/srcs/15.Lang.Ev.Lrex @@ -0,0 +1,136 @@ + + + + + + + +

Oi-Whoa

+

Ra-Shoo

+

Ee-Good

+

Tah-That

+

Aah-Bad

+

Aei-Scary

+


+


+

Ohwei-Surprising

+

Raoi-Leave

+

Sa-Stop/Shoo

+

Ae-Good/Pleasant

+

Ee-Great

+

Uh-Relaxing

+

Tuh-This/that/you/me/etc.

+

Aah-Bad

+

Iy-Scary

+

Ta-Do

+


+


+

Koi-Stop

+

Ka-Go

+

Ohwi-Exclamation (Surprized)

+

Aawhei-Surprizing

+

Rie-Leave

+

Soi-Quit

+

Sie-Shoo

+

Hae-Good

+

Aahe-Pleasant

+

Eehae-Great

+

Eehai-Calm

+

Uhai-Relaxing

+

Tuwei-This/that

+

Uhwei-He/she/they

+

Ahnwei-Bad

+

Iywei-Scary

+

Tai-Do

+

–Wei-Of or pertaining to a thing We

+

–Hai-Calm Hi

+

–He/–Hae-Good He/Hey

+

Aa–-Somewhat Ah

+

Ahn–-Bad On

+

Iy–-Scary Eye

+


+


+

Kohwhæ-Stop/Wait Ko+whey mixed with Ko+we

+

Tawhæ-Go Ta+whæ

+

Ohwy-Surprised Exclamation Oh+why

+

Wahwei-Surprising Wa+we

+

Rie-Leave Re

+

Kotai-Quit Ko+tie

+

Rawhæ-Shoo Ra+whæ

+

Hae-Good Hey

+

Ahæ-Pleasant Ah+æ

+

Eehae-Great Ee+hey

+

Eehoi-Peaceful Ee+hoi

+

Hohwæ'ihy-Calm Ho+wæ•eye

+

Hoita-Relaxing Hoy+ta

+

Awei-Something (this/that) Ah+we

+

Uhwei-He/she/they Uh+we

+

Ahn-Bad On

+

Koe-No Ko

+

Taw-Yes Taw

+

Iy-Scary Eye

+

Ee-Very Ee

+

Een-Very bad/horrible Een

+

Eeyih-Very frightening Ee+yieh

+

A–-Somewhat/One Ah

+

Aht-Moderately Aht

+

Wah-Different/Strange Wa

+

Whæ-Go Whæ

+


+


+

Aln-Some Alln

+

Alhæ-Pleasant All+hæ

+

Alwei-Something All+we

+

Alht-Moderately Allht

+

Hæn-Good Hæyn

+

Hoin-Still Hoyn

+

Hohwæ'uh-Calm Ho+wæ•uh

+

Hoiten-Relaxing Hoy+ten

+

Ee-Very Ee

+

Elnhæ-Great Eln+hæ

+

Elnhoi-Peaceful Eln+hoi

+

Elnhun-Horrible Eln+hun

+

Elnyih-Very frightening Eln+yieh

+

Un-Bad Un

+

Koen-No/not Ko+en

+

Koewhæ-Stop/Wait Koe+whæ

+

Koeta-Quit Koe+ta

+

Tawen-Yes/right Taw+en

+

Tahæ-Go Tah+æ

+

Wah-Strange Wah

+

Wahnei-Surprising Wah+nay

+

Rie-Leave Re

+

Raewhæ-Shoo Ray+whæ

+

Whæn-Move Whæn

+

Ohn-Us Ohn

+

Ono-You Oh-no

+

Jo-Me/I Zho

+

Ohnwei-They/He/She Ohn+we

+

Weiv-Thing Weave

+

Sæna-Are/is Sæ+Nuh

+

Sækon-Are/is not Sæ+kohn

+

Teen-Do Teen

+

Teewæn-Live/Alive Tee+wæn

+

Tekowæn-Die/Dead Tay+ko+wæn

+

Tewæ– Life

+

Tewæn-Alive Tay+wæn

+

Tewhæ-Living Tay+whæ

+

Witawæ-Water Wi+ta+wæ

+

Wiku-Food Wih+ku

+

Tekæ– Death

+

Tekæn-Dead Tay+kæn

+

Teko-Dying Tay+ko

+

Waev- Thing

+

Alwee-Something All+we

+

Ohnwev-They/He/She Ohn+wev

+ + diff --git a/data/qlr/srcs/15.Lang.Ev.Lrex.Revised b/data/qlr/srcs/15.Lang.Ev.Lrex.Revised new file mode 100644 index 0000000..a73321f --- /dev/null +++ b/data/qlr/srcs/15.Lang.Ev.Lrex.Revised @@ -0,0 +1,136 @@ + + + + + + + +

Oi-Whoa

+

Ra-Shoo

+

Ee-Good

+

Tah-That

+

Aah-Bad

+

Aei-Scary

+


+


+

Ohwei-Surprising

+

Raoi-Leave

+

Sa-Stop/Shoo

+

Ae-Good/Pleasant

+

Ee-Great

+

Uh-Relaxing

+

Tuh-This/that/you/me/etc.

+

Aah-Bad

+

Iy-Scary

+

Ta-Do

+


+


+

Koi-Stop

+

Ka-Go

+

Ohwi-Exclamation (Surprized)

+

Aawhei-Surprizing

+

Rie-Leave

+

Soi-Quit

+

Sie-Shoo

+

Hae-Good

+

Aahe-Pleasant

+

Eehae-Great

+

Eehai-Calm

+

Uhai-Relaxing

+

Tuwei-This/that

+

Uhwei-He/she/they

+

Ahnwei-Bad

+

Iywei-Scary

+

Tai-Do

+

–Wei-Of or pertaining to a thing

+

–Hai-Calm

+

–He/–Hǽ-Good He/Hǽ

+

Aa–-Somewhat Ä

+

Ahn–-Bad Än

+

Iy–-Scary Ī

+


+


+

Kohwhǽ-Stop/Wait Kō+whǽ

+

Tawhǽ-Go Tä+whǽ

+

Ohwy-Surprised Exclamation Ōh+wī

+

Wahwei-Surprising Wä+wā

+

Rie-Leave

+

Kotai-Quit Kō+tī

+

Rawhǽ-Shoo Rä+whǽ

+

Hae-Good

+

Ahǽ-Pleasant Ah+ǽ

+

Eehae-Great Ē+hā

+

Eehoi-Peaceful Ē+hớ

+

Hohwǽ'ihy-Calm Hō+wǽ•ī

+

Hoita-Relaxing Hōē+tə

+

Awei-Something (this/that) Ä+wā

+

Uhwei-He/she/they Ə+wā

+

Ahn-Bad Än

+

Koe-No

+

Taw-Yes Täw

+

Iy-Scary Ī

+

Ee-Very Ē

+

Een-Very bad/horrible Ēn

+

Eeyih-Very frightening Ē+yīh

+

A–-Somewhat/One Ä

+

Aht-Moderately Ät

+

Wah-Different/Strange

+

Whǽ-Go Whǽ

+


+


+

Aln-Some Äln

+

Alhǽ-Pleasant Äl+hǽ

+

Alwei-Something Äl+wā

+

Alht-Moderately Älht

+

Hǽn-Good Hǽn

+

Hoin-Still Hœn

+

Hohwǽ'uh-Calm Hō+wǽ•ə

+

Hoiten-Relaxing Hœ+ten

+

Ee-Very Ē

+

Elnhǽ-Great Eln+hǽ

+

Elnhoi-Peaceful Eln+hœ

+

Elnhun-Horrible Eln+hən

+

Elnyih-Very frightening Eln+yīh

+

Un-Bad Ən

+

Koen-No/not Kō+en

+

Koewhǽ-Stop/Wait Kœ+whǽ

+

Koeta-Quit Kœ+tə

+

Tawen-Yes/right Täw+en

+

Tahǽ-Go Täh+ǽ

+

Wah-Strange Wäh

+

Wahnei-Surprising Wäh+nā

+

Rie-Leave

+

Raewhǽ-Shoo Rā+whǽ

+

Whǽn-Move Whǽn

+

Ohn-Us Ōhn

+

Ono-You Ō-nō

+

Jo-Me/I Ʒō

+

Ohnwei-They/He/She Ōhn+wā

+

Weiv-Thing Wēv

+

Sǽna-Are/is Sǽ+Nə

+

Sǽkon-Are/is not Sǽ+kōn

+

Teen-Do Tēn

+

Teewǽn-Live/Alive Tē+wǽn

+

Tekowǽn-Die/Dead Tā+kō+wǽn

+

Tewǽ– Life

+

Tewǽn-Alive Tā+wǽn

+

Tewhǽ-Living Tā+whǽ

+

Witawǽ-Water Wi+tä+wǽ

+

Wiku-Food Wi+ku

+

Tekǽ– Death

+

Tekǽn-Dead Tā+kǽn

+

Teko-Dying Tā+kō

+

Waev- Thing

+

Alwee-Something Äl+wā

+

Ohnwev-They/He/She Ōhn+wev

+ + diff --git a/data/qlr/srcs/HopePronunciationGuide b/data/qlr/srcs/HopePronunciationGuide new file mode 100644 index 0000000..d1ffea3 --- /dev/null +++ b/data/qlr/srcs/HopePronunciationGuide @@ -0,0 +1,38 @@ + + + + + + + +

Hope Pronunciation Guide

+


+

at

+

plāy

+

läwn

+

fən

+

enter

+

bē

+

it

+

whīte

+

grōw

+

june

+

jœ

+


+

Others:

+

Ớ- like œ with the ē sound replaced with ī

+

Ǽ- pronounced ay-eh

+ + diff --git a/magic/assetxml b/magic/assetxml new file mode 100644 index 0000000..7cbf6f4 --- /dev/null +++ b/magic/assetxml @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2024 Lady +# SPDX-License-Identifier: CC0-1.0 + +0 string \ +SPDX-License-Identifier: OFL-1.1-RFN diff --git a/site/font/AlegreyaSans/AlegreyaSans-ExtraBold.woff2 b/site/font/AlegreyaSans/AlegreyaSans-ExtraBold.woff2 new file mode 100644 index 0000000..bce5516 Binary files /dev/null and b/site/font/AlegreyaSans/AlegreyaSans-ExtraBold.woff2 differ diff --git a/site/font/AlegreyaSans/AlegreyaSans-ExtraBold.woff2.license b/site/font/AlegreyaSans/AlegreyaSans-ExtraBold.woff2.license new file mode 100644 index 0000000..ccff1ee --- /dev/null +++ b/site/font/AlegreyaSans/AlegreyaSans-ExtraBold.woff2.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2013 Juan Pablo del Peral +SPDX-License-Identifier: OFL-1.1-RFN diff --git a/site/font/AlegreyaSans/AlegreyaSans-Italic.woff2 b/site/font/AlegreyaSans/AlegreyaSans-Italic.woff2 new file mode 100644 index 0000000..fff1104 Binary files /dev/null and b/site/font/AlegreyaSans/AlegreyaSans-Italic.woff2 differ diff --git a/site/font/AlegreyaSans/AlegreyaSans-Italic.woff2.license b/site/font/AlegreyaSans/AlegreyaSans-Italic.woff2.license new file mode 100644 index 0000000..ccff1ee --- /dev/null +++ b/site/font/AlegreyaSans/AlegreyaSans-Italic.woff2.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2013 Juan Pablo del Peral +SPDX-License-Identifier: OFL-1.1-RFN diff --git a/site/font/AlegreyaSans/AlegreyaSans-Light.woff2 b/site/font/AlegreyaSans/AlegreyaSans-Light.woff2 new file mode 100644 index 0000000..7e72522 Binary files /dev/null and b/site/font/AlegreyaSans/AlegreyaSans-Light.woff2 differ diff --git a/site/font/AlegreyaSans/AlegreyaSans-Light.woff2.license b/site/font/AlegreyaSans/AlegreyaSans-Light.woff2.license new file mode 100644 index 0000000..ccff1ee --- /dev/null +++ b/site/font/AlegreyaSans/AlegreyaSans-Light.woff2.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2013 Juan Pablo del Peral +SPDX-License-Identifier: OFL-1.1-RFN diff --git a/site/font/AlegreyaSans/AlegreyaSans-LightItalic.woff2 b/site/font/AlegreyaSans/AlegreyaSans-LightItalic.woff2 new file mode 100644 index 0000000..b845bd9 Binary files /dev/null and b/site/font/AlegreyaSans/AlegreyaSans-LightItalic.woff2 differ diff --git a/site/font/AlegreyaSans/AlegreyaSans-LightItalic.woff2.license b/site/font/AlegreyaSans/AlegreyaSans-LightItalic.woff2.license new file mode 100644 index 0000000..ccff1ee --- /dev/null +++ b/site/font/AlegreyaSans/AlegreyaSans-LightItalic.woff2.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2013 Juan Pablo del Peral +SPDX-License-Identifier: OFL-1.1-RFN diff --git a/site/font/AlegreyaSans/AlegreyaSans-Regular.woff2 b/site/font/AlegreyaSans/AlegreyaSans-Regular.woff2 new file mode 100644 index 0000000..51a523e Binary files /dev/null and b/site/font/AlegreyaSans/AlegreyaSans-Regular.woff2 differ diff --git a/site/font/AlegreyaSans/AlegreyaSans-Regular.woff2.license b/site/font/AlegreyaSans/AlegreyaSans-Regular.woff2.license new file mode 100644 index 0000000..ccff1ee --- /dev/null +++ b/site/font/AlegreyaSans/AlegreyaSans-Regular.woff2.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2013 Juan Pablo del Peral +SPDX-License-Identifier: OFL-1.1-RFN diff --git a/site/font/AlegreyaSans/AlegreyaSans-Thin.woff2 b/site/font/AlegreyaSans/AlegreyaSans-Thin.woff2 new file mode 100644 index 0000000..16de433 Binary files /dev/null and b/site/font/AlegreyaSans/AlegreyaSans-Thin.woff2 differ diff --git a/site/font/AlegreyaSans/AlegreyaSans-Thin.woff2.license b/site/font/AlegreyaSans/AlegreyaSans-Thin.woff2.license new file mode 100644 index 0000000..ccff1ee --- /dev/null +++ b/site/font/AlegreyaSans/AlegreyaSans-Thin.woff2.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2013 Juan Pablo del Peral +SPDX-License-Identifier: OFL-1.1-RFN diff --git a/site/font/Junicode/Junicode-Bold.woff b/site/font/Junicode/Junicode-Bold.woff new file mode 100644 index 0000000..f737725 Binary files /dev/null and b/site/font/Junicode/Junicode-Bold.woff differ diff --git a/site/font/Junicode/Junicode-Bold.woff.license b/site/font/Junicode/Junicode-Bold.woff.license new file mode 100644 index 0000000..7a17c53 --- /dev/null +++ b/site/font/Junicode/Junicode-Bold.woff.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Peter Baker +SPDX-License-Identifier: OFL-1.1-no-RFN diff --git a/site/font/Junicode/Junicode-BoldItalic.woff b/site/font/Junicode/Junicode-BoldItalic.woff new file mode 100644 index 0000000..b08dc56 Binary files /dev/null and b/site/font/Junicode/Junicode-BoldItalic.woff differ diff --git a/site/font/Junicode/Junicode-BoldItalic.woff.license b/site/font/Junicode/Junicode-BoldItalic.woff.license new file mode 100644 index 0000000..7a17c53 --- /dev/null +++ b/site/font/Junicode/Junicode-BoldItalic.woff.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Peter Baker +SPDX-License-Identifier: OFL-1.1-no-RFN diff --git a/site/font/Junicode/Junicode-Italic.woff b/site/font/Junicode/Junicode-Italic.woff new file mode 100644 index 0000000..15f415e Binary files /dev/null and b/site/font/Junicode/Junicode-Italic.woff differ diff --git a/site/font/Junicode/Junicode-Italic.woff.license b/site/font/Junicode/Junicode-Italic.woff.license new file mode 100644 index 0000000..7a17c53 --- /dev/null +++ b/site/font/Junicode/Junicode-Italic.woff.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Peter Baker +SPDX-License-Identifier: OFL-1.1-no-RFN diff --git a/site/font/Junicode/Junicode.woff b/site/font/Junicode/Junicode.woff new file mode 100644 index 0000000..705b1ee Binary files /dev/null and b/site/font/Junicode/Junicode.woff differ diff --git a/site/font/Junicode/Junicode.woff.license b/site/font/Junicode/Junicode.woff.license new file mode 100644 index 0000000..7a17c53 --- /dev/null +++ b/site/font/Junicode/Junicode.woff.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Peter Baker +SPDX-License-Identifier: OFL-1.1-no-RFN diff --git a/site/qho/docs/dict/index.xml b/site/qho/docs/dict/index.xml new file mode 100644 index 0000000..90e543b --- /dev/null +++ b/site/qho/docs/dict/index.xml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qho/docs/dict" + xlink:show="embed" +/> diff --git a/site/qho/srcs/E.Hope/index.xhtml b/site/qho/srcs/E.Hope/index.xhtml new file mode 100644 index 0000000..006814e --- /dev/null +++ b/site/qho/srcs/E.Hope/index.xhtml @@ -0,0 +1,12 @@ + + + + <书社:link xlink:href="about:shushe?include=qho/srcs/E.Hope" xlink:show="embed"/> + diff --git a/site/qjl/docs/dict/index.xml b/site/qjl/docs/dict/index.xml new file mode 100644 index 0000000..8392a2a --- /dev/null +++ b/site/qjl/docs/dict/index.xml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qjl/docs/dict" + xlink:show="embed" +/> diff --git a/site/qjl/srcs/I--VII/index.xhtml b/site/qjl/srcs/I--VII/index.xhtml new file mode 100644 index 0000000..d15e8da --- /dev/null +++ b/site/qjl/srcs/I--VII/index.xhtml @@ -0,0 +1,20 @@ + + + + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page01" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page02" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page03" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page04" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page05" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page06" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page07" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page08" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/I--VII/page09" xlink:show="embed"/> + diff --git a/site/qjl/srcs/RedBook/index.xhtml b/site/qjl/srcs/RedBook/index.xhtml new file mode 100644 index 0000000..8372e29 --- /dev/null +++ b/site/qjl/srcs/RedBook/index.xhtml @@ -0,0 +1,27 @@ + + + + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/cover" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page01" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page02" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page03" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page04" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page05" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page06" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page07" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page08" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page09" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page10" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page11" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page12" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page13" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page14" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjl/srcs/RedBook/page15" xlink:show="embed"/> + diff --git a/site/qjt/docs/dict/index.xml b/site/qjt/docs/dict/index.xml new file mode 100644 index 0000000..e49d7b0 --- /dev/null +++ b/site/qjt/docs/dict/index.xml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qjt/docs/dict" + xlink:show="embed" +/> diff --git a/site/qjt/srcs/AppleDictionary b/site/qjt/srcs/AppleDictionary new file mode 100644 index 0000000..972bb68 --- /dev/null +++ b/site/qjt/srcs/AppleDictionary @@ -0,0 +1,13 @@ + + +<书社:archive + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + 书社:expanded="" +> + <书社:raw-text 书社:archived-as="index.xhtml">]]> + <书社:link 书社:archived-as="x-XX-jt.xml" xlink:href="about:shushe?include=qjt/srcs/AppleDictionary/x-XX-jt.xml" xlink:show="embed"/> + diff --git a/site/qjt/srcs/BasicVocab/index.xhtml b/site/qjt/srcs/BasicVocab/index.xhtml new file mode 100644 index 0000000..26183d1 --- /dev/null +++ b/site/qjt/srcs/BasicVocab/index.xhtml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qjt/srcs/BasicVocab" + xlink:show="embed" +/> diff --git a/site/qjt/srcs/Syllabary/index.xhtml b/site/qjt/srcs/Syllabary/index.xhtml new file mode 100644 index 0000000..4262ca5 --- /dev/null +++ b/site/qjt/srcs/Syllabary/index.xhtml @@ -0,0 +1,12 @@ + + + + <书社:link xlink:href="about:shushe?include=qjt/srcs/Syllabary" xlink:show="embed"/> + diff --git a/site/qjt/srcs/SyllabaryOrigins/index.xhtml b/site/qjt/srcs/SyllabaryOrigins/index.xhtml new file mode 100644 index 0000000..48a7469 --- /dev/null +++ b/site/qjt/srcs/SyllabaryOrigins/index.xhtml @@ -0,0 +1,14 @@ + + + + <书社:link xlink:href="about:shushe?include=qjt/srcs/SyllabaryOrigins/page01" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjt/srcs/SyllabaryOrigins/page02" xlink:show="embed"/> + <书社:link xlink:href="about:shushe?include=qjt/srcs/SyllabaryOrigins/page03" xlink:show="embed"/> + diff --git a/site/qjt/srcs/x-XX-jt b/site/qjt/srcs/x-XX-jt new file mode 100644 index 0000000..b586cd9 --- /dev/null +++ b/site/qjt/srcs/x-XX-jt @@ -0,0 +1,25 @@ + + +<书社:archive + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + 书社:expanded="" +> + <书社:raw-text 书社:archived-as="index.xhtml">]]> + <书社:link 书社:archived-as="About.html" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/About.html" xlink:show="embed"/> + <书社:link 书社:archived-as="Grammar.html" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/Grammar.html" xlink:show="embed"/> + <书社:link 书社:archived-as="Lessons.html" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/Lessons.html" xlink:show="embed"/> + <书社:link 书社:archived-as="lessons/1.html" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/lessons/1.html" xlink:show="embed"/> + <书社:link 书社:archived-as="Main.html" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/Main.html" xlink:show="embed"/> + <书社:link 书社:archived-as="Syllabary.html" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/Syllabary.html" xlink:show="embed"/> + <书社:link 书社:archived-as="files/clover.css" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/files/clover.css" xlink:show="embed"/> + <书社:link 书社:archived-as="files/db.js" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/files/db.js" xlink:show="embed"/> + <书社:link 书社:archived-as="files/global.js" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/files/global.js" xlink:show="embed"/> + <书社:link 书社:archived-as="files/night.css" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/files/night.css" xlink:show="embed"/> + <书社:link 书社:archived-as="files/oldenglish.css" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/files/oldenglish.css" xlink:show="embed"/> + <书社:link 书社:archived-as="files/style.css" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/files/style.css" xlink:show="embed"/> + <书社:link 书社:archived-as="files/ah.ico" xlink:href="about:shushe?include=qjt/srcs/x-XX-jt/files/ah.ico" xlink:show="embed"/> + diff --git a/site/qjt/txts/puh_dahtzee_ayzho_dayzho b/site/qjt/txts/puh_dahtzee_ayzho_dayzho new file mode 100644 index 0000000..ace0b38 --- /dev/null +++ b/site/qjt/txts/puh_dahtzee_ayzho_dayzho @@ -0,0 +1,13 @@ + + +<书社:archive + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + 书社:expanded="" +> + <书社:link 书社:archived-as="index.xhtml" xlink:href="about:shushe?include=qjt/txts/puh_dahtzee_ayzho_dayzho/text" xlink:show="embed"/> + <书社:link 书社:archived-as="gloss.txt" xlink:href="about:shushe?include=qjt/txts/puh_dahtzee_ayzho_dayzho/gloss" xlink:show="embed"/> + diff --git a/site/qlr/docs/dict/index.xml b/site/qlr/docs/dict/index.xml new file mode 100644 index 0000000..f16f98d --- /dev/null +++ b/site/qlr/docs/dict/index.xml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qlr/docs/dict" + xlink:show="embed" +/> diff --git a/site/qlr/srcs/15.Lang.Ev.Lrex.Revised/index.xhtml b/site/qlr/srcs/15.Lang.Ev.Lrex.Revised/index.xhtml new file mode 100644 index 0000000..fa6bab2 --- /dev/null +++ b/site/qlr/srcs/15.Lang.Ev.Lrex.Revised/index.xhtml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qlr/srcs/15.Lang.Ev.Lrex.Revised" + xlink:show="embed" +/> diff --git a/site/qlr/srcs/15.Lang.Ev.Lrex/index.xhtml b/site/qlr/srcs/15.Lang.Ev.Lrex/index.xhtml new file mode 100644 index 0000000..bdc8ed9 --- /dev/null +++ b/site/qlr/srcs/15.Lang.Ev.Lrex/index.xhtml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qlr/srcs/15.Lang.Ev.Lrex" + xlink:show="embed" +/> diff --git a/site/qlr/srcs/HopePronunciationGuide/index.xhtml b/site/qlr/srcs/HopePronunciationGuide/index.xhtml new file mode 100644 index 0000000..08c2a3d --- /dev/null +++ b/site/qlr/srcs/HopePronunciationGuide/index.xhtml @@ -0,0 +1,11 @@ + + +<书社:link + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4" + xlink:href="about:shushe?include=qlr/srcs/HopePronunciationGuide" + xlink:show="embed" +/> diff --git a/transforms/nospdx.xslt b/transforms/nospdx.xslt new file mode 100644 index 0000000..4df0db0 --- /dev/null +++ b/transforms/nospdx.xslt @@ -0,0 +1,21 @@ + + + + + <书社:id>urn:fdc:langdev.ladys.computer:20240820:transforms:nospdx.xslt +