Problem is that events callendar is inited before qtranslate, Tribe__Events__Main::instance() :
// let's initialize tec silly-early to avoid fatals with upgrades from 3.x to 4.x
add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ), 0 );
simple hack was to create a plugin named 1fix with code:
add_action( 'plugins_loaded', '__fix_tribe_init', 0 );
function __fix_tribe_init(){
global $locale;
if(preg_match('/^\/ru\//',$_SERVER['REQUEST_URI'])) {
$locale="ru_RU";
}
}
that completely solved my problem
Related Posts:
- How to Translate Contact Form 7 using qTranslate? [closed]
- Should I include colon in my msgid in PO file?
- WordPress translation loading english file
- Custom theme .mo translation file not working
- Override default WordPress core translation
- Translate widget titles using qTranslate plugin
- How to debug failed load_theme_textdomain()?
- How to escape the single quote character in i18n translation strings?
- How do translated, escaped strings (esc_attr) in Themes work?
- Changing the language of a single page
- what’s different between _x() and _()
- Obtain a list of available translations
- How do I translate: “2 hours and 15 minutes”?
- Titles in my sidebar widget appear in all languages – with qtranslate
- How to escape single and plural i18n text strings?
- List of Default Translated Phrases
- What are the most used WordPress localization?
- How to add extra language packs to WordPress
- load_plugin_textdomain in `plugins_loaded` or `init`?
- Difference between 2 internationalization (i18n) functions __() & _e()
- How to extract translatable (double underscores and _e) strings?
- Translate Navigation Menu & Sidebar Widget Titles
- Translate content, not instance, per-post
- Custom values are not translated
- How to load theme textdomain from plugin?
- Plugin translations problem
- How to handle single quote in a translatable string in WordPress
- Make theme translatable for WPML
- How can I make “Leave a comment” translation ready?
- Multiple text-domains per single plugin – admin and frontend
- Where the WordPress Core Translation is “actually” taking place?
- How to translate theme name
- Using polylang, how can I see which post is the “original” and which are the “translated children”? [closed]
- Use WordPress default text domain for translating labels
- Where is the right .mo file inside the language repository?
- setlocale for date
- where to set the PO file for a plugin?
- Replacing strings within posts with the translatable string
- Creating a custom multilingual form
- Replace text string on individual page
- Change template copy with po/mo files
- How to syntax Json output for translation?
- Translating a word with locotranslate, but wordpress does display another by default
- Can’t generate pot file using wp cli
- How do I translate month names in post metadata?
- How to avoid override string by child theme mo files when the string is empty?
- How to translate timestamp?
- Add a string to file .pot using Poedit
- Use the wp-admin translations on the front end
- Translatable Categories
- Force translated language on front
- Translate theme only
- what’s different between _x() and _()
- How can I see my theme’s text domain?
- WordPress Theme .mo-file won’t load
- Translation for plugin
- How to become a translator on wordpress.org?
- WordPress Translation Issue
- Localization, escape html elements mid-sentence
- How to translate “$before” with get text in get_the_term_list?
- Translation with wordpress what does the process involve?
- Found a translation function that is missing a text-domain. Function _n
- How to translate custom Divi module using POEDIT and Polylang [closed]
- Can I set WordPress to display languages based on system language without a plugin?
- Can the qTranslateX-Plugin translate non-article text? [closed]
- How to add a translatable string to post date
- Trying to localize a Underscores starter theme [duplicate]
- How to use esc_attr__ with custom translation function?
- Programmatically choose language for translation
- Post types translation
- mo / po translation files does not seem to work
- How to define theme translation file?
- qTranslate 2.5.28 and WordPress 3.3.1 issues [closed]
- Internationalize plugin so strings can be translated in WPML [closed]
- String translation for esc_html__() when registering string [closed]
- Making WP theme / plugin multii-lingual without plugins
- __() function inside html tags
- How to do translations in WordPress?
- printf, translation function and date_i18n adds extra characters
- Qtranslate-X get raw post title value
- Interface translation without plugins
- WordPress does not translate
- Debug WordPress gettext function
- issue in translating a wordpress them
- Understanding WordPress Default Theme – twentyfifteen.1.4 >> Languages Folder
- WordPress Localization error within return value
- Plugin translation not displaying
- Adding a translation phrase to WordPress Theme
- Language & translation
- GlotPress – WordPress integration
- How to translate placeholder?
- Archive widget numbers translation?
- Poedit ASCII errors ( WordPress )
- Does WPML translate numbers automatically, or do I have to do the string translation? [closed]
- Translations in source code
- WPML & Events Manager translatable fields after duplication
- Theme translation file translating some strings and not translating others
- How to find posts that are missing translation? (wpml)
- Translate via URL parameter working only in localhost
- .po file is loaded but changes are not appearing