~helene-verhaeghe27/cairo-dock-core/bugfix

« back to all changes in this revision

Viewing changes to src/cairo-dock-gui-manager.c

  • Committer: fabounet
  • Date: 2010-03-14 02:21:34 UTC
  • mfrom: (503.1.10 cairo-dock-core2)
  • Revision ID: fabounet03@gmail.com-20100314022134-1you24295vgludts
the Core can now be compiled with cmake : cmake CMakeLists.txt  -DCMAKE_INSTALL_PREFIX=/usr

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <glib/gstdio.h>
25
25
#include <glib/gi18n.h>
26
26
 
 
27
#include "../config.h"
27
28
#include "cairo-dock-struct.h"
28
29
#include "cairo-dock-modules.h"
29
30
#include "cairo-dock-log.h"
661
662
{
662
663
        GtkWidget *pSwitchButton = gtk_button_new_with_label (s_bAdvancedMode ? _("Simple Mode") : _("Advanced Mode"));
663
664
        if (!s_bAdvancedMode)
664
 
                gtk_widget_set_tooltip_text (pSwitchButton, _("The advanced mode lets you tweak every single parameter of the dock. It is a powerful tool to customize your current theme."));
 
665
                gtk_widget_set_tooltip_text (pSwitchButton, _("The advanced mode lets you tweak every single parameter of the dock. It is a powerful tool to customise your current theme."));
665
666
        
666
667
        GtkWidget *pImage = gtk_image_new_from_stock (GTK_STOCK_JUMP_TO, GTK_ICON_SIZE_BUTTON);
667
668
        gtk_button_set_image (GTK_BUTTON (pSwitchButton), pImage);