/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/window.py

  • Committer: Jasper Groenewegen
  • Author(s): Didier Roche
  • Date: 2008-08-06 14:25:18 UTC
  • mto: This revision was merged to the branch mainline in revision 598.
  • Revision ID: colbrac@xs4all.nl-20080806142518-q0nl17asx0om341z
Change Olive desktop file details

Show diffs side-by-side

added added

removed removed

Lines of Context:
281
281
        self.tb_refresh_icon.set_from_file(icon_path("refresh.png"))
282
282
        self.tb_refresh = gtk.ToolButton(self.tb_refresh_icon, _i18n("Refresh"))
283
283
        self.tb_refresh.connect('clicked', self.signal.on_menuitem_view_refresh_activate)
284
 
        self.tb_refresh.set_tooltip_text(_i18n("Refresh the file list"))
285
 
        self.tb_refresh.set_is_important(True)
286
284
        self.tb.add(self.tb_refresh)
287
285
        
288
286
        self.tb_diff_icon = gtk.Image()
289
287
        self.tb_diff_icon.set_from_file(icon_path("diff.png"))
290
288
        self.tb_diff = gtk.ToolButton(self.tb_diff_icon, _i18n("Diff"))
291
289
        self.tb_diff.connect('clicked', self.signal.on_menuitem_stats_diff_activate)
292
 
        self.tb_diff.set_tooltip_text(_i18n("View changes since last commit"))
293
290
        self.tb.add(self.tb_diff)
294
291
        
295
292
        self.tb_log_icon = gtk.Image()
296
293
        self.tb_log_icon.set_from_file(icon_path("log.png"))
297
294
        self.tb_log = gtk.ToolButton(self.tb_log_icon, _i18n("Log"))
298
295
        self.tb_log.connect('clicked', self.signal.on_menuitem_stats_log_activate)
299
 
        self.tb_log.set_tooltip_text(_i18n("View the revision history"))
300
296
        self.tb.add(self.tb_log)
301
297
        
302
298
        self.tb.add(gtk.SeparatorToolItem())
305
301
        self.tb_commit_icon.set_from_file(icon_path("commit.png"))
306
302
        self.tb_commit = gtk.ToolButton(self.tb_commit_icon, _i18n("Commit"))
307
303
        self.tb_commit.connect('clicked', self.signal.on_menuitem_branch_commit_activate)
308
 
        self.tb_commit.set_tooltip_text(_i18n("Commit changes to the current branch"))
309
 
        self.tb_commit.set_is_important(True)
310
304
        self.tb.add(self.tb_commit)
311
305
        
312
306
        self.tb.add(gtk.SeparatorToolItem())
315
309
        self.tb_pull_icon.set_from_file(icon_path("pull.png"))
316
310
        self.tb_pull = gtk.ToolButton(self.tb_pull_icon, _i18n("Pull"))
317
311
        self.tb_pull.connect('clicked', self.signal.on_menuitem_branch_pull_activate)
318
 
        self.tb_pull.set_tooltip_text(_i18n("Pull changes from the parent branch"))
319
312
        self.tb.add(self.tb_pull)
320
313
        
321
314
        self.tb_push_icon = gtk.Image()
322
315
        self.tb_push_icon.set_from_file(icon_path("push.png"))
323
316
        self.tb_push = gtk.ToolButton(self.tb_push_icon, _i18n("Push"))
324
317
        self.tb_push.connect('clicked', self.signal.on_menuitem_branch_push_activate)
325
 
        self.tb_push.set_tooltip_text(_i18n("Push the branch to a remote location"))
326
318
        self.tb.add(self.tb_push)
327
319
        
328
320
        self.tb_update_icon = gtk.Image()
329
321
        self.tb_update_icon.set_from_file(icon_path("pull.png"))
330
322
        self.tb_update = gtk.ToolButton(self.tb_update_icon, _i18n("Update"))
331
323
        self.tb_update.connect('clicked', self.signal.on_menuitem_branch_update_activate)
332
 
        self.tb_update.set_tooltip_text(_i18n("Update the working tree"))
333
324
        self.tb.add(self.tb_update)
334
325
    
335
326
    def _create_locationbar(self):