Share

LetoDMS (formerly MyDMS)

Subscribe

Translation is not complete

You are viewing a single message from this topic. View all messages.

  1. 2009-09-17 09:08:20 UTC

    in order to translate the words that are still in english, you will have to :

    • identify which php file contains the word ,and replace the word by a call to the function printMLText or getMLText with an argument corresponding to the word
    • check if in languages\English\lang.inc, there is not already this argument declared for this word,

    if yes, check if this argument is written in languages\Spanish\lang.inc

    for example : "Sign In"

    • it is declared in English\lang.inc : $text["login"] = "Sign in";

    • the argument "login" is also already declared in Spanish\lang.inc

    So, you just have to modify out\out.Login.php

    line 23 : replace

     UI::htmlStartPage("Sign In", "login");
    

    by

     UI::htmlStartPage(getMLTest("login"), "login");
    

    line 26 : replace

     UI::pageNavigation("Sign In");
    

    by

     UI::pageNavigation("Sign In");
    

    then apply same principles for all other non-translated words

    I hope this is clear

< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.