diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 5956f32..3ac72da 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -4,5 +4,5 @@ Thanks for contributing to this module! Please create pull requests to the branch `develop`. -To hold one code style and standard there are several linters and tools in this project set. Make sure you fullfill the requirements. +To hold one code style and standard there are several linters and tools in this project set. Make sure you fullfil the requirements. Also there will be automatically analysis performed once you created the pull request. diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..52b8550 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: ['https://paypal.me/fewieden'] diff --git a/CHANGELOG.md b/CHANGELOG.md index 602a0b6..b52fa21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # MMM-soccer Changelog +## [2.0.1] + +### Added + +* French translations (Thanks to https://github.com/laventin85) + +### Changed + +* Readme config example +* Github config files + ## [2.0.0] ### Added diff --git a/MMM-soccer.js b/MMM-soccer.js index 87aa5b2..350fd96 100644 --- a/MMM-soccer.js +++ b/MMM-soccer.js @@ -178,6 +178,7 @@ Module.register('MMM-soccer', { return { en: 'translations/en.json', de: 'translations/de.json', + fr: 'translations/fr.json', id: 'translations/id.json', sv: 'translations/sv.json' }; diff --git a/README.md b/README.md index c770047..37982d2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ European Soccer Standings Module for MagicMirror² module: 'MMM-soccer', position: 'bottom_right', config: { - ... + // add your config options here } } ``` diff --git a/package.json b/package.json index 3353552..0ffaea7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mmm-soccer", - "version": "1.0.1", + "version": "2.0.1", "description": "European Soccer Standings Module for MagicMirror2", "repository": { "type": "git", @@ -17,8 +17,8 @@ }, "homepage": "https://github.com/fewieden/MMM-soccer#readme", "scripts": { - "lint": "./node_modules/.bin/eslint . && ./node_modules/.bin/stylelint .", - "docs": "./node_modules/.bin/jsdoc -c jsdoc.json ." + "lint": "eslint . && stylelint .", + "docs": "jsdoc -c jsdoc.json ." }, "dependencies": { "request": "^2.74.0" diff --git a/translations/fr.json b/translations/fr.json new file mode 100644 index 0000000..176c5e3 --- /dev/null +++ b/translations/fr.json @@ -0,0 +1,9 @@ +{ + "LOADING": "Chargement...", + "NO_DATA_AVAILABLE": "Aucunes données disponibles!", + "MATCHDAY": "Jour de Match", + "TEAM": "Equipe", + "COMMAND_LIST": "Liste de toutes les commandes vocales", + "MODE": "Mode", + "VOICE_COMMANDS": "Commandes Vocales" +}