From 500c8c29f9fe418f198245bd37c57c204e6cd8b4 Mon Sep 17 00:00:00 2001 From: Abdelkrime Aries Date: Mon, 1 Jan 2018 19:05:28 +0100 Subject: [PATCH] version 0.7.0 --- README.md | 7 +++++-- package.json | 6 ++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c309f8f..93a1b31 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ You can use a CDN (content-delivery network): ``` if you want to use the last version, just replace "version" with "latest". -For example, : +For example: ```javascript @@ -111,6 +111,9 @@ var EnLang = JsLingua.getService("Lang", "eng"); //Get Arabic Morpho class var ArMorpho = JsLingua.getService("Morpho", "ara"); + +//Get French Morpho class +var FrMorpho = JsLingua.getService("Morpho", "fra"); ``` Or, you can just loop over the services and test available languages. @@ -138,7 +141,7 @@ All the C's are here: ## License -Copyright (C) 2016-2017 Abdelkrime Aries +Copyright (C) 2016-2018 Abdelkrime Aries Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/package.json b/package.json index 6962bb8..648e79a 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "jshint": "^2.9.3", "jslint": "^0.11.0", "mocha": "^3.5.3", - "uglify-es": "^3.3.1", + "uglify-es": "^3.3.4", "yuidoc-marviq-theme": "^0.1.5" }, "scripts": { @@ -44,7 +44,8 @@ "normalization", "arabic", "english", - "japanese" + "japanese", + "french" ], "files": [ "info.js", @@ -54,6 +55,7 @@ "ara/", "jpn/", "eng/", + "fra/", "dist/", "test" ],