This page is to track all transalations for CartoGraf
{CODE(caption="lang/en/custom.php")}<?php
$lang_custom = array(
//"Hello"=>"My Hello",
//"This is the place to customize your translation"=>":-)",
"Layer Selector" => "Collaborators",
);
$lang = $lang_custom + $lang;
{CODE}
And add the following to lang/en/language.js (would be better to have lang/en/custom.js)
{CODE()}"Editable" : "Me",
"Finder" : "Author",{CODE}
{CODE(caption="lang/fr/custom.php")}<?php
$lang_custom = array(
//"Hello"=>"My Hello",
//"This is the place to customize your translation"=>":-)",
"Layer Selector" => "Collaborateurs",
);
$lang = $lang_custom + $lang;
{CODE}
And add the following to lang/fr/language.js (would be better to have lang/en/custom.js)
{CODE()}"Editable" : "Moi",
"Finder" : "Auteur",{CODE}