Changeset 5834
- Timestamp:
- 07/11/08 10:29:42 (4 months ago)
- Files:
-
- rubricks_core/trunk/components/system/account/_user_show_edit_content.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/account/_user_show_print_content.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/admin_menu_controller.rb (modified) (7 diffs)
- rubricks_core/trunk/components/system/calendar/show_detail.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/languages/chinese.rb (modified) (2 diffs)
- rubricks_core/trunk/components/system/languages/japanese.rb (modified) (1 diff)
- rubricks_core/trunk/components/system/search/atom.rxml (modified) (1 diff)
- rubricks_core/trunk/components/system/user_management/_group_show_tab_permission_info.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/user_management/_group_show_tab_permission_info_edit_content.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/user_management/_group_show_tab_permission_info_print_content.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/user_management/_main_user_filter.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/user_management/_user_show_edit_content.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/user_management/_user_show_print_content.rhtml (modified) (1 diff)
- rubricks_core/trunk/components/system/user_management/user_create_window.rhtml (modified) (1 diff)
- rubricks_core/trunk/languages/chinese.rb (modified) (6 diffs)
- rubricks_core/trunk/languages/english.rb (modified) (2 diffs)
- rubricks_core/trunk/languages/japanese.rb (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
rubricks_core/trunk/components/system/account/_user_show_edit_content.rhtml
r5781 r5834 24 24 </td> 25 25 </tr> 26 <% if RubricksLib.current_lang == 'japanese' %> 27 <tr class="rubricks_general_table_even"> 28 <td><%= hl('[_Common_Kana]') %></td> 29 <td> 30 <% if @editable_ru_columns['_Common_UserName'] %> 31 <%= validate 'rubricks_user_edit_kana', [{:required => true}, {:length => '1..32'}, {:regexp => {:value => "/#{hl('[_Common_Kana_Format]')}/", :msg => hl('[_Common_Validate_Kana]')}}] %> 32 <%= text_field 'rubricks_user_edit', 'kana', :size => 32, :value => @ru.kana, :class => 'input_text_inactive focus' %><span id="rubricks_user_edit_kana_msg"></span> 33 <% else %> 34 <%= hl(@ru.kana) %> 35 <% end %> 36 </td> 37 </tr> 38 <% end %> 26 <tr class="rubricks_general_table_even"> 27 <td><%= hl('[_Common_Kana]') %></td> 28 <td> 29 <% if @editable_ru_columns['_Common_UserName'] %> 30 <%= validate 'rubricks_user_edit_kana', [{:length => '0..32'}, {:kana => {:allow_nil => true}}] %> 31 <%= text_field 'rubricks_user_edit', 'kana', :size => 32, :value => @ru.kana, :class => 'input_text_inactive focus' %><span id="rubricks_user_edit_kana_msg"></span> 32 <% else %> 33 <%= hl(@ru.kana) %> 34 <% end %> 35 </td> 36 </tr> 39 37 <tr class="rubricks_general_table_even"> 40 38 <td><%= hl('[_Common_Mail]') %><% if @editable_ru_columns['_Common_Mail'] %><br />(<%= hl('[_Common_Multiple]') %>)<% end %></td> rubricks_core/trunk/components/system/account/_user_show_print_content.rhtml
r5820 r5834 32 32 <td><div class="overflow_auto"><%= hl(@ru.name) %></div></td> 33 33 </tr> 34 <% if Rubricks Lib.current_lang == 'japanese' && RubricksConfig.get('site_display_kana') %>34 <% if RubricksConfig.get('site_display_kana') %> 35 35 <tr class="rubricks_general_table_even"> 36 36 <td><%= hl('[_Common_Kana]') %></td> rubricks_core/trunk/components/system/admin_menu_controller.rb
r5781 r5834 7 7 @visible_menu_icons = RubricksMenuIcon.find(:all, :conditions => ['rubricks_menu_icons.visible = true'], :include => ['rubricks_component', 'rubricks_menu_items'], :order => 'rubricks_menu_icons.menu_order, rubricks_menu_items.menu_order') 8 8 @invisible_menu_icons = RubricksMenuIcon.find(:all, :conditions => ['rubricks_menu_icons.visible = false'], :include => ['rubricks_component', 'rubricks_menu_items'], :order => 'rubricks_menu_icons.menu_order, rubricks_menu_items.menu_order') 9 rubricks_logger( {:action_type => :list, :data => (@visible_menu_icons + @invisible_menu_icons)})9 rubricks_logger(trail_options.merge({:action_type => :list, :data => (@visible_menu_icons + @invisible_menu_icons)})) 10 10 end 11 11 … … 14 14 ActiveRecord::Base.transaction do 15 15 rmi = RubricksMenuIcon.create_new_icon 16 rubricks_logger( {:action_type => :create, :note => '[_System_AdminMenu_MenuIcon]', :data => rmi})16 rubricks_logger(trail_options.merge({:action_type => :create, :note => '[_System_AdminMenu_MenuIcon]', :data => rmi})) 17 17 end 18 18 flash[:admin_menu_message] = '[_System_AdminMenu_MessageMenuIconCreate]' … … 29 29 ActiveRecord::Base.transaction do 30 30 menu_icon = RubricksMenuIcon.find(params[:id], :include => :rubricks_menu_items) 31 rubricks_logger( {:action_type => :delete, :data => menu_icon})31 rubricks_logger(trail_options.merge({:action_type => :delete, :data => menu_icon})) 32 32 raise RubricksError::Common::ValidateException unless menu_icon.rubricks_menu_items.blank? 33 33 menu_icon.destroy … … 67 67 end 68 68 raise RubricksError::Common::AjaxError, '[_System_AdminMenu_MessageCautionForAdminMenu]' if RubricksMenuItem.admin_menu_invisible? 69 rubricks_logger( {:action_type => :update, :note => '[_System_AdminMenu_MenuIcon]', :data => rmi_list})69 rubricks_logger(trail_options.merge({:action_type => :update, :note => '[_System_AdminMenu_MenuIcon]', :data => rmi_list})) 70 70 end 71 71 flash[:admin_menu_message] = '[_System_AdminMenu_MessageMenuIconEdit]' … … 91 91 @invisible_menu_items = RubricksMenuItem.find_menu_invisible_item 92 92 @menu_item_list = RubricksMenuItem.find(:all, :conditions => ['effective = true']) 93 rubricks_logger( {:action_type => :detail, :data => @menu_icon})93 rubricks_logger(trail_options.merge({:action_type => :detail, :data => @menu_icon})) 94 94 else 95 95 render :action => 'show_empty' … … 115 115 RubricksMenuItem.destroy_all("id not in (#{updated_menu_item_id_list.join(',')})") 116 116 raise RubricksError::Common::AjaxError, '[_System_AdminMenu_ErrorMenuIconUpdateMenuManagement]' if RubricksMenuItem.admin_menu_invisible? 117 rubricks_logger( {:action_type => :update, :data => @menu_icon})117 rubricks_logger(trail_options.merge({:action_type => :update, :data => @menu_icon})) 118 118 end 119 119 flash[:admin_menu_message] = '[_System_AdminMenu_MessageMenuIconUpdate]' … … 125 125 render :action => 'update' 126 126 end 127 128 private 129 def trail_options 130 component = RubricksComponent.find(:first, :conditions => ["name = ?", "system"]) 131 return {:component_name => "system", :component_display_name => component.display_name} 132 end 127 133 end rubricks_core/trunk/components/system/calendar/show_detail.rhtml
r5820 r5834 48 48 </div> 49 49 <div id="calendar_detail_list" style="display:none;"></div> 50 <div class="rubricks_layout_buttons" style="margin-top: 5px;"> 51 <input id="calendar_close_button" type="button" class="submit_inactive submit_normal swap" onclick="rubricks.system.calendar.calendar_window.close();" value="<%= hl('[_Common_Close]') %>" /> 52 </div> 53 <%= rollover_swap("calendar_close_button") %> 50 54 </div> 51 55 rubricks_core/trunk/components/system/languages/chinese.rb
r5820 r5834 477 477 å«è±æã»æ°åã', 478 478 '_System_Login_MessageChangePasswordReuseLimit' => 'æè¿%dæ¬¡çæ§å¯ç äžèœéæ°äœ¿çšã', 479 '_System_Login_MessageRelease' => '2008/07/14 çæ¬éç¥ (version1.02)', 479 480 '_System_Login_PasswordConfirm' => '[确讀]', 480 481 '_System_Login_PasswordNew' => 'æ°å¯ç ', … … 538 539 '_System_User_MessageUserLimitMultiple' => 'æå€å¯ä»¥æå®%däžªçšæ·ã', 539 540 '_System_User_MessageUserLimitSingle' => 'äžèœæå®å€äžªçšæ·ã', 540 '_System_User_SampleCsv_1_1' => 'user0001,çšæ·1, YongHu,user0001@example.com,,,true,,,,pass0000,,,,true',541 '_System_User_SampleCsv_1_2' => 'user0002,çšæ·2, YongHu,user0002@example.com,,,true,,,,pass0000,,,,true',542 '_System_User_SampleCsv_1_3' => 'user0003,çšæ·3, YongHu,user0003@example.com,,,true,,,,pass0000,,,,true',543 '_System_User_SampleCsv_2_1' => 'user0004,çšæ·4, YongHu,user0004@example.com,sub0004@example.com,mobile0004@example.com,true,03-0000-0000,090-0000-0000,101-2000,pass0000,çŸå,倿³š,å€å¿,true',544 '_System_User_SampleCsv_2_2' => 'user0005,çšæ·5, YongHu,user0005@example.com,sub0005@example.com,mobile0005@example.com,true,03-0000-0000,090-0000-0000,101-2000,pass0000,çŸå,倿³š,å€å¿,true',545 '_System_User_SampleCsv_2_3' => 'user0006,çšæ·6, YongHu,user0006@example.com,sub0006@example.com,mobile0006@example.com,true,03-0000-0000,090-0000-0000,101-2000,pass0000,çŸå,倿³š,å€å¿,true',541 '_System_User_SampleCsv_1_1' => 'user0001,çšæ·1,yong hu,user0001@example.com,,,true,,,,pass0000,,,,true', 542 '_System_User_SampleCsv_1_2' => 'user0002,çšæ·2,yong hu,user0002@example.com,,,true,,,,pass0000,,,,true', 543 '_System_User_SampleCsv_1_3' => 'user0003,çšæ·3,yong hu,user0003@example.com,,,true,,,,pass0000,,,,true', 544 '_System_User_SampleCsv_2_1' => 'user0004,çšæ·4,yong hu,user0004@example.com,sub0004@example.com,mobile0004@example.com,true,03-0000-0000,090-0000-0000,101-2000,pass0000,çŸå,倿³š,å€å¿,true', 545 '_System_User_SampleCsv_2_2' => 'user0005,çšæ·5,yong hu,user0005@example.com,sub0005@example.com,mobile0005@example.com,true,03-0000-0000,090-0000-0000,101-2000,pass0000,çŸå,倿³š,å€å¿,true', 546 '_System_User_SampleCsv_2_3' => 'user0006,çšæ·6,yong hu,user0006@example.com,sub0006@example.com,mobile0006@example.com,true,03-0000-0000,090-0000-0000,101-2000,pass0000,çŸå,倿³š,å€å¿,true', 546 547 '_System_User_TargetUser' => 'ç®æ çšæ·', 547 548 '_System_User_ValidateDifferenceLoginNameAndPassword' => 'å¯ç äžèœäžç»åœIDçžåã', rubricks_core/trunk/components/system/languages/japanese.rb
r5820 r5834 495 495 èŠããããŸãã', 496 496 '_System_Login_MessageChangePasswordReuseLimit' => 'éå»%dååã®ãã¹ã¯ãŒããåå©çšããããšã¯ã§ããŸããã', 497 '_System_Login_MessageRelease' => '2008/07/14 ããŒãžã§ã³ã¢ããã®ãç¥ãã (version1.02)', 497 498 '_System_Login_PasswordConfirm' => '[確èªå 498 499 ¥å]', rubricks_core/trunk/components/system/search/atom.rxml
r5758 r5834 1 1 xml.instruct! :xml, :version => '1.0' 2 2 xml.feed :xmlns => 'http://www.w3.org/2005/Atom', 'xml:lang' => @site_info[:language] do 3 xml.title html_escape(@site_info[:title]), {:type => 'text'}4 xml.subtitle html_escape(@site_info[:subtitle]), {:type => 'text'}5 xml.link :type => 'application/xhtml+xml', :rel => 'alternate', :href => html_escape(@site_info[:site_url])6 xml.link :type => 'application/atom+xml', :rel => 'self', :href => html_escape(@site_info[:self])7 xml.updated html_escape(@entry_list.first[:date].strftime("%Y-%m-%dT%H:%M:%SZ"))8 xml.id html_escape(@site_info[:permalink])3 xml.title @site_info[:title], {:type => 'text'} 4 xml.subtitle @site_info[:subtitle], {:type => 'text'} 5 xml.link :type => 'application/xhtml+xml', :rel => 'alternate', :href => @site_info[:site_url] 6 xml.link :type => 'application/atom+xml', :rel => 'self', :href => @site_info[:self] 7 xml.updated @entry_list.first[:date].strftime("%Y-%m-%dT%H:%M:%SZ") 8 xml.id @site_info[:permalink] 9 9 xml.author { 10 xml.name html_escape(@site_info[:author][:name])11 xml.email html_escape(@site_info[:author][:email])10 xml.name @site_info[:author][:name] 11 xml.email @site_info[:author][:email] 12 12 } 13 xml.generator 'Rubricks', {:type => 'text', :uri => html_escape('http://rubricks.org/')}14 xml.icon html_escape(image_path(@site_info[:icon]))15 xml.logo html_escape(image_path(@site_info[:logo]))13 xml.generator 'Rubricks', {:type => 'text', :uri => 'http://rubricks.org/'} 14 xml.icon image_path(@site_info[:icon]) 15 xml.logo image_path(@site_info[:logo]) 16 16 @entry_list.each do |entry| 17 17 xml.entry do 18 xml.title html_escape(entry[:title]), {:type => 'text'}19 xml.link :type => 'application/xhtml+xml', :rel => 'alternate', :href => html_escape(entry[:permalink])20 xml.updated html_escape(entry[:date].strftime("%Y-%m-%dT%H:%M:%SZ"))21 xml.id html_escape(entry[:permalink])18 xml.title entry[:title], {:type => 'text'} 19 xml.link :type => 'application/xhtml+xml', :rel => 'alternate', :href => entry[:permalink] 20 xml.updated entry[:date].strftime("%Y-%m-%dT%H:%M:%SZ") 21 xml.id entry[:permalink] 22 22 xml.author { 23 xml.name html_escape(entry[:author])23 xml.name entry[:author] 24 24 } 25 25 xml.summary RubricksLib.format_snippet(entry[:snippet], nil, false), {:type => 'text'} rubricks_core/trunk/components/system/user_management/_group_show_tab_permission_info.rhtml
r5767 r5834 3 3 <% render_tab_box_panel do %> 4 4 <div id="group_permission_management_area"> 5 <div class="background_white" >5 <div class="background_white" style="position:relative;"> 6 6 <% if @rg.group_permission_editable? %> 7 7 <% render_float_button('group_permission_fba1') do %> rubricks_core/trunk/components/system/user_management/_group_show_tab_permission_info_edit_content.rhtml
r5388 r5834 4 4 <thead> 5 5 <tr> 6 <th ><%= hl('[_Common_Component]') %></th>7 <th ><%= hl('[_Common_PermissionType]') %></th>8 <th ><%= hl('[_Common_Grant]') %></th>9 <th ><%= hl('[_Common_Revoke]') %></th>10 <th ><%= hl('[_Common_Inherit]') %></th>6 <th style="width:32%;"><%= hl('[_Common_Component]') %></th> 7 <th style="width:32%;"><%= hl('[_Common_PermissionType]') %></th> 8 <th style="width:12%;"><%= hl('[_Common_Grant]') %></th> 9 <th style="width:12%;"><%= hl('[_Common_Revoke]') %></th> 10 <th style="width:12%;"><%= hl('[_Common_Inherit]') %></th> 11 11 </tr> 12 12 </thead> rubricks_core/trunk/components/system/user_management/_group_show_tab_permission_info_print_content.rhtml
r5723 r5834 2 2 <thead> 3 3 <tr> 4 <th ><%= hl('[_Common_Component]') %></th>5 <th ><%= hl('[_Common_PermissionType]') %></th>6 <th colspan="3"><%= hl('[_Common_PermissionValue]') %></th>4 <th style="width:32%;"><%= hl('[_Common_Component]') %></th> 5 <th style="width:32%;"><%= hl('[_Common_PermissionType]') %></th> 6 <th style="width:36%;" colspan="3"><%= hl('[_Common_PermissionValue]') %></th> 7 7 </tr> 8 8 </thead> rubricks_core/trunk/components/system/user_management/_main_user_filter.rhtml
r5748 r5834 24 24 <input type="submit" id="user_filter_submit_dummy" style="border:none; height:1px; width:1px;"> 25 25 <% end %> 26 <%= ignore_blur_for_select('user_filter_form') %> rubricks_core/trunk/components/system/user_management/_user_show_edit_content.rhtml
r5781 r5834 10 10 <td><%= text_field 'rubricks_user_edit', 'name', :size => 32, :value => @ru.name, :class => 'input_text_inactive focus' %><span id="rubricks_user_edit_name_msg"></span></td> 11 11 </tr> 12 <% if RubricksLib.current_lang == 'japanese' %> 13 <tr class="rubricks_general_table_even"> 14 <td><%= hl('[_Common_Kana]') %></td> 15 <%= validate 'rubricks_user_edit_kana', [{:required => true}, {:length => '1..32'}, {:kana => true}] %> 16 <td><%= text_field 'rubricks_user_edit', 'kana', :size => 32, :value => @ru.kana, :class => 'input_text_inactive focus' %><span id="rubricks_user_edit_kana_msg"></span></td> 17 </tr> 18 <% end %> 12 <tr class="rubricks_general_table_even"> 13 <td><%= hl('[_Common_Kana]') %></td> 14 <%= validate 'rubricks_user_edit_kana', [{:length => '0..32'}, {:kana => {:allow_nil => true}}] %> 15 <td><%= text_field 'rubricks_user_edit', 'kana', :size => 32, :value => @ru.kana, :class => 'input_text_inactive focus' %><span id="rubricks_user_edit_kana_msg"></span></td> 16 </tr> 19 17 <tr class="rubricks_general_table_even"> 20 18 <td><%= hl('[_Common_Mail]') %><br />(<%= hl('[_Common_Multiple]') %>)</td> rubricks_core/trunk/components/system/user_management/_user_show_print_content.rhtml
r5820 r5834 30 30 <td><div class="overflow_auto"><%= hl(@ru.name) %></div></td> 31 31 </tr> 32 <% if Rubricks Lib.current_lang == 'japanese' && RubricksConfig.get('site_display_kana') %>32 <% if RubricksConfig.get('site_display_kana') %> 33 33 <tr class="rubricks_general_table_even"> 34 34 <td><%= hl('[_Common_Kana]') %></td> rubricks_core/trunk/components/system/user_management/user_create_window.rhtml
r5781 r5834 13 13 <td><%= text_field 'rubricks_user', 'name', :size => 32, :class => 'input_text_inactive focus' %><span id="rubricks_user_name_msg"></span></td> 14 14 </tr> 15 <% if RubricksLib.current_lang == 'japanese' %> 16 <tr class="rubricks_general_table_even"> 17 <td><%= hl('[_Common_Kana]') %></td> 18 <%= validate 'rubricks_user_kana', [{:required => true}, {:length => '1..32'}, {:kana => true}] %> 19 <td><%= text_field 'rubricks_user', 'kana', :size => 32, :class => 'input_text_inactive focus' %><span id="rubricks_user_kana_msg"></span></td> 20 </tr> 21 <% end %> 15 <tr class="rubricks_general_table_even"> 16 <td><%= hl('[_Common_Kana]') %></td> 17 <%= validate 'rubricks_user_kana', [{:length => '0..32'}, {:kana => {:allow_nil => true}}] %> 18 <td><%= text_field 'rubricks_user', 'kana', :size => 32, :class => 'input_text_inactive focus' %><span id="rubricks_user_kana_msg"></span></td> 19 </tr> 22 20 <tr class="rubricks_general_table_even"> 23 21 <td><%= hl('[_Common_Mail]') %><br />(<%= hl('[_Common_Multiple]') %>)</td> rubricks_core/trunk/languages/chinese.rb
r5790 r5834 25 25 '_Common_Asc' => 'ååº', 26 26 '_Common_AttachmentFile' => 'éä»¶', 27 '_Common_AttachmentFileName' => 'éä»¶åç§°', 27 28 '_Common_Author' => 'äœè 28 29 ', … … 39 40 '_Common_Close' => 'å 40 41 ³é', 41 '_Common_Closed' => ' éå42 '_Common_Closed' => 'æªå 42 43 ¬åŒ', 43 44 '_Common_Colon' => 'ïŒ', … … 174 175 '_Common_Invalidity' => 'æ æ', 175 176 '_Common_Item' => '项ç®', 176 '_Common_Kana' => ' ãã¿ããª',177 '_Common_Kana_Format' => '^[ ã-ãã-ãããŒ]+$',177 '_Common_Kana' => 'æŒé³', 178 '_Common_Kana_Format' => '^[a-zã-ãã-ã ããŒ]+$', 178 179 '_Common_Kind' => 'ç§ç±»', 179 180 '_Common_LastPost' => 'ææ°æçš¿', … … 192 193 '_Common_Logout' => '泚é', 193 194 '_Common_Mail' => 'é®ç®±å°å', 194 '_Common_MailCharset' => ' gb2312',195 '_Common_MailCharset' => 'utf-8', 195 196 '_Common_MailText' => '[é®ä»¶]', 196 197 '_Common_MailTransferEncoding' => '8bit', … … 276 277 '_Common_Preview' => 'é¢è§', 277 278 '_Common_Previous' => 'äžäžäžª', 278 '_Common_Previous_Page' => ' åäžé¡µ',279 '_Common_Previous_Page' => 'äžäžé¡µ', 279 280 '_Common_Print' => 'æå°', 280 281 '_Common_PrintList' => 'å衚æå°', … … 430 431 '_Common_Validate_InverseDateTime' => 'æ¶éŽçå 431 432 å顺åºé¢ åäºã', 432 '_Common_Validate_Kana' => 'ã²ãããªã§å 433 ¥åããŠäžããã', 433 '_Common_Validate_Kana' => '请èŸå 434 ¥å¹³ååæè 435 å°å忝ã', 434 436 '_Common_Validate_NumericGreaterThan' => 'åŒç倧å°é¢ åäºã', 435 437 '_Common_Validate_SelectboxLessThan' => 'è¯·éæ©%d䞪以äžé项ã', rubricks_core/trunk/languages/english.rb
r5781 r5834 25 25 '_Common_Asc' => 'Asc', 26 26 '_Common_AttachmentFile' => 'Attachment File', 27 '_Common_AttachmentFileName' => 'Attachment File Name', 27 28 '_Common_Author' => 'Author', 28 29 '_Common_Authentication' => 'Authentication', … … 145 146 '_Common_Invalidity' => 'Invalidity', 146 147 '_Common_Item' => 'Item', 147 '_Common_Kana' => 'Kana ',148 '_Common_Kana_Format' => '^[ ã-ãã-ã]+$',148 '_Common_Kana' => 'Kana (Used by Japanese)', 149 '_Common_Kana_Format' => '^[a-zã-ãã-ã ããŒ]+$', 149 150 '_Common_Kind' => 'Kind', 150 151 '_Common_LastPost' => 'Last Post', rubricks_core/trunk/languages/japanese.rb
r5781 r5834 28 28 '_Common_Asc' => 'æé ', 29 29 '_Common_AttachmentFile' => 'æ·»ä»ãã¡ã€ã«', 30 '_Common_AttachmentFileName' => 'æ·»ä»ãã¡ã€ã«å', 30 31 '_Common_Author' => 'äœè 31 32 ', … … 170 171 ç®', 171 172 '_Common_Kana' => 'ãã¿ããª', 172 '_Common_Kana_Format' => '^[ ã-ãã-ãããŒ]+$',173 '_Common_Kana_Format' => '^[a-zã-ãã-ã ããŒ]+$', 173 174 '_Common_Kind' => 'çš®å¥', 174 175 '_Common_LastPost' => 'ææ°æçš¿', … … 417 418 '_Common_Validate_InverseTime' => 'æå»ã®ååŸé¢ä¿ãéã§ãã', 418 419 '_Common_Validate_InverseDateTime' => 'æ¥æã®ååŸé¢ä¿ãéã§ãã', 419 '_Common_Validate_Kana' => 'ã²ãããªã §å420 '_Common_Validate_Kana' => 'ã²ãããªãããã¯å°æåã®ã¢ã«ãã¡ãããã§å 420 421 ¥åããŠãã ããã', 421 422 '_Common_Validate_NumericGreaterThan' => 'å€ã®å€§å°ãéã§ãã',
