mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
added dummy inflection template for Chinese. It needs better names for the different inflection forms
This commit is contained in:
67
src/ui/android/res/xml/inflection_cmn.xml
Normal file
67
src/ui/android/res/xml/inflection_cmn.xml
Normal file
@@ -0,0 +1,67 @@
|
||||
<inflection_temlate>
|
||||
<noun>
|
||||
<h1>Noun</h1>
|
||||
|
||||
<table class="forms-table" rules="all">
|
||||
<tr>
|
||||
<th>s</th>
|
||||
<td><form>s</form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>c</th>
|
||||
<td><form>c</form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</noun>
|
||||
<adjective>
|
||||
<h1>Adjective</h1>
|
||||
|
||||
<table class="forms-table" rules="all">
|
||||
<tr>
|
||||
<th>s</th>
|
||||
<td><form>s</form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</adjective>
|
||||
<adverb>
|
||||
<h1>Adverb</h1>
|
||||
<p><form>s</form></p>
|
||||
</adverb>
|
||||
<prep>
|
||||
<h1>Preposition</h1>
|
||||
<p><form>prepPre</form> - <form>prepPost</form></p>
|
||||
</prep>
|
||||
<verb>
|
||||
<h1>Verb</h1>
|
||||
<table class="forms-table" rules="all">
|
||||
<tr>
|
||||
<th>s</th>
|
||||
<td><form>s</form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>dp</th>
|
||||
<td><form>dp</form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ds</th>
|
||||
<td><form>ds</form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ep</th>
|
||||
<td><form>ep</form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>neg</th>
|
||||
<td><form>neg</form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>pp</th>
|
||||
<td><form>pp</form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>sn</th>
|
||||
<td><form>sn</form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</verb>
|
||||
</inflection_temlate>
|
||||
@@ -28,7 +28,7 @@ public class Translator {
|
||||
new Language("en-US", "English", "ParseEng", R.xml.inflection_en),
|
||||
new Language("bg-BG", "Bulgarian", "ParseBul", R.xml.inflection_bg),
|
||||
//new Language("fr-FR", "French", "ParseFre", 0)
|
||||
//new Language("cmn-Hans-CN", "Chinese", "ParseChi", 0)
|
||||
//new Language("cmn-Hans-CN", "Chinese", "ParseChi", R.xml.inflection_cmn)
|
||||
};
|
||||
|
||||
private Language mSourceLanguage;
|
||||
|
||||
Reference in New Issue
Block a user