From 71a62d0cd8485064bb4f935df0c2eebc87df63c6 Mon Sep 17 00:00:00 2001 From: Igor Murzov Date: Sun, 23 Dec 2012 23:05:20 +0000 Subject: [PATCH] engage: Replace "Open Folder" with "Open Directory" Also drop "with EFM" part. EFM is the default FM in E, so it's quite obvious that EFM will be used to open a directory. SVN revision: 81662 --- src/ng_launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng_launcher.c b/src/ng_launcher.c index 7e81dd6..8b7973d 100644 --- a/src/ng_launcher.c +++ b/src/ng_launcher.c @@ -272,7 +272,7 @@ _cb_drop_end(void *data, const char *type, void *event_info) if (app->icon) free(app->icon); app->icon = strdup("folder"); if (app->comment)free(app->comment); - app->comment = strdup(D_("Open folder with EFM")); + app->comment = strdup(D_("Open Directory")); if (app->exec) free(app->exec); snprintf(buf, PATH_MAX, "enlightenment_remote -efm-open-dir %s", file); app->exec = strdup(buf);