From e1ab067dbbb5ad0196b6de1ee2ef6c111df74617 Mon Sep 17 00:00:00 2001 From: Carsten Otto Date: Sat, 4 Apr 2015 17:36:54 +0200 Subject: [PATCH] typo --- .../{_update_succesfull.js.erb => _update_successful.js.erb} | 0 app/views/todos/update.js.erb | 2 +- config/locales/en.yml | 4 ++-- config/locales/es.yml | 4 ++-- features/project_edit.feature | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) rename app/views/todos/{_update_succesfull.js.erb => _update_successful.js.erb} (100%) diff --git a/app/views/todos/_update_succesfull.js.erb b/app/views/todos/_update_successful.js.erb similarity index 100% rename from app/views/todos/_update_succesfull.js.erb rename to app/views/todos/_update_successful.js.erb diff --git a/app/views/todos/update.js.erb b/app/views/todos/update.js.erb index 68049d38..15cd7588 100644 --- a/app/views/todos/update.js.erb +++ b/app/views/todos/update.js.erb @@ -1,5 +1,5 @@ <%- object_name = unique_object_name_for("update_todo_#{@todo.id}") -%> var <%=object_name%> = { - <%= render :partial => (@saved ? "update_succesfull" : "update_has_errors"), locals: {object_name: object_name} %> + <%= render :partial => (@saved ? "update_successful" : "update_has_errors"), locals: {object_name: object_name} %> } <%=object_name%>.animate(); \ No newline at end of file diff --git a/config/locales/en.yml b/config/locales/en.yml index 0959fee0..55356389 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -542,7 +542,7 @@ en: edit: Edit pending: Pending completed_actions_with: "Completed actions with the tag '%{tag_name}'" - deleted_success: The action was deleted succesfully. + deleted_success: The action was deleted successfully. completed_tasks_title: TRACKS::Completed tasks feed_title_in_project: "in project '%{project}'" clear_due_date: Clear due date @@ -552,7 +552,7 @@ en: show_on_date: Show on %{date} recurrence_period: Recurrence period deferred_actions_with: "Deferred actions with the tag '%{tag_name}'" - recurring_deleted_success: The recurring action was deleted succesfully. + recurring_deleted_success: The recurring action was deleted successfully. confirm_delete: "Are you sure that you want to delete the action '%{description}'?" deferred_tasks_title: TRACKS::Tickler next_actions_title: Tracks - Next Actions diff --git a/config/locales/es.yml b/config/locales/es.yml index 9aa645dc..615fbead 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -761,7 +761,7 @@ es: one: Defer one day other: Defer %{count} days delete: Delete - deleted_success: The action was deleted succesfully. + deleted_success: The action was deleted successfully. delete_action: Delete action delete_recurring_action_confirm: Are you sure that you want to delete the recurring action '%{description}'? @@ -897,7 +897,7 @@ es: recurring_action_deleted: Action was deleted. Because this action is recurring, a new action was added recurring_action_saved: Recurring action saved - recurring_deleted_success: The recurring action was deleted succesfully. + recurring_deleted_success: The recurring action was deleted successfully. recurring_pattern_removed: El patrón de repetición se retira de %{count} recurring_todos: Recurring todos removed_predecessor: Removed %{successor} as dependency from %{predecessor}. diff --git a/features/project_edit.feature b/features/project_edit.feature index 412cb42d..83b09738 100644 --- a/features/project_edit.feature +++ b/features/project_edit.feature @@ -19,8 +19,8 @@ Feature: Edit a project @javascript Scenario: I can describe the project using markup When I go to the "manage me" project - And I edit the project description to "_successfull outcome_: project is *done*" - Then I should see the italic text "successfull outcome" in the project description + And I edit the project description to "_successful outcome_: project is *done*" + Then I should see the italic text "successful outcome" in the project description And I should see the bold text "done" in the project description @javascript