diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
commit | 6dc1997577fab2c366781fd7048144935afa0012 (patch) | |
tree | 8918d28c7ab4342f0738985e37af1dfc42d0e93a /resources/lib/jquery.i18n/src/languages/ml.js | |
parent | 150f94f051128f367bc89f6b7e5f57eb2a69fc62 (diff) | |
parent | fa89acd685cb09cdbe1c64cbb721ec64975bbbc1 (diff) |
Merge commit 'fa89acd'
# Conflicts:
# .gitignore
# extensions/ArchInterWiki.sql
Diffstat (limited to 'resources/lib/jquery.i18n/src/languages/ml.js')
-rw-r--r-- | resources/lib/jquery.i18n/src/languages/ml.js | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/resources/lib/jquery.i18n/src/languages/ml.js b/resources/lib/jquery.i18n/src/languages/ml.js new file mode 100644 index 00000000..f724b7b2 --- /dev/null +++ b/resources/lib/jquery.i18n/src/languages/ml.js @@ -0,0 +1,98 @@ +/** + * Malayalam language functions + * + * @author Santhosh Thottingal + */ + +( function ( $ ) { + 'use strict'; + + $.i18n.languages.ml = $.extend( {}, $.i18n.languages['default'], { + convertGrammar: function ( word, form ) { + form = form.toLowerCase(); + switch ( form ) { + case 'ഉദ്ദേശിക': + case 'dative': + if ( word.substr( -1 ) === 'ു' || + word.substr( -1 ) === 'ൂ' || + word.substr( -1 ) === 'ൗ' || + word.substr( -1 ) === 'ൌ' + ) { + word += 'വിന്'; + } else if ( word.substr( -1 ) === 'ം' ) { + word = word.substr( 0, word.length - 1 ) + 'ത്തിന്'; + } else if ( word.substr( -1 ) === 'ൻ' ) { + // Atomic chillu n. അവൻ -> അവന് + word = word.substr( 0, word.length - 1 ) + 'ന്'; + } else if ( word.substr( -3 ) === 'ന്\u200d' ) { + // chillu n. അവൻ -> അവന് + word = word.substr( 0, word.length - 1 ); + } else if ( word.substr( -1 ) === 'ൾ' || word.substr( -3 ) === 'ള്\u200d' ) { + word += 'ക്ക്'; + } else if ( word.substr( -1 ) === 'ർ' || word.substr( -3 ) === 'ര്\u200d' ) { + word += 'ക്ക്'; + } else if ( word.substr( -1 ) === 'ൽ' ) { + // Atomic chillu ൽ , ഫയൽ -> ഫയലിന് + word = word.substr( 0, word.length - 1 ) + 'ലിന്'; + } else if ( word.substr( -3 ) === 'ല്\u200d' ) { + // chillu ല്\u200d , ഫയല്\u200d -> ഫയലിന് + word = word.substr( 0, word.length - 2 ) + 'ിന്'; + } else if ( word.substr( -2 ) === 'ു്' ) { + word = word.substr( 0, word.length - 2 ) + 'ിന്'; + } else if ( word.substr( -1 ) === '്' ) { + word = word.substr( 0, word.length - 1 ) + 'ിന്'; + } else { + // കാവ്യ -> കാവ്യയ്ക്ക്, ഹരി -> ഹരിയ്ക്ക്, മല -> മലയ്ക്ക് + word += 'യ്ക്ക്'; + } + + break; + case 'സംബന്ധിക': + case 'genitive': + if ( word.substr( -1 ) === 'ം' ) { + word = word.substr( 0, word.length - 1 ) + 'ത്തിന്റെ'; + } else if ( word.substr( -2 ) === 'ു്' ) { + word = word.substr( 0, word.length - 2 ) + 'ിന്റെ'; + } else if ( word.substr( -1 ) === '്' ) { + word = word.substr( 0, word.length - 1 ) + 'ിന്റെ'; + } else if ( word.substr( -1 ) === 'ു' || + word.substr( -1 ) === 'ൂ' || + word.substr( -1 ) === 'ൗ' || + word.substr( -1 ) === 'ൌ' + ) { + word += 'വിന്റെ'; + } else if ( word.substr( -1 ) === 'ൻ' ) { + // Atomic chillu n. അവൻ -> അവന്റെ + word = word.substr( 0, word.length - 1 ) + 'ന്റെ'; + } else if ( word.substr( -3 ) === 'ന്\u200d' ) { + // chillu n. അവൻ -> അവന്റെ + word = word.substr( 0, word.length - 1 ) + 'റെ'; + } else if ( word.substr( -3 ) === 'ള്\u200d' ) { + // chillu n. അവൾ -> അവളുടെ + word = word.substr( 0, word.length - 2 ) + 'ുടെ'; + } else if ( word.substr( -1 ) === 'ൾ' ) { + // Atomic chillu n. അവള്\u200d -> അവളുടെ + word = word.substr( 0, word.length - 1 ) + 'ളുടെ'; + } else if ( word.substr( -1 ) === 'ൽ' ) { + // Atomic l. മുയല്\u200d -> മുയലിന്റെ + word = word.substr( 0, word.length - 1 ) + 'ലിന്റെ'; + } else if ( word.substr( -3 ) === 'ല്\u200d' ) { + // chillu l. മുയല്\u200d -> അവളുടെ + word = word.substr( 0, word.length - 2 ) + 'ിന്റെ'; + } else if ( word.substr( -3 ) === 'ര്\u200d' ) { + // chillu r. അവര്\u200d -> അവരുടെ + word = word.substr( 0, word.length - 2 ) + 'ുടെ'; + } else if ( word.substr( -1 ) === 'ർ' ) { + // Atomic chillu r. അവർ -> അവരുടെ + word = word.substr( 0, word.length - 1 ) + 'രുടെ'; + } else { + word += 'യുടെ'; + } + + break; + } + + return word; + } + } ); +}( jQuery ) ); |