diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | THANKS | 2 | ||||
-rw-r--r-- | check-strings-functions | 1 | ||||
-rwxr-xr-x | check-strings.pl | 4 | ||||
-rw-r--r-- | src/nautilus-first-time-druid.c | 2 |
5 files changed, 14 insertions, 5 deletions
@@ -1,3 +1,11 @@ +2001-02-28 Darin Adler <darin@eazel.com> + + * check-strings-functions: + * check-strings.pl: Tweaks to just-checked-in stuff. + + * src/nautilus-first-time-druid.c: Fix build by + getting rid of incorrect use of stringize macro. + 2001-02-28 John Harper <jsh@eazel.com> reviewed by: Gene Z. Ragan <gzr@eazel.com> @@ -16,7 +24,7 @@ 2001-02-28 Fatih Demir <kabalak@gtranslator.org> * THANKS: Corrected the translator entry from me to - Görkem Cetin who translated Nautilus now. + Görkem Cetin who translated Nautilus now. 2001-02-28 Darin Adler <darin@eazel.com> @@ -64,7 +64,7 @@ Christian Rose <menthos@menthos.com> Christophe Merlet <redfox@eikonex.org> Christopher R. Gabriel <cgabriel@softwarelibero.org> Eric Brayeur <eb@ibelgique.com> -Görkem Cetin <gorkem@gelecek.com.tr> +Görkem Cetin <gorkem@gelecek.com.tr> Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br> Jarkko Ranta <jjranta@cc.joensuu.fi> Jean-Michel Ardantz <jmardantz@ifrance.com> diff --git a/check-strings-functions b/check-strings-functions index 3867fb082..d618c9c7e 100644 --- a/check-strings-functions +++ b/check-strings-functions @@ -1,5 +1,6 @@ N_ _ +execlp fopen g_error g_warning diff --git a/check-strings.pl b/check-strings.pl index 4a7414795..844c4e8c9 100755 --- a/check-strings.pl +++ b/check-strings.pl @@ -42,7 +42,7 @@ sub found_string; # read in file with functions for which no translation is needed my @no_translation_needed_functions; -open FUNCTIONS, "po/check-strings-functions"; +open FUNCTIONS, "check-strings-functions" or die "can't open functions file"; while (<FUNCTIONS>) { chomp; @@ -56,7 +56,7 @@ my $no_translation_needed_function_pattern = "^" . (join "|", @no_translation_ne # read in file with patterns for which no translation is needed my @no_translation_needed_patterns; -open STRINGS, "check-strings-patterns"; +open STRINGS, "check-strings-patterns" or die "can't open patterns file"; while (<STRINGS>) { chomp; diff --git a/src/nautilus-first-time-druid.c b/src/nautilus-first-time-druid.c index bda6d58b6..c46aa29fe 100644 --- a/src/nautilus-first-time-druid.c +++ b/src/nautilus-first-time-druid.c @@ -75,7 +75,7 @@ enum { /* Preference for http proxy settings */ #define DEFAULT_HTTP_PROXY_PORT 8080 -#define DEFAULT_HTTP_PROXY_PORT_STRING #DEFAULT_HTTP_PROXY_PORT +#define DEFAULT_HTTP_PROXY_PORT_STRING "8080" #define GNOME_VFS_PREFERENCES_HTTP_PROXY_HOST "/system/gnome-vfs/http-proxy-host" #define GNOME_VFS_PREFERENCES_HTTP_PROXY_PORT "/system/gnome-vfs/http-proxy-port" #define GNOME_VFS_PREFERENCES_USE_HTTP_PROXY "/system/gnome-vfs/use-http-proxy" |