">
- <%= f.label :name %>
+ <%= f.label :name ,t("web_resource.name")%>
<%= f.fields_for :name, (@web_link.new_record? ? @web_link.build_name : @web_link.name ) do |f| %>
<%= I18nVariable.from_locale(locale) %>
<%= f.text_field locale, :class=>'post-title' %>
@@ -76,7 +76,7 @@
- <%= f.label :describe %>
+ <%= f.label :describe,t("web_resource.describe") %>
<%= f.fields_for :context, (@web_link.new_record? ? @web_link.build_context : @web_link.context ) do |f| %>
<%= I18nVariable.from_locale(locale) %>
<%= f.text_area locale, :style=>"width:100%" %>
@@ -90,7 +90,7 @@
- <%= f.label :url %>
+ <%= f.label :url,t("web_resource.url") %>
<%= f.text_field :url %>
diff --git a/vendor/built_in_modules/web_resource/app/views/panel/web_resource/back_end/web_links/_web_link.html.erb b/vendor/built_in_modules/web_resource/app/views/panel/web_resource/back_end/web_links/_web_link.html.erb
index 7efa3b72..85a6ad93 100644
--- a/vendor/built_in_modules/web_resource/app/views/panel/web_resource/back_end/web_links/_web_link.html.erb
+++ b/vendor/built_in_modules/web_resource/app/views/panel/web_resource/back_end/web_links/_web_link.html.erb
@@ -25,8 +25,8 @@
<%if at_least_module_manager || web_link.web_link_category.cur_user_is_sub_manager_of(:edit)%>
- - <%= link_to t('web_link.edit'), edit_panel_web_resource_back_end_web_link_path(web_link) %>
- - <%= link_to t('web_link.delete'), panel_web_resource_back_end_web_link_path(web_link), :confirm => t('sure?'), :method => :delete, :remote => true %>
+ - <%= link_to t('edit'), edit_panel_web_resource_back_end_web_link_path(web_link) %>
+ - <%= link_to t('delete'), panel_web_resource_back_end_web_link_path(web_link), :confirm => t('sure?'), :method => :delete, :remote => true %>
<% end -%>
diff --git a/vendor/built_in_modules/web_resource/config/locales/zh_tw.yml b/vendor/built_in_modules/web_resource/config/locales/zh_tw.yml
index ace65d53..607900d9 100644
--- a/vendor/built_in_modules/web_resource/config/locales/zh_tw.yml
+++ b/vendor/built_in_modules/web_resource/config/locales/zh_tw.yml
@@ -21,6 +21,10 @@ zh_tw:
web_resource:
list_lower: 列表
list_link: 鏈接列表
+ category: 分類
+ name: 名稱
+ describe: 描述
+ url: 路徑