~ubuntu-branches/ubuntu/hardy/gnome-mount/hardy

« back to all changes in this revision

Viewing changes to intltool-update.in

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2008-03-05 15:30:46 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080305153046-1m3pthhak9rx6yl7
Tags: 0.8~svn20080225-0ubuntu1
* Update to SVN snapshot:
  - Builds nautilus extension for new nautilus 2.0 ABI now, unbreaking the
    volume/drive properties tabs. (LP: #186196)
  - Applied debian/patches/02_msgbox_unref.patch upstream, removed patch.
  - No other changes.
* debian/patches/ubuntu-default-mount-options.patch: Use 'flush' option for
  vfat. It does not actually work in the current kernel, but at least it's
  there once it will actually do something useful. (LP: #149277)

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
## Release information
32
32
my $PROGRAM = "intltool-update";
33
 
my $VERSION = "0.36.2";
 
33
my $VERSION = "0.37.0";
34
34
my $PACKAGE = "intltool";
35
35
 
36
36
## Loaded modules
334
334
        push @buf_i18n_xml,          "$File::Find::name" if /\.($xml_support)$/;
335
335
        push @buf_i18n_ini,          "$File::Find::name" if /\.($ini_support)$/;
336
336
        push @buf_i18n_xml_unmarked, "$File::Find::name" if /\.(schemas(\.in)+)$/;
337
 
        }, "$SRCDIR/..";
 
337
        }, "$SRCDIR/.." if "$SRCDIR" ne ".";
338
338
 
339
339
    open POTFILES, $POTFILES_in or die "$PROGRAM:  there's no POTFILES.in!\n";
340
340
    @buf_potfiles = grep !/^(#|\s*$)/, <POTFILES>;
434
434
                last;
435
435
            }
436
436
 
437
 
            ## N_ Q_ and _ are the three macros defined in gi8n.h
438
 
            if (/[NQ]?_ *\(QUOTEDTEXT/)
 
437
            ## C_ N_ Q_ and _ are the macros defined in gi8n.h
 
438
            if (/[CNQ]?_ *\(QUOTEDTEXT/)
439
439
            {
440
440
                if (defined isNotValidMissing (unpack("x3 A*", $file))) {
441
441
                    ## Remove the first 3 chars and add newline
777
777
    my $XGETTEXT_KEYWORDS = &FindPOTKeywords;
778
778
    push @xgettext_argument, $XGETTEXT_KEYWORDS;
779
779
    my $MSGID_BUGS_ADDRESS = &FindMakevarsBugAddress;
780
 
    push @xgettext_argument, "--msgid-bugs-address\=$MSGID_BUGS_ADDRESS" if $MSGID_BUGS_ADDRESS;
 
780
    push @xgettext_argument, "--msgid-bugs-address\=\"$MSGID_BUGS_ADDRESS\"" if $MSGID_BUGS_ADDRESS;
781
781
    push @xgettext_argument, "--from-code\=$encoding" if ($gettext_support_nonascii);
782
782
    push @xgettext_argument, $XGETTEXT_ARGS if $XGETTEXT_ARGS;
783
783
    my $xgettext_command = join ' ', @xgettext_argument;