Wordpress plugins
Automatic Variants for GlotPress

Automatic Variants for GlotPress

Version : 1.0.0
Tested up to : 5.8.2
Number of download : 11
Average rating : 0 / 5 on 0 votes 0 votes, 0 avg.rating

Screenshots

Automatic Variants for GlotPress
Automatic Variants for GlotPress
Automatic Variants for GlotPress
Automatic Variants for GlotPress

This plugin for GlotPress customizes the default behavior of a set of chosen pairs of Locales (root/variant), allowing you to automatically convert the approved/current strings in the root to its variant. Keep the root translations and the variant translations automatically converted and synced in your GlotPress install. Only translations whose conversion are different from the original root translation are added to the variant translation set. The strings that don’t need any conversion remain untranslated on the variant, falling back to the root Locale. This plugin was heavily inspired by the Serbian Latin solution for transliteration of Serbian Cyrillic locale from translate.wordpress.org. Features Filter gp_automatic_variants_list to add your variant to the array of automatically converted variants. Filter gp_automatic_variants_convert_{variant_locale} to process the conversion of strings of the automatic variant. Check for GlotPress minimum requirements. Check if the added Locales are variants supported the installed GlotPress. Convert current root translations and add to the variant translation set. Delete variant unused translations instead of keeping as rejected, fuzzy, old. Delete current variant translation if a new root translation (same original_id) is added and doesn’t need conversion. Install GlotPress Install and activate GlotPress 3.0.0-alpha minimum version. Install and activate this plugin from your plugins page. Configure Automatic Variants for GlotPress Set the variants you want to be automatically converted with the filter gp_automatic_variants_list: /** * Add my automatically converted variants. */ function my_automatic_variants( $locales ) { $additional_locales = array( 'ca-valencia', 'pt-ao90', 'ca-valencia', 'en-gb', 'de-at', 'de-ch', ); return array_merge( $locales, $additional_locales ); } add_filter( 'gp_automatic_variants_list', 'my_automatic_variants' ); Add your Locale actual conversion process with the filter gp_automatic_variants_convert_{variant_locale}: Example for the variant ‘pt-ao90’: /** * Actual conversion of the string. */ function convert_translation( $translation ) { return do_something( $translation ); } add_filter( 'gp_automatic_variants_convert_pt-ao90', 'convert_translation' ); Usage For every translation project, add both root and variant translation sets as usual. Translate only on the root Locale and see the conversions automatically propagate to the variant. Requirements GlotPress 3.0.0-alpha

Download now