-
AuthorPosts
-
hcharly Friend
hcharly
- Join date:
- April 2008
- Posts:
- 107
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 14
- Thanked:
- 11 times in 1 posts
March 21, 2011 at 8:10 am #161719Hello All,
I can’t find any Joomfish contentelements for “Voice Types”, “Status” and “Forums”.
So my question, how to translate these items?Thanks and Regards.
-Charlesnghiatd Friend
nghiatd
- Join date:
- October 2009
- Posts:
- 324
- Downloads:
- 0
- Uploads:
- 8
- Thanks:
- 7
- Thanked:
- 39 times in 37 posts
March 22, 2011 at 4:11 am #382611Hello,
Please download “JA Voice Joomfish J15” to use in “Add-ons” category of javoice.
http://www.joomlart.com/forums/downloads.php?do=cat&id=141
We created it for javoice to use with joomfish.Best Regards.
hcharly Friend
hcharly
- Join date:
- April 2008
- Posts:
- 107
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 14
- Thanked:
- 11 times in 1 posts
March 23, 2011 at 7:04 am #382828<em>@nghiatd 229315 wrote:</em><blockquote>Hello,
Please download “JA Voice Joomfish J15” to use in “Add-ons” category of javoice.
http://www.joomlart.com/forums/downloads.php?do=cat&id=141
We created it for javoice to use with joomfish.</blockquote>Thanks for your reactivity. That’s nice.
Have a good day.
-Charleshcharly Friend
hcharly
- Join date:
- April 2008
- Posts:
- 107
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 14
- Thanked:
- 11 times in 1 posts
March 28, 2011 at 7:26 am #383585Hello Nghiatd,
After installing the jf contentelements for Ja Voice, the JaVoice’s widget has stopped working for my Default Language which is not en-GB. Please see attachment.
1- JF translation screen overflowed. Fix -> in jav_voice_types.xml set length=”50″ for all titletext field type.
2- In the joomfish translation screen, Instead of “Voice type Title”, “language_response” is displayed for translation. That makes it impossible to translate Voice Types.
3- I gave a look at translationJVvoiceTypes.php. It’s querying “jav_voice_types” table but returning $locationList which seems not unique. Is that the problem?May someone give it a look?
That’s an emergency case, since the project is planned to be online in a few days.In advance, thanks.
-CharlesMy context is localhost:
Apache 2.2.10
PHP 5.2.14
Mysql 5.0.67
Joomla 1.5.22
Template JA_Communuty_Plus
Job Board Installed
Ja_Voice. 1.4.1 (updated to 1.4.3 with the same result. Actually rolled back to 1.4.1)
hcharly Friend
hcharly
- Join date:
- April 2008
- Posts:
- 107
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 14
- Thanked:
- 11 times in 1 posts
March 30, 2011 at 7:16 pm #384146I am a little surprised by your silence.
What next?
-CharlesSherlock Friend
Sherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
March 31, 2011 at 2:07 am #384175Dear hcharly,
You can provide me your url,the admin account as well as the FTP Info into the ticket of UEX-759-85855 I will have a further checking for you.
Sherlock Friend
Sherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
April 4, 2011 at 8:07 am #384730Dear hcharly,
You can try as below
Open the file of administratorcomponentscom_joomfishcontentelementsjav_voice_types.xml you would see this<field type=”referenceid” name=”id” translate=”0″>ID</field>
<field type=”titletext” name=”title” length=”256″ maxlength=”256″ translate=”1″>Title</field>
<field type=”textarea” name=”description” rows=”10″ columns=”80″ translate=”1″>Description</field>
<field type=”titletext” name=”search_title” length=”255″ maxlength=”255″ translate=”1″>Search Title</field>
<field type=”textarea” name=”search_description” rows=”10″ columns=”80″ translate=”1″>Search Description</field>
<field type=”titletext” name=”search_button” length=”255″ maxlength=”255″ translate=”1″>Search Button</field>
<field type=”titletext” name=”language_response” length=”525″ maxlength=”525″ translate=”1″>Language Response</field>change it to
<field type=”referenceid” name=”id” translate=”0″>ID</field>
<field type=”titletext” name=”title” length=”256″ maxlength=”256″ translate=”1″>Title</field>
<field type=”textarea” name=”description” rows=”10″ columns=”80″ translate=”1″>Description</field>
<field type=”text” name=”search_title” length=”255″ maxlength=”255″ translate=”1″>Search Title</field>
<field type=”textarea” name=”search_description” rows=”10″ columns=”80″ translate=”1″>Search Description</field>
<field type=”text” name=”search_button” length=”255″ maxlength=”255″ translate=”1″>Search Button</field>
<field type=”text” name=”language_response” length=”525″ maxlength=”525″ translate=”1″>Language Response</field>then open the file jav_voice_type_status.xml change this
<field type=”referenceid” name=”id” translate=”0″>ID</field>
<field type=”titletext” name=”title” length=”50″ maxlength=”256″ translate=”1″>Title</field>
<field type=”titletext” name=”name” length=”50″ maxlength=”125″ translate=”1″>Name</field>To
<field type=”referenceid” name=”id” translate=”0″>ID</field>
<field type=”titletext” name=”title” length=”50″ maxlength=”256″ translate=”1″>Title</field>
<field type=”text” name=”name” length=”50″ maxlength=”125″ translate=”1″>Name</field>Please try and confirm if these changes help.
1 user says Thank You to Sherlock for this useful post
hcharly Friend
hcharly
- Join date:
- April 2008
- Posts:
- 107
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 14
- Thanked:
- 11 times in 1 posts
April 4, 2011 at 4:49 pm #384819Thanks to Dat Hoang Quoc.
That fixed the problem.All Best.
-CharlesAuthorPostsViewing 8 posts - 1 through 8 (of 8 total)This topic contains 8 replies, has 3 voices, and was last updated by
hcharly 13 years, 10 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
How to translate "Voice Types", "Status" and "Forums"
Viewing 8 posts - 1 through 8 (of 8 total)
