simple-translation
Advanced tools
Comparing version
{ | ||
"name": "simple-translation", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "A super basic and simple way to do language translations. Auto detects language from the browser. Supports compiled strings. Aims to be an uncomplicated translation package", | ||
@@ -5,0 +5,0 @@ "main": "simple-translation.js", |
@@ -9,2 +9,3 @@ | ||
- Automatically detects and uses the browser's language settings by default | ||
- Falls back to default language if there is no translation file for the user's language | ||
- Easily override default language | ||
@@ -35,3 +36,3 @@ - Supports static and dynamic strings (can pass variables into text) | ||
Messages can either be a string or a function so that you can generate string dynamically. | ||
Messages can either be a string or a function so that you can generate strings dynamically. | ||
@@ -46,3 +47,3 @@ For dynamic strings it will take a list of variables and return a templated string. | ||
The translations will default to user's browser's language. If there is no translation file for that language is will default to the english translation file. Therefore an english translation file is required at a minimum. | ||
The translations will default to user's browser's language. If there is no translation file for that language it will default to the english translation file. Therefore an english (or other default) translation file is required at a minimum. | ||
@@ -94,2 +95,23 @@ ### Getting Started | ||
## Change the default language | ||
This package sets 'en' as the default / fallback language. If you wanted to use a different default language you can simply modify the property after instantiating simple-translation. | ||
```translate.defaultLanguage = 'de'``` | ||
*from the top...* | ||
``` | ||
import SimpleTranslation from '../simple-translation.js' | ||
import german from '../languages/german.js' | ||
import french from '../languages/french.js' | ||
let translate = new SimpleTranslate(german, french) | ||
translate.defaultLanguage = 'de' | ||
``` | ||
## Get list of supported Languages | ||
@@ -96,0 +118,0 @@ |
Sorry, the diff of this file is not supported yet
11617
5.71%153
16.79%