We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 23703
    • 180 Posts
    While translating and referencing the language.inc.php file I found these (possible) duplicates.

    $_lang['about'] = "About MODx";
    $_lang['about_title'] = "About MODx";
    
    $_lang['add'] = "Add group";
    $_lang['add'] = 'Add';
    
    $_lang['not_set'] = "Not set";
    $_lang['notset'] = "Not set";
    
    $_lang['online'] = "Online";
    $_lang['online']="Online";
    
    $_lang['refresh_site'] = "Refresh site";
    $_lang['refresh_title'] = "Refresh site";
    
    $_lang['search'] = "Search";
    $_lang['search'] = "Search";


    • Which lines, by chance and which base file? Thanks!
        Ryan Thrash, MODX Co-Founder
        Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
        • 23703
        • 180 Posts
        They are all in language.inc.php

        61   $_lang['about'] = "About MODx";
        348  $_lang['about_title'] = "About MODx";
        
        583  $_lang['add'] = "Add group";
        998  $_lang['add'] = 'Add';
        
        698  $_lang['not_set'] = "Not set";
        201  $_lang['notset'] = "Not set";
        
        151  $_lang['online'] = "Online";
        1003 $_lang['online']="Online";
        
        24   $_lang['refresh_site'] = "Refresh site";
        344  $_lang['refresh_title'] = "Refresh site";
        
        415  $_lang['search'] = "Search";
        890  $_lang['search'] = "Search";