summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Wehner <martin.wehner@gmail.com>2006-05-01 10:24:22 +0000
committerMartin Wehner <mwehner@src.gnome.org>2006-05-01 10:24:22 +0000
commit60f3072ba55d2e6d5bbb93c2272db6fc6b85c28b (patch)
treeeb75ba84c6999c553b56878a0685fc919fceebec
parent2093e4fa1928a77a8b6fbb8e158a3c5d6830595a (diff)
downloadnautilus-60f3072ba55d2e6d5bbb93c2272db6fc6b85c28b.tar.gz
Remove bogus period from strings. (#336909)
2006-05-01 Martin Wehner <martin.wehner@gmail.com> * libnautilus-private/nautilus-program-choosing.c: (application_cannot_open_location): Remove bogus period from strings. (#336909) Patch from Javier F. Serrador <serrador@tecknolabs.com>
-rw-r--r--ChangeLog8
-rw-r--r--libnautilus-private/nautilus-program-choosing.c4
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 078176af8..6b3f5a461 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2006-05-01 Martin Wehner <martin.wehner@gmail.com>
+ * libnautilus-private/nautilus-program-choosing.c:
+ (application_cannot_open_location):
+ Remove bogus period from strings. (#336909)
+
+ Patch from Javier F. Serrador <serrador@tecknolabs.com>
+
+2006-05-01 Martin Wehner <martin.wehner@gmail.com>
+
* libnautilus-private/nautilus-file-operations.c:
(handle_transfer_overwrite): Use the same phrasing and
format as the GTK+ overwrite dialog. Also, per the HIG
diff --git a/libnautilus-private/nautilus-program-choosing.c b/libnautilus-private/nautilus-program-choosing.c
index 956f23ca8..6092e42ac 100644
--- a/libnautilus-private/nautilus-program-choosing.c
+++ b/libnautilus-private/nautilus-program-choosing.c
@@ -165,14 +165,14 @@ application_cannot_open_location (GnomeVFSMimeApplication *application,
g_free (message);
} else {
if (application != NULL) {
- prompt = g_strdup_printf (_("\"%s\" can't open \"%s\" because \"%s\" can't access files at \"%s\"."
+ prompt = g_strdup_printf (_("\"%s\" can't open \"%s\" because \"%s\" can't access files at \"%s\" "
"locations."), application->name, file_name,
application->name, uri_scheme);
message = _("No other applications are available to view this file. "
"If you copy this file onto your computer, you may be able to open "
"it.");
} else {
- prompt = g_strdup_printf (_("The default action can't open \"%s\" because it can't access files at \"%s\"."
+ prompt = g_strdup_printf (_("The default action can't open \"%s\" because it can't access files at \"%s\" "
"locations."), file_name, uri_scheme);
message = _("No other actions are available to view this file. "
"If you copy this file onto your computer, you may be able to open "