fix initial name string for New Directory action

SVN revision: 80748
This commit is contained in:
Mike Blumenkrantz 2012-12-12 10:12:29 +00:00
parent a93a4d56f0
commit d0eff6a730
1 changed files with 1 additions and 1 deletions

View File

@ -9330,7 +9330,7 @@ _e_fm2_new_thread_helper(Ecore_Thread *eth, Eina_Bool dir)
goto error;
for (x = 0; x < UINT_MAX; x++)
{
snprintf(buf, sizeof(buf), "%s/%s %u", path, _("New File"), x);
snprintf(buf, sizeof(buf), "%s/%s %u", path, dir ? _("New Directory") : _("New File"), x);
errno = 0;
if (stat(buf, &st) && (errno == ENOENT))
{