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
This commit is contained in:
Igor Murzov 2012-12-23 23:05:20 +00:00 committed by Tom Hacohen
parent 5cad525dcd
commit 71a62d0cd8
1 changed files with 1 additions and 1 deletions

View File

@ -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);