Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dak #405

Open
JimGeselbracht opened this issue Mar 3, 2023 · 5 comments
Open

Dak #405

JimGeselbracht opened this issue Mar 3, 2023 · 5 comments

Comments

@JimGeselbracht
Copy link

Is "dak" an actual word, or is it just a mistyping of "diak?" I came across this sentence: "Klteketel a taem el dak el kie e ngika el rubak a mlo metik er a klemeriar reng er a Ezekiel el kirel a chelitakl " and I wonder if it should be "diak el kie?" What is a good translation for that first part of the line: klteketel a taem el dak el kie? Searching for the phrase "dak" turns up a lot of examples on tekinged, but they look like mistypes.

@Lukes-Imeyuns
Copy link

Lukes-Imeyuns commented Mar 3, 2023 via email

@JimGeselbracht
Copy link
Author

JimGeselbracht commented Mar 3, 2023 via email

@johnbent
Copy link
Contributor

johnbent commented Mar 3, 2023

Hey Jim,

I think this is a pattern in more words than just DMAK. If you look at the grammar book in Section 6.4.2, you'll see that 'M' is a verb marker infix found in the base version of many verbs:
image

And, I don't know where it is explained in the grammer book (Aleks probably does!), but the 'M' infix is dropped in many non-base versions like hypotheticals and past tense versions.

So DMAK becomes DAK in a hypothetical like 'SEL DE DAK' for 'when we are together' and in the past past tense like 'AKI DILAK' for 'we were together.

I tried to do a SQL search to find all the documented verbs that follow this pattern:

mysql> select stem,pal,pos from all_words3 where (pos like 'v.i.' or pos like 'v.s.' or pos rlike 'past') and stem in (select id from all_words3 where substr(pal,2,1) = 'm' and (pos like 'v.i.' or pos like 'v.s.') and id=stem and substr(pal,1,1) != 'o') order by stem;  
+-------+--------------+----------+  
| stem  | pal          | pos      |  
+-------+--------------+----------+  
|    37 | dilak        | v.past   |  
|    37 | dmak         | v.i.     |
|    63 | lmangel      | v.i.     |
|    63 | bekelilangel | v.s.     |
|    63 | lilangel     | v.i.past |
|    67 | lmuk         | v.i.     |
|    67 | liluk        | v.i.past |
|    68 | lmuut        | v.i.     |
|    68 | liluut       | v.i.past |
|  1263 | kmeed        | v.s.     |
|  1263 | kileed       | v.s.past |
|  2093 | tmuu         | v.i.     |
|  2093 | tiluu        | v.i.past |
| 12325 | tilaut       | v.past   |
| 12325 | tmaut        | v.i.     |
+-------+--------------+----------+
38 rows in set (0.13 sec)

@johnbent
Copy link
Contributor

johnbent commented Mar 3, 2023

@Lukes-Imeyuns , thanks for an awesome explanation and example sentences.

@johnbent
Copy link
Contributor

johnbent commented Mar 3, 2023

OK, we should create an auto parse for this. Add it to DMAK as a v.s.hypo. and add the example sentences from Lukes as well:
Jim, me de DAK el mora ospitar. Jim, let's go to the hospital together.
Ngak ma Jim a DILAK el mo er a ospitar. Jim and I went to the hospital
together.
A lekok DMAK ngak ma Jim el mo er a ospitar e ng di ng mla merael. I was
going to go to the hospital with Jim but he left already.
Jim, MDAK kau ma Lukes el mo er a ospitar. Jim, go with Lukes to the
hospital.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants