1
vote
1answer
78 views

Localizing Wordpress Post Date

I'm currently using the gettext function for translating strings on a wordpress site using po files in many languages. Currently all is working great, except I can't seem to figure out the post date. ...
0
votes
1answer
55 views

Unknown occourance of specific phrase in Wordpress theme PHP files

I have a Wordpress theme, and when I go through the theme, I notice this line hdb-theme. I'm personally confused on what's the importance of this, what does it do, and if it has any effect if I remove ...
0
votes
2answers
66 views

Some clarifications on gettext and i18n functions in wordpress ( or drupal for what it matters )

Let's say i have an array. $less_user_variables = array( "bodyBackground" => array( "value" => "#ffffff", "description" => __( "Body background", AI1EC_PLUGIN_NAME ), ...
1
vote
2answers
43 views

Would writing an adapter for Drupal and Wordpress i18n functions ( __() and t() ) not be compatible with gettext/.pot generation?

I'm writing a wordpress plugin and planning it's drupal implementation i'm wrapping wordpress functions into adapters. So i wrote an adapter for the __() which is simply class ...
0
votes
0answers
64 views

gettext filter for tag delimiter not working

I'm trying to change the tag delimiter in my WordPress theme from a comma to a semicolon, since I want to be able to add names in the format of "Boberson, Bob; Jimmison, Jim; etc." The tag delimiter ...
1
vote
2answers
501 views

Multiple plural forms in gettext()

See this example of _n(); function (http://codex.wordpress.org/Function_Reference/_n): sprintf( _n('%d comment.', '%d comments.', $number, 'text-domain'), $number ); in English: 1 Comment 2 ...
0
votes
1answer
94 views

Wordpress po/mo classes

I am trying to make a simple system with plugin and themes support, but I need translation for them. The file path of languages with /en/LC_MESSAGES is too big and I want simple and it should be put ...
0
votes
1answer
134 views

Gettext fails in translating post type format permalink slug

I'm not that familiar with PHP so far but already succeeded in registring a custom post type. Now I'd like to make the permalink slug of it translatable. My theme already has correctly working ...
0
votes
1answer
213 views

using GetText to translate wordpress using variables instead of default language

I want to make my wordpress theme translation ready. I was thinking to use GetText function within wordpress like: _e('sometext') But I was thinking, what happens when I want to change default ...
0
votes
1answer
157 views

Wordpress gettext bilingual language switching for a theme

When using gettext in Wordpress to create a bilingual theme, do we have to create one .php file for every page twice (English, French)? For example, header.php, header-fr.php, sidebar.php, ...
0
votes
1answer
234 views

wordpress use gettext library for translating pages content

Im using wordpress to build a multilanguage website.I know exist many multilanguage plugins for this purpose.But I don't want to do in this way.There's any work around? could I use gettext library ...
0
votes
0answers
130 views

How to implement pluralization for JavaScript in WordPress plugin?

I'm trying to implement correct plurization (i.e. more than the two used in English) for my WordPress plugin (http://wordpress.org/extend/plugins/countdown-timer/). I have the MO/PO files set up ...
1
vote
2answers
4k views

How to change the value WPLANG in Wordpress by clicking a link (switch language)?

I successfully made files for localization using Gettext (called es.po and es.mo). So far as I know I can change the language by defining the value of WPLANG in wp-config.php (in this case define ...
0
votes
1answer
58 views

Is GNU gettext built in into Wordpress or do I have to download it separately?

Is GNU gettext built in into Wordpress or do I have to download it separately?