Correcting "succeffully" typos in Indexing

--HG--
branch : 1.x
This commit is contained in:
Zoltán Lehóczky
2013-06-28 22:19:59 +02:00
parent 16f63a5ed0
commit 6278e39746
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ namespace Orchard.Indexing.Commands {
}
else {
_indexManager.GetSearchIndexProvider().CreateIndex(index);
Context.Output.WriteLine(T("New index has been created succeffully."));
Context.Output.WriteLine(T("New index has been created successfully."));
}
}

View File

@@ -80,7 +80,7 @@ namespace Orchard.Indexing.Controllers {
try {
provider.CreateIndex(id);
Services.Notifier.Information(T("Index named {0} created succeffully", id));
Services.Notifier.Information(T("Index named {0} created successfully", id));
}
catch(Exception e) {
Services.Notifier.Error(T("An error occured while creating the index: {0}", id));