This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Quick Localization (Quick Localisation)

Description

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.

Editing Localisation Table

  • Old text
  • New text (optional; empty values will remove the localisation subject)
  • Text domain (allows to target specific plugin or theme “domains”; if set to _ALL_ – it will be applied to all matching text)

Export

  • Allows exporting saved localisation for easy copy-pasting between the sites and backups.
  • This feature also comes handy later when generating actual .PO files.

Import

  • It is possible to import previously saved localisations or just copy them from other WordPress sites.
  • It is possible to empty the localisation database prior to import as well as to choose whether or not to overwrite already existing entries.

Hooks

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.

Translations

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.

Recommendations

Check out our other cool plugins: Feed2Tabs and Links2Tabs.

They go well together like coffee and doughnuts!

About Name.ly

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.

Screenshots

  • Edit page

Installation

As easy, as 1-2-3

  1. Upload quick-localization folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Specify text to translate
  4. Voila!

Usage

Activate the plugin. Settings can be accessed via WP Admin -> Quick Localisation.

Use Edit, Export, and Import pages to manipulate translations.

FAQ

How big can the database be?

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.

Some plugins appear not to be translated, what can be done about it?

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:

  1. Create quick-localization.php in the /wp-content/mu-plugins/ directory
  2. Add the following line into quick-localization.php:
    <?php include_once ABSPATH . "wp-content/plugins/quick-localization/index.php"; ?>
  3. Voila!

Reviews

Read all 3 reviews

Contributors & Developers

“Quick Localization (Quick Localisation)” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

0.1.0

  • Added a note on how to intialise the plugin via MU plugins
  • Now handling _n and _x translatons as well
  • Fixed the issue when addition of multiple new entries failed on the first one

0.0.9

  • Fixed warnings generated when WP_DEBUG is set to true

0.0.8

  • Fixed bulk edit of many items, which did not work above some limit
  • Added individual edit screens

0.0.7

  • Fixed export and import of entries consisting of multiple lines
  • Gathering nag is now shown only to the [super] site admins

0.0.6

  • Fixed the known issue with the class property “new” not working in PHP 5.2 (http://many.at/fixingnewproperty/)

0.0.5

  • Added sorting.
  • Added references to pre-translated import files.
  • Improved data collection resulting in no duplicates.

0.0.4

  • Added Quick Localisation import file.
  • Minor cosmetic changes.

0.0.3

  • Added super-admin mode.
  • Fixed some special strings escaping in textareas.
  • Supported proper localisation of the plugin itself.
  • Fixed minor init issue on some standalone installations.

0.0.2

  • Added settings allowing collecting draft translations.
  • Improved import with stripslashes.

0.0.1

  • Initial version.
  • Created and tested.