nautilus/check-strings.pl
Darin Adler 236d21ff22 reviewed by: John Sullivan <sullivan@eazel.com>
Found and fixed as many untranslated things as possible. John
	Sullivan found them and I fixed them. This takes care of much of
	bug 6977.

	* check-strings-functions:
	* check-strings-patterns:
	More things to ignore and fixes to bad patterns done while John
	and I did our pass over all the code.

	* check-strings.pl: Fix comment.

	* applets/preferences-applet/nautilus-preferences-applet.c: (main):
	* components/hardware/nautilus-hardware-view.c: (setup_CPU_form),
	(setup_RAM_form), (setup_IDE_form):
	* components/rpmview/nautilus-rpm-verify-window.c:
	(nautilus_rpm_verify_window_initialize):
	* components/services/inventory-view/nautilus-inventory-config-page.c:
	(nautilus_inventory_config_page_initialize),
	(nautilus_inventory_config_page_destroy):
	* components/services/inventory-view/nautilus-inventory-disable-page.c:
	(nautilus_inventory_disable_page_initialize):
	* helper-utilities/authenticate/nautilus-authenticate.c: (main):
	* libnautilus-extensions/nautilus-password-dialog.c:
	(nautilus_password_dialog_new):
	* libnautilus-extensions/nautilus-program-chooser.c:
	(nautilus_program_chooser_show_no_choices_message):
	Mark additional strings for translation.

	* components/adapter/nautilus-adapter-embed-strategy.c:
	(nautilus_adapter_embed_strategy_initialize_class): Fix misspelling
	of signal names.

	* components/services/install/lib/eazel-package-system-rpm3.c:
	(rpmmonitorpiggybag_new): Fix a typo.
	* components/services/install/lib/eazel-softcat.c:
	(eazel_softcat_error_string): Write comment about why these strings
	don't need translation.

	* libnautilus-extensions/nautilus-gtk-extensions.c: Tweak formatting.

	* libnautilus-extensions/nautilus-preferences-dialog.c:
	(nautilus_preferences_dialog_construct): Use stock button instead of
	hard-coded OK for translation purposes.
2001-03-01 02:27:32 +00:00

172 lines
4.7 KiB
Perl
Executable file

#!/usr/bin/perl -w
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# Nautilus
#
# Copyright (C) 2000, 2001 Eazel, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this library; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Author: Darin Adler <darin@eazel.com>,
#
# check-strings.pl: Search for .c and .h files where someone forgot
# to put _() around a string.
# Throughout this file you will find extra \ before quote symbols
# that perl does not require. These are to appease emacs perl mode.
use diagnostics;
use strict;
# default to all the files starting from the current directory
if (!@ARGV)
{
@ARGV = `find . \\( -name '*.c' -o -name '*.h' \\) -print`;
}
sub found_string;
# read in file with functions for which no translation is needed
my @no_translation_needed_functions;
open FUNCTIONS, "check-strings-functions" or die "can't open functions file";
while (<FUNCTIONS>)
{
chomp;
s/(([^\\]|\\.)*)\#.*/$1/;
s/\s*$//;
next if /^$/;
push @no_translation_needed_functions, $_;
}
close FUNCTIONS;
my $no_translation_needed_function_pattern = "^(" . (join "|", @no_translation_needed_functions) . ")\$";
# read in file with patterns for which no translation is needed
my @no_translation_needed_patterns;
open STRINGS, "check-strings-patterns" or die "can't open patterns file";
while (<STRINGS>)
{
chomp;
s/(([^\\]|\\.)*)\#.*/$1/;
s/\s*$//;
next if /^$/;
my ($string_pattern, $file_name_pattern) = /(.+?)\s*\|\|\|\s*(.+)/;
$string_pattern ||= $_;
$file_name_pattern ||= ".";
push @no_translation_needed_patterns, [$string_pattern, $file_name_pattern];
}
close STRINGS;
FILE: foreach my $file (@ARGV)
{
chomp $file;
open FILE, $file or die "can't open $file";
my $in_comment = 0;
my $string = "";
my $last_word;
my @stack = ();
my $paren_level = 0;
my $in_exception_function = 0;
LINE: while (<FILE>)
{
if ($in_comment)
{
s/.*?\*\/// or next LINE;
$in_comment = 0;
}
# general approach is to just remove things we aren't interested in
next LINE if /^\s*#\s*(\d|include)/;
while (s/(((.*?)(\/\*|[\'\"\(\)]|\w+))|.+)//)
{
my $skipped = $3;
$skipped = $1 unless defined $skipped;
my $found = $4;
$found = "" unless defined $found;
my $function_name = $last_word || "";
if ($skipped =~ /\S/ or $found =~ /^[\(\)\w]/)
{
if ($string ne "")
{
found_string ($string, $file, $.) unless $in_exception_function;
$string = "";
}
undef $last_word;
}
last unless $found ne "";
if ($found eq '"')
{
s/^(([^\\\"]|\\.)*)\"// or (print "$file:$.:unclosed quote\n"), next FILE;
$string .= $1;
}
elsif ($found eq "'")
{
s/^([^\\\']|\\.)*\'// or (print "$file:$.:unclosed single quote\n"), next FILE;
}
elsif ($found eq "/*")
{
s/^.*?\*\/// or $in_comment = 1, next LINE;
}
elsif ($found eq "(")
{
if ($function_name or $paren_level == 0)
{
push @stack, [$paren_level, $in_exception_function];
$paren_level = 0;
$in_exception_function = 1 if $function_name =~ /$no_translation_needed_function_pattern/o;
}
$paren_level++;
}
elsif ($found eq ")")
{
(print "$file:$.:mismatched paren (type 1)\n"), next FILE if $paren_level == 0;
$paren_level--;
if ($paren_level == 0)
{
(print "$file:$.:mismatched paren (type 2)\n"), next FILE if @stack == 0;
($paren_level, $in_exception_function) = @{pop @stack};
}
}
else
{
$last_word = $found;
}
}
}
close FILE;
}
sub found_string
{
my ($string, $file, $line) = @_;
for my $exception (@no_translation_needed_patterns)
{
return if $string =~ /$exception->[0]/ and $file =~ /$exception->[1]/;
}
print "$file:$line:\"$string\" is not marked for translation\n";
}