diff --git a/app/views/items/edit.html.erb b/app/views/items/edit.html.erb
index 45050f5..254136c 100644
--- a/app/views/items/edit.html.erb
+++ b/app/views/items/edit.html.erb
@@ -1,3 +1,3 @@
-
Edit Item
+<%=t(:label_edit_item)%>
<%= render "form" %>
\ No newline at end of file
diff --git a/app/views/items/new.html.erb b/app/views/items/new.html.erb
index f3b008e..f2e4270 100644
--- a/app/views/items/new.html.erb
+++ b/app/views/items/new.html.erb
@@ -1,5 +1,5 @@
-New Item
+<%=t(:label_item_new)%>
<%= render "form" %>
-<%= link_to "Back", items_path %>
\ No newline at end of file
+<%= link_to t(:label_back), items_path %>
\ No newline at end of file
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 641a263..9b60516 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -19,9 +19,11 @@ en:
label_active: "Activie"
label_account: "Account"
label_accounts: "Accounts"
+ label_back: "Back"
label_account_count: "Number of Accounts:"
label_default_account: "Default Item Income Account"
label_description: "Description"
+ label_edit_item: "Edit Item"
label_item: "Item"
label_item_count: "Item Count:"
label_items: "Items"