Hindi (हिंदी) translations for WonderCMS (by shoaiyb sysa)
This plugin adds Hindi (हिंदी) translations to the WonderCMS admin area, based on https://github.com/StephanStanisic/zlanguage-nl_NL
(experimental version).
- Login to your WonderCMS website.
- Click "Settings" and click "Plugins".
- Find plugin in the list and click "install".
The translations are all in the hi_IN.csv file. Why in CVS? That's how all other major CMS's do it, so there must be a good reason for it.
You will see something like this a lot:
SECTION NAME
"> Some text","> Your translation"
The 'parser' skips all lines that are not equal to two values, so SECTION NAME (contains one value) is skipped.
All the pairs are in the preg_replace
regex format. That's all this does. The prepending of >
and >
makes sure that we only match the contents of a tag.
This way, > Security
will match in
<a href="#security" aria-controls="security" role="tab" data-toggle="tab" class="nav-link">Security</a>
and it won't match in
<div class="btn-group w-50"><button type="submit" class="btn btn-success" name="betterSecurity" value="on">ON (warning: may break your website)</button></div>
<div class="btn-group w-50"><button type="submit" class="btn btn-danger" name="betterSecurity" value="off">OFF (reset htaccess to default)</button></div>