~ubuntu-branches/ubuntu/karmic/photoprint/karmic

« back to all changes in this revision

Viewing changes to pp_scaling.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Milan Zamazal
  • Date: 2007-05-01 16:32:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070501163213-ni1933khtg9fdvn5
Tags: 0.3.5-2
Move to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "pp_scaling.h"
24
24
#include "dialogs.h"
25
25
 
 
26
#include "config.h"
 
27
#include "gettext.h"
 
28
#define _(x) gettext(x)
 
29
 
26
30
#include "imagesource/imagesource_util.h"
27
31
 
28
32
enum {
65
69
        gtk_box_pack_start(GTK_BOX(ob),hbox,TRUE,TRUE,0);
66
70
        gtk_widget_show(hbox);
67
71
 
68
 
        label=gtk_label_new("Algorithm:");
 
72
        label=gtk_label_new(_("Algorithm:"));
69
73
        gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,0);
70
74
        gtk_widget_show(label);
71
75