Joomfish translations not appearing

16 years 3 weeks ago #59907 by markcoxx
Replied by markcoxx on topic Re:Joomfish translations not appearing
have you find a solution?
same probleme for the custom fields in registration page & intro text in registration page
I 've found somthing call 3rd party plugin for community builder : content elements on joomfish but after the installation I didnt find where to translate this fields..

Please Log in to join the conversation.

16 years 3 weeks ago #59989 by markcoxx
Replied by markcoxx on topic Re:Joomfish translations not appearing
Hello
It wirks for the name of a field that I created in the registration page.
But how to change the desctiption txt ?(

Description/"i" field-tip: text or HTML:

)
And how to change the different value of a select field?

I have a field called "select your style" and its a select with different values. How to change them too?

thanks

Please Log in to join the conversation.

16 years 3 weeks ago #59995 by markcoxx
Replied by markcoxx on topic [SOLVED]Re:Joomfish translations not appearing
markcoxx wrote:

Hello
It wirks for the name of a field that I created in the registration page.
But how to change the desctiption txt ?(

Description/"i" field-tip: text or HTML:

)
And how to change the different value of a select field?

I have a field called "select your style" and its a select with different values. How to change them too?

thanks

Ok I found all what I want!

So for people looking on this probs
All is in the language files.you have to enter your own variable @ the end of this file.
ex.
in my language file.php I have add:
[code:1]DEFINE('UE_cb_pays','Country');
DEFINE('UE_cb_pays_desc','Select your Country');[/code:1]
and in the fields configuration (in the cb panel fileds manager)I enter the var so for title : UE_cb_pays
for the desc : UE_cb_pays_desc

Its also work for the select value using the same way
thans

Please Log in to join the conversation.

15 years 9 months ago #66583 by msquihuis
Replied by msquihuis on topic Re:Joomfish translations not appearing
I added the DEFINE statemetns to my default.php and spanish.php files and when I change the tab on the backend to _UE_USER_whatever, it appears correctly. When I look on the front end - I see _UE_USER_whatever instead of the correct label. This is for English or Spanish.

//User defined fields

DEFINE ('_UE_USER_cb_aboutme', 'About Me');
DEFINE ('_UE_USER_cb_preferredlanguage', 'Preferred Language');
DEFINE ('_UE_USER_cb_doyoudrink', 'Do You Drink?');
DEFINE ('_UE_USER_cb_doyousmoke', 'Do You Smoke?');
DEFINE ('_UE_USER_cb_maritalstatus', 'In a relationship?');
DEFINE ('_UE_USER_cb_children', 'Do you have children?');
DEFINE ('_UE_USER_cb_numchildren', 'Number of children');
DEFINE ('_UE_USER_cb_books', 'Books');
DEFINE ('_UE_USER_cb_gender', 'Gender');
DEFINE ('_UE_USER_cb_music', 'Music');
DEFINE ('_UE_USER_cb_movies', 'Movies');
DEFINE ('_UE_USER_cb_television', 'Television');
DEFINE ('_UE_USER_cb_educationalelvel', 'Education');
DEFINE ('_UE_USER_cb_school', 'School 1');
DEFINE ('_UE_USER_cb_secondschool', 'School 2');
DEFINE ('_UE_USER_cb_thirdschool', 'School 3');
DEFINE ('_UE_USER_cb_homecountry', 'Country your family is originally from');
DEFINE ('_UE_USER_cb_statemexico', 'What part of Mexico?');
DEFINE ('_UE_USER_cb_hometown', 'What town in Mexico?');
DEFINE ('_UE_USER_cb_townus', 'What town do you live in now?');

//user tabs
DEFINE ('_UE_USER_ABOUTME', 'About Me');
DEFINE ('_UE_USER_EDUCATION', 'Education');
DEFINE ('_UE_USER_PROFESSION', 'My Profession');
DEFINE ('_UE_USER_MYPHOTOS', 'My Photos');
DEFINE ('_UE_USER_MYVIDEOS', 'My Videos');
DEFINE ('_UE_USER_GUESTBOOK', 'Guest Book');
DEFINE ('_UE_USER_MYEVENTS', 'My Events');
DEFINE ('_UE_USER_MYBLOG', 'My Blog');
DEFINE ('_UE_USER_MYGROUP', 'My Groups');

to Spanish.php file:


DEFINE ('_UE_USER_cb_aboutme', 'Acerca de mi');
DEFINE ('_UE_USER_cb_preferredlanguage', 'Lenguaje preferido');
DEFINE ('_UE_USER_cb_doyoudrink', 'Do You Drink?');
DEFINE ('_UE_USER_cb_doyousmoke', 'Do You Smoke?');
DEFINE ('_UE_USER_cb_maritalstatus', 'Estado Civil');
DEFINE ('_UE_USER_cb_children', '¿Hijos?');
DEFINE ('_UE_USER_cb_numchildren', 'Number of children');
DEFINE ('_UE_USER_cb_books', 'Libros');
DEFINE ('_UE_USER_cb_gender', 'Sexo');
DEFINE ('_UE_USER_cb_music', 'Música');
DEFINE ('_UE_USER_cb_movies', 'Películas');
DEFINE ('_UE_USER_cb_television', 'Novelas y TV');
DEFINE ('_UE_USER_cb_educationalelvel', 'Educación');
DEFINE ('_UE_USER_cb_school', 'Colegio 1');
DEFINE ('_UE_USER_cb_secondschool', 'Colegio 2');
DEFINE ('_UE_USER_cb_thirdschool', 'Colegio 3');
DEFINE ('_UE_USER_cb_homecountry', 'País del que mi famila es originaria');
DEFINE ('_UE_USER_cb_statemexico', '¿Que parte de México?');
DEFINE ('_UE_USER_cb_hometown', '¿Qué pueblo en México?');
DEFINE ('_UE_USER_cb_townus', 'Pueblo en el que vivo');

//user tabs
DEFINE ('_UE_USER_ABOUTME', 'Acerca de mi');
DEFINE ('_UE_USER_EDUCATION', 'Educación');
DEFINE ('_UE_USER_PROFESSION', 'Mi Profesión');
DEFINE ('_UE_USER_MYPHOTOS', 'Mis Fotos');
DEFINE ('_UE_USER_MYVIDEOS', 'Mis Videos');
DEFINE ('_UE_USER_GUESTBOOK', 'Guest Book');
DEFINE ('_UE_USER_MYEVENTS', 'Mis Eventos');
DEFINE ('_UE_USER_MYBLOG', 'Mi Blog');
DEFINE ('_UE_USER_MYGROUP', 'Mis Grupos');

Please Log in to join the conversation.

15 years 9 months ago #66584 by msquihuis
Replied by msquihuis on topic Re:Joomfish translations not appearing
Forgot to mention:
CB 1.2RC
Joomfish 1.8.2

(Needless to say, translating the CB stuff in Joomfish isn't working either)

Please Log in to join the conversation.

15 years 9 months ago #67342 by samyad
Replied by samyad on topic Re:Joomfish translations not appearing
Hello,

We have managed to make Tabs, Fields and Field Values translatable thru Joomfish. please write to us at samrat dot yadav at gmail dot com for the solution.

thanks
sam

[Edit by Mod Rapunzl: Sam, if this is a free offering, please post it here for the community to benefit. If it is a commercial offering, this is against the forum rules and should be removed or placed in the 3PD area. Please edit your post accordingly. Thanks!]

Post edited by: Rapunzl, at: 2009/02/19 02:41

Sam
Chief Architect
www.tradebooster.com

Custom Joomla Solutions. Write to us at info@tradebooster.com

Please Log in to join the conversation.

Moderators: beatnantkrileon
Time to create page: 0.259 seconds

Facebook Twitter LinkedIn