The tag has no wiki summary.

learn more… | top users | synonyms (2)

1
vote
3answers
65 views

Plugin for single language localisation

I have found dozens of plugins which helps you to translate a Wordpress website into different languages. However, I cannot find anything that would help me localise Wordpress for different regions, ...
3
votes
2answers
109 views

Running WP Cron on specific local time

The scenario is to run insert_post function every midnight (00:00) of local time. Must run daily on weekday. function add_daily_task(){ if((date('l', time()) != 'Saturday') || (date('l', time()) ...
1
vote
2answers
92 views

How to prepare SimplePie_Item's get_date() for l10n?

I'm trying to improve the localization of the Bones theme. On the admin side it provides an RSS widget which uses the following code: <?php echo $item->get_date('j F Y @ g:i a'); ?> ...
2
votes
1answer
241 views

Adding another arg to comments_popup_link

what WordPress core functions do I have to modify to change comments_popup_link('Ni komentarjev', '1 komentar','% komentarjev') to comments_popup_link('Ni komentarjev', '1 komentar', **'2 ...
1
vote
1answer
27 views

Text Domains Across Multiple Plugins & Themes

A common situation: a developer builds an entire site, based on WordPress, of course, for a client. This site includes many custom plugins as well as a custom theme -- maybe another theme or a child ...
0
votes
1answer
33 views

How to create some sort of word mapping?

I would like to know how I could create a file in which I could associate a word in multiple languages. Let's make an example in XML: <item key="goodMorning> <copy lang="en">Good ...
0
votes
1answer
25 views

What are these variables and where are they documented?

This is in the twentyeleven theme. Can somebody tell me what this is? <span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ) ^^^^ ^^^^ My best ...
0
votes
1answer
53 views

Tool bar in editor missing in WP

I am having somewhat amazing problem. My client is in sweden. When I check the site from my country (Nepal), everything is fine. But tool in editor in wordpress panel is missing in sweden. I checked ...
-1
votes
1answer
1k views

WPML - How to get posts from category according to language?

My client uses WPML to translate their content posts. I am finalizing the adaptation of their WordPress project, and I am faced with an issue where I can only retrieve posts in the base language, ...
2
votes
0answers
56 views

Singular name Plugin localization

I'm trying to localize the singular name of a custom post type. ... 'singular_name' => __('key', 'plugindomain') ... I created a .po and compiled it as .mo. I also loaded the translation using ...
1
vote
0answers
37 views

Wordpress Localization and Templating

I'm using Smarty Templates for the back-end and Handlebars for the front-end for the plugin that I'm building. It's only now that I discovered that the localization doesn't work when I declare my ...
1
vote
0answers
53 views

Wordpress translation loading english file

I am trying to translate a wordpress site but whatever I do the english file is always loaded. In functions.php I've set load_theme_textdomain('twentyeleven', get_template_directory() . ...
0
votes
0answers
24 views

How do I override a parent theme's language files with a child theme?

I have a parent theme and a child theme, I would like to override the spanish .mo and .po files in the parent theme (or add them if they are not present in the parent theme) with the es_ES ones in my ...
0
votes
0answers
31 views

Backend in English and Frontend in Defined Language

I need to translate just dates and days of the week to the custom language in the frontend, but keep the backend admin panel in English. Can I simply remove all unnecessary strings from the default ...
0
votes
0answers
11 views

Customizing existing translation

We'd like to customize some language strings for our Wordpress installation. The goal is not one of translation but of customization; we want to use vocabulary which is already in use within the ...