1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

v2.11.1.1

This commit is contained in:
gnosygnu
2015-11-01 20:50:05 -05:00
parent 4f43f51b18
commit b990ec409f
858 changed files with 6758 additions and 4187 deletions

View File

@@ -40,6 +40,7 @@ public class Xol_grammar_ {
switch (lang_id) {
case Xol_lang_stub_.Id_fi: return new Xol_grammar_fi();
case Xol_lang_stub_.Id_ru: return new Xol_grammar_ru();
case Xol_lang_stub_.Id_he: return new Xol_grammar_he();
case Xol_lang_stub_.Id_pl: return Xol_grammar__noop.Instance;
default: return Xol_grammar__unimplemented.Instance;
}

View File

@@ -0,0 +1,53 @@
/*
XOWA: the XOWA Offline Wiki Application
Copyright (C) 2012 gnosygnu@gmail.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package gplx.xowa.langs.grammars; import gplx.*; import gplx.xowa.*; import gplx.xowa.langs.*;
import gplx.core.btries.*;
public class Xol_grammar_he implements Xol_grammar {
public boolean Grammar_eval(Bry_bfr bfr, Xol_lang_itm lang, byte[] word, byte[] type) {
// if ( isset( $wgGrammarForms['he'][$case][$word] ) ) return $wgGrammarForms['he'][$case][$word]; // TODO: implement global $wgGrammarForms; WHEN: need to find he.w entries for DefaultSettings.php
if (hash.Get_as_int_or(type, -1) == Tid__prefixed) {
// Duplicate the "Waw" if prefixed, but not if it is already double.
if ( Bry_.Match(word, 0, 2, Bry__waw__0) // "ו"
&& !Bry_.Match(word, 0, 4, Bry__waw__1) // "וו"
)
word = Bry_.Add(Bry__waw__0, word);
// Remove the "He" article if prefixed
if ( Bry_.Match(word, 0, 2, Bry__he__0)) // "ה"
word = Bry_.Mid(word, 2);
// Add a hyphen (maqaf) before non-Hebrew letters.
if ( Bry_.Match(word, 0, 2, Bry__maqaf__0) // "א"
|| Bry_.Compare(word, 0, 2, Bry__maqaf__1, 0, 2) == CompareAble_.More // "ת"
)
word = Bry_.Add(Bry__maqaf__2, word);
}
bfr.Add(word);
return true;
}
private static final int Tid__prefixed = 1;
private static final Hash_adp_bry hash = Hash_adp_bry.ci_u8(gplx.xowa.langs.cases.Xol_case_mgr_.U8())
.Add_str_int("prefixed" , Tid__prefixed)
.Add_str_int("תחילית" , Tid__prefixed)
;
private static final byte[]
Bry__waw__0 = Bry_.new_u8("ו"), Bry__waw__1 = Bry_.new_u8("וו")
, Bry__he__0 = Bry_.new_u8("ה")
, Bry__maqaf__0 = Bry_.new_u8("א"), Bry__maqaf__1 = Bry_.new_u8("ת"), Bry__maqaf__2 = Bry_.new_u8("־")
;
}