Quick Localisation allows site admins to patch Wordpress translations of any theme and any plugin without leaving the control panel
Quick Localisation allows to hook on gettext
, gettext_with_context
, ngettext
, and ngettext_with_context
so that one can easily tweak WordPress translations generated by functions __
, _e
, _ex
, _n
, _nx
, _x
, translate
, and translate_with_gettext_context
.
For installation please see the corresponding section. It is as trivial as copying the plugin folder in your WordPress.
To get the flavour of what the plugin actually does, see the screen shots.
Once installed and activated, the plugin back-end will be accessible via a separate menu in the admin panel (WP Admin -> Quick Localisation).
N.B. by all means this plugin is not a replacement of the standard WordPress localisation framework. In fact, webmasters are advised to use it as a long-term solution.
However Quick Localisation comes very handy when quick patches or unconventional translations are required.
The plugin offers the following options.
_ALL_
– it will be applied to all matching text).PO
files.At the moment Quick Localisation hooks on gettext
, gettext_with_context
, ngettext
, and ngettext_with_context
filters with very low priority (namely, 1000), allowing it to be the last one to have a say on translations.
Should one use other similar *gettext*
hooks, the priority can be changed in index.php
.
If you want to translate this plugin, please contact the Name.ly team. Already translated languages can be downloaded here. There, one can also find a sample English-to-English QL file. Simply edit the second column in your language and import the text.
Alternatively, as the site admin, one can enable gathering function of the plugin itself and quickly translate it inline.
Check out our other cool plugins: Feed2Tabs and Links2Tabs.
They go well together like coffee and doughnuts!
Name.ly offers WordPress blogs and many other services allowing to consolidate multiple sites, pages and profiles.
All on catchy domain names, like many.at, brief.ly, sincere.ly, links2.me, thatis.me, of-cour.se, … and hundreds more.
Name.ly/PRO platform allows domain name owners to run similar sites under their own brand.
Name.ly/PRO is most known for being first WordPress driven product allowing reselling emails and sub-domains.
quick-localization
folder to the /wp-content/plugins/
directoryActivate the plugin. Settings can be accessed via WP Admin -> Quick Localisation.
Use Edit, Export, and Import pages to manipulate translations.
The bigger the database, the more parsing the plugin has to perform, the higher the load. The relationship is exponential. Though we tested it with thousand words and the extra load was minimal.
WordPress activates plugins alphabetically or in the order provided by the file system. Having said this, if one of these earlier plugins localises its strings directly on the initialisation, Quick Localisation won’t be able to catch those.
A known way around it is as follows:
quick-localization.php
in the /wp-content/mu-plugins/
directoryquick-localization.php
:<?php include_once ABSPATH . "wp-content/plugins/quick-localization/index.php"; ?>
_n
and _x
translatons as wellWP_DEBUG
is set to true