Ad Widget

Collapse

Something missing when I add a new theme

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hiacine
    Junior Member
    • May 2009
    • 18

    #1

    Something missing when I add a new theme

    Hi,

    I try to make a new theme.


    I changed this in the forms.inc.php file :
    Code:
    $cmbTheme = new CComboBox('theme',$theme);
                $cmbTheme->AddItem(ZBX_DEFAULT_CSS,S_SYSTEM_DEFAULT);
                $cmbTheme->AddItem('css_ob.css',S_ORIGINAL_BLUE);
                $cmbTheme->AddItem('css_bb.css',S_BLACK_AND_BLUE);
                $cmbTheme->AddItem('css_hgh.css',S_APPLI_NOT);
    twice

    I created a new file called css_hgh.css from css_bb.css
    wich is in styles directory

    But my problem is that S_APPLI_NOT is not recognized.

    Where are store those informations :
    S_ORIGINAL_BLUE = Original blue
    S_BLACK_AND_BLUE = Black & blue

    I think I must add mine ?
    Attached Files
  • pesadilla
    Member
    • Nov 2006
    • 69

    #2
    include/locales/en_gb.inc.php: 'S_ORIGINAL_BLUE'=> 'Original blue',
    include/locales/de_de.inc.php: 'S_ORIGINAL_BLUE'=> 'Originalblau',
    include/locales/ru_ru.inc.php: 'S_ORIGINAL_BLUE'=> 'ÐÑОгОМалÑÐœÐ°Ñ ÑОМÑÑ',
    include/locales/pl_pl.inc.php: 'S_ORIGINAL_BLUE'=> 'Pierwotny bÅÄkit',

    Comment

    • hiacine
      Junior Member
      • May 2009
      • 18

      #3
      Ok thanks,

      I'll try this afternoonn at home

      Comment

      • hiacine
        Junior Member
        • May 2009
        • 18

        #4
        Works fine,

        thanks pesadilla

        Comment

        Working...