summaryrefslogtreecommitdiff
path: root/exo-open
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2006-02-23 22:44:12 +0000
committerBenedikt Meurer <benny@xfce.org>2006-02-23 22:44:12 +0000
commit1450bddb67d4d0adee3cf61928631e83f6d53327 (patch)
tree506dc26fb21ea60eab8f3cfe10a3fe4353ad0aeb /exo-open
parentd8d7fa010ba941ba1289399b834ffd69c0a44ca9 (diff)
downloadexo-1450bddb67d4d0adee3cf61928631e83f6d53327.tar.gz
2006-02-23 Benedikt Meurer <benny@xfce.org>
* exo/exo-icon-view.{c,h}: Mark the "text-column", "markup-column" and "pixbuf-column" properties - their accessor methods - as deprecated, noting that developers should use the more powerful GtkCellRenderer's instead. * exo/exo-icon-view.{c,h}, exo/exo.symbols: Add "single-click" property to ExoIconView. Bug #1411. * docs/reference/: Update the API documentation. * exo/exo-url.c: Spawn Thunar asynchronously, as it will not exit if no running instance is found. We can be sure that Thunar will handle the file if found. * exo/exo-url.c, exo-open/main.c, exo-helper/main.c: Cleanup several error strings. * po/libexo-0.3.pot, po/*.po: Merge changed/new strings. * po/de.po: Update the german translations. (Old svn revision: 20008)
Diffstat (limited to 'exo-open')
-rw-r--r--exo-open/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/exo-open/main.c b/exo-open/main.c
index 052d368..8932ce2 100644
--- a/exo-open/main.c
+++ b/exo-open/main.c
@@ -118,7 +118,7 @@ main (int argc, char **argv)
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
- _("Failed to launch preferred application for category `%s'."),
+ _("Failed to launch preferred application for category \"%s\"."),
argv[2]);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s.", error->message);
gtk_dialog_run (GTK_DIALOG (dialog));
@@ -141,7 +141,7 @@ main (int argc, char **argv)
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
- _("Failed to open URL `%s'."),
+ _("Failed to open URL \"%s\"."),
*argv);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s.", error->message);
gtk_dialog_run (GTK_DIALOG (dialog));