Skip to content

Commit

Permalink
Added Russian and Ukrainian by Mikhail Les
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneCypher committed Sep 10, 2017
1 parent 46353c1 commit c5ebbc2
Show file tree
Hide file tree
Showing 12 changed files with 58 additions and 13 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
* [[`46353c1a9d`](https://github.com/StoneCypher/jssm/commit/46353c1a9d)] - Merge pull request #326 from technophile77/master (John Haugeland)
* [[`7bb8aa96aa`](https://github.com/StoneCypher/jssm/commit/7bb8aa96aa)] - commas (Alex Cresswell)
* [[`ddc1fc6c7a`](https://github.com/StoneCypher/jssm/commit/ddc1fc6c7a)] - spanish (Alex Cresswell)
* [[`2d966c53f3`](https://github.com/StoneCypher/jssm/commit/2d966c53f3)] - german improvements from jeff; hebrew improvements from dvir (John Haugeland)
* [[`c63cf2eb0e`](https://github.com/StoneCypher/jssm/commit/c63cf2eb0e)] - Merge pull request #325 from cohendvir/patch-1 (John Haugeland)
* [[`689c7336b8`](https://github.com/StoneCypher/jssm/commit/689c7336b8)] - Update hebrew.json (Dvir Cohen)
* [[`fefacccf64`](https://github.com/StoneCypher/jssm/commit/fefacccf64)] - Create hebrew.json (Dvir Cohen)
* [[`978458a9b7`](https://github.com/StoneCypher/jssm/commit/978458a9b7)] - let's get basic language tests running. english, emoji, and german (John Haugeland)
* [[`387da4f427`](https://github.com/StoneCypher/jssm/commit/387da4f427)] - basic internationalization prep complete. unicode arrows (John Haugeland)
* [[`51f594446a`](https://github.com/StoneCypher/jssm/commit/51f594446a)] - prepping for internationalization and unicode operators (John Haugeland)
* [[`fea6f7b909`](https://github.com/StoneCypher/jssm/commit/fea6f7b909)] - lol whet see https://github.com/istanbuljs/nyc/issues/673 (John Haugeland)
Expand Down
4 changes: 3 additions & 1 deletion README.md
@@ -1,7 +1,9 @@
# jssm
A Javascript state machine with a terse DSL and a simple API. Well tested, and typed with Flowtype. MIT license.

[Try it live!](https://stonecypher.github.io/jssm-viz-demo/graph_explorer.html)
<big>[Try it live!](https://stonecypher.github.io/jssm-viz-demo/graph_explorer.html)</big>

Language test cases for English, German, Hebrew, Russian, Spanish, Ukrainian, and Emoji. Please help make sure your language is well handled!.

<div id="badge_style_hook">

Expand Down
2 changes: 1 addition & 1 deletion build/jssm.es5.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/jssm.es5.cjs.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/jssm.es5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions build/tests/language.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/lib/index.html
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset='utf-8' />
<title>jssm 5.9.0 | Documentation</title>
<title>jssm 5.9.3 | Documentation</title>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' type='text/css' rel='stylesheet' />
<link href='assets/style.css' type='text/css' rel='stylesheet' />
Expand All @@ -14,7 +14,7 @@
<div class='fixed xs-hide fix-3 overflow-auto max-height-100'>
<div class='py1 px2'>
<h3 class='mb0 no-anchor'>jssm</h3>
<div class='mb1'><code>5.9.0</code></div>
<div class='mb1'><code>5.9.3</code></div>
<input
placeholder='Filter'
id='filter-input'
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jssm",
"version": "5.9.1",
"version": "5.9.3",
"engines": {
"node": ">=6.0.0"
},
Expand Down
13 changes: 13 additions & 0 deletions src/js/tests/language_data/russian.json
@@ -0,0 +1,13 @@
{

"native_name" : "Русский",
"english_name" : "Russian",


"cases" : [
"all_letters_абвгдеёжзийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ",
"all_digits_0123456789",
"common_symbols_!«»№,.?+=_*#"
]

}
19 changes: 19 additions & 0 deletions src/js/tests/language_data/ukrainian.json
@@ -0,0 +1,19 @@
{

"native_name" : "Українська",
"english_name" : "Ukrainian",


"cases" : [
"ends_with_number_10",
"middle_10_number",
"10_starts_with_number",

"all_letters_абгґдеєжзиіїйклмнопрстуфхцчшщьюяАБВГҐДЕЄЖЗИІЇЙКЛМНОПРСТУФХЦЧШЩЬЮЯ",
"all_digits_0123456789",
"accents_’",

"common_symbols_!«»№,.?+=_*#"
]

}

0 comments on commit c5ebbc2

Please sign in to comment.