babble
babble copied to clipboard
Multilingual WordPress done right.
Hi! I created a custom field with Advanced custom field plugin for post. Field type is Text - simple as it can be. Created a post with this custom field,...
There are a variety of undocumented (or lightly documented) functions and classes - we should flesh out the docblock documentation
We should adhere to WordPress coding styles, particularly with respect to [brackets in conditionals](https://make.wordpress.org/core/handbook/coding-standards/php/#brace-style). This style: ``` php if ( stuff_exists() ) do_a_thing(); ``` Should be: ``` php if (...
I can mark an originating post as being 'Ready for translation' before it is published. When I 'save draft', this creates a job in the Translation section. I can mark...
`Bbl_Comment_Query` was added as https://core.trac.wordpress.org/ticket/19623 had not yet been committed. Now this is in core, we should be able to remove `Bbl_Comment_Query` however I'm not sure of the minimum WordPress...
Are there any planned means of converting a WordPress site with the translated using qtranslate plugin into babble? e.g. WPML has an [importer plugin](http://wordpress.org/extend/plugins/qtranslate-to-wpml-export/). The only other thing that pops...
Just saw the recent updates to Babble, so i've installed in on my test sites. Im getting the following error in the front-end: ``` # Time Memory Function Location 1...
Wherever we have `trigger_error` calls 1. We should ensure the error message is not translated 2. We should swap them to `new Exception` instead of `trigger_error` 3. We should wrap...
Enable media to be translated. I mean 1. galleries present in translated posts should display 2. images caption and title should be translatable
There is an API for specifying what meta keys can be translated, and what UI the translation requires. So you can take a plugin with a whole bunch of meta...