diff --git a/app/views/glossary_terms/index.html.erb b/app/views/glossary_terms/index.html.erb
index 0b260aa..77ca0ca 100644
--- a/app/views/glossary_terms/index.html.erb
+++ b/app/views/glossary_terms/index.html.erb
@@ -1,10 +1,10 @@
-
GlossaryTermsController#index
+<%=t :label_glossary_terms %>
- name |
- description |
+ <%=t :field_name %> |
+ <%=l :field_description %> |
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 642b07f..3864781 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -1,3 +1,4 @@
# English strings go here for Rails i18n
en:
- # my_label: "My label"
+ label_glossary_terms: "Glossary terms"
+
diff --git a/config/locales/ja.yml b/config/locales/ja.yml
new file mode 100644
index 0000000..c51ea70
--- /dev/null
+++ b/config/locales/ja.yml
@@ -0,0 +1,3 @@
+ja:
+ label_glossary_terms: "用語集"
+
\ No newline at end of file