Not signed in (Sign In)
Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.
  1.  
    Hi!

    I'm trying to build a multilingual version of jobberBase and first I looked into the translations.ini. This was ok but I needed also a translation for the category names which are stored in the database and they are not translatable trough translations.ini.
    What would be the best way to accomplish this?
    Is this feature included in the roadmap?
    • CommentAuthorflakdesign
    • CommentTimeApr 22nd 2008
     
    Login to admin panel and change the category names ;)
  2.  
    I'm trying to support both languages (EN,RO) at once, switching the user interface by clicking on a link. I don't think this can be solved trough the admin interface.
    • CommentAuthorflakdesign
    • CommentTimeApr 22nd 2008
     
    You can do it without modifying the Db table.

    <a href="{categoryname}">{categoryname_from_translationfile}</a>

    regards
    vinay
    • CommentAuthorcocopapa
    • CommentTimeMay 17th 2008
     

    Hi this isn’t working

    Where do you inserted this line and what is the exact syntax

    Shouldn’t it be
    <a href=”{$categoryname}”>{$categoryname_from_translationfile}</a>

    or even
    <li><a>”{$BASE_URL}English/” title=”{$categoryname}”>{$categoryname_en }</a></li>
    <li><a>”{$BASE_URL}English/” title=”{$categoryname}”>{$categoryname_ro }</a></li>
    ...