Just drop this script on your page and you're ready to deliver your pages in any language.
Checkout this video to see i18nextify in action.
i18nextify uses Virtual DOM to update your page with translations based on the current content. MutationObserver
is used to trigger translations on newly added content.
i18nextify comes bundled with i18next.
Should play well with any static or dynamic page not using its own Virtual DOM.
The easiest way for guaranteed success is using locizify on locize.com.
Alternatively:
Drop this script on your page.
<!DOCTYPE html>
<html>
<head>
<script src="https://github.com/i18next/i18nextify/raw/master/i18nextify.min.js"></script>
<!-- or: <script src="https://unpkg.com/i18nextify@^3.2.1"></script> -->
</head>
...
</html>
Optionally you can also define your fallback language directly in the script tag:
<!DOCTYPE html>
<html>
<head>
<script src="https://github.com/i18next/i18nextify/raw/master/i18nextify.min.js" id="i18nextify" fallbacklng="en"></script>
<!-- or: <script src="https://unpkg.com/i18nextify@^3.2.1" id="i18nextify" fallbacklng="en"></script> -->
</head>
...
</html>
Request your page with querystring params ?debug=true&saveMissing=true
and open the browser console to see i18nextify in action. It will output all missing translations - start serving them from /locales/{{lng}}/translation.json
.
See the example for details.
<!DOCTYPE html>
<html>
<head>
<script src="https://github.com/i18next/i18nextify/raw/master/i18nextify.min.js"></script>
<script>
window.i18nextify.init({
// defaults that are set
autorun: true, // setting to false init will return an object with start function
ele: document.body, // pass in another element if you like to translate another html element
ignoreTags: ['SCRIPT'], // tags to ignore
// using keys instead of content as keys
keyAttr: 'i18next-key', // node attribute to use as key
ignoreWithoutKey: false, // set to true to only support nodes having a key
// per default not set
ignoreIds: ['ignoreMeId'],
ignoreClasses: ['ignoreMeClass'],
// attributes to translate
translateAttributes: ['placeholder', 'title', 'alt', 'value#input.type=button', 'value#input.type=submit'],
// merging content (eg. a tags in p tags)
mergeTags: [], // tags to merge innerHtml to one key
inlineTags: [], // tags to inline (eg. a, span, abbr, ...)
ignoreInlineOn: [], // tags to ignore inlining tags under inlineTags
// cleanup for keys
cleanIndent: true, // removes indent, eg. if a p tag spans multiple lines
ignoreCleanIndentFor: ['PRE', 'CODE'], // ignores cleaning up of indent for those tags needing that extra spaceing
cleanWhitespace: true, // removes surrounding whitespace from key
namespace: false, // set a filename - default namespace will be translation
namespaceFromPath: false // set true will use namepace based on window.location.pathname
ns: ['common'] // -> only set if accessing more then one namepace
// + all options available in i18next
});
</script>
</head>
...
</html>
const translation = i18nextify.init({
autorun: false,
});
setTimeout(function () {
translation.start();
}, 1000);
Just set translated attribute:
<p merge>
all inside will be used as on segment, even if having other
<a>elements inside</a>
</p>
// key = all inside will be used as on segment, even if having other
<a>elements inside</a>
Same could be done using options:
mergeTags: [], // tags to merge innerHtml to one key
inlineTags: [], // tags to inline (eg. a, span, abbr, ...)
ignoreInlineOn: [], // tags to ignore inlining tags under inlineTags
<img src="https://github.com/i18next/i18nextify/raw/master/images/{{a.png}}" alt="big A" />
You will find a.png
to be a key in your translation files - it's value can be replaced to eg. a-de.png
for German (all other languages will fallback to a.png
)
<a href="https://github.com/i18next/i18nextify/blob/master/{{statistic}}">Open my statistics</a>
statistic
will be a regular key that can be translated. But be aware you will need to provide that routes - eg. using localized routes on the server
Just set translated attribute:
<div translated>this won't get translated - nor this elements children</div>
Just add needed items to the specific array:
window.i18nextify.init({
ignoreTags: ['SCRIPT'], // need to be uppercased
ignoreIds: ['ignoreMeId'],
ignoreClasses: ['ignoreMeClass']
});
<script>
// this won't get translated - nor this elements children
</script>
<div id="ignoreMeId">
this won't get translated - nor this elements children
</div>
<div class="ignoreMeClass">
this won't get translated - nor this elements children
</div>
Just add translated
-attribute
For extended translations like plurals, interpolation, ... you need to add options to the element
<div i18next-options='{"foo": "bar"}'>
foo {{bar}}
<p i18next-options='{"foo2": "bar2"}'>foo {{foo}}; foo2 {{foo2}}</p>
</div>
You can use the i18next instance used to provide the translation functionality directly. Just make sure the instance is initialized already:
<script>
// use t function of i18next
// https://www.i18next.com/translation-function/essentials
function useI18next() {
var translated = i18nextify.i18next.t('some key');
}
if (i18nextify.i18next.isInitialized) {
useI18next();
} else {
i18nextify.i18next.on('initialized', function(options) {
useI18next();
})
}
</script>
Options get inherited from parent to child nodes.
Default would be translation.
window.i18nextify.init({
namespace: 'myNamespace'
});
window.i18nextify.init({
namespaceFromPath: true
});
This is useful for reused elements that are on every page, eg. like footer,... and you're using namespaceFromPath. So you can avoid having that segments on every routes namespace file.
window.i18nextify.init({
namespace: 'translation', // -> set the default namespace
ns: ['common'] // -> add additional namespaces to load
});
<div i18next-options='{"ns": "common"}'>
<p>different namespace: i18next-options='{"ns": "common"}'</p>
<p>
set it on i18next options and assert to add it to
<strong>i18next.options.ns array on init</strong>
</p>
</div>
<!DOCTYPE html>
<html>
<head>
<script src="https://github.com/i18next/i18nextify/raw/master/i18nextify.min.js"></script>
</head>
<body style="display: none">
...
</body>
</html>
Just set the element style display to none. i18nextify will change it to block when ready.
You can change the namespace after loading to some other file (eg. before transitioning to another page).
window.i18nextify.changeNamespace('newNamespace');
window.i18nextify.forceRerender();