# $Id: en.rb,v 1.18 2005/07/14 01:50:25 fdiary Exp $ # en.rb # # Copyright (C) 2003 Masao Mutoh # You can redistribute it and/or modify it under the terms of # the Ruby's licence. # # Original file is ja.rb: # Copyright (C) 2002-2003 TAKEUCHI Hitoshi # You can redistribute it and/or modify it under the terms of # the Ruby's licence. # module Hiki module Messages_en def msg_recent; 'Recent' end def msg_create; 'Create' end def msg_diff; 'Diff' end def msg_edit; 'Edit' end def msg_search; 'Search' end def msg_admin; 'Admin' end def msg_login; 'Login' end def msg_logout; 'Logout' end def msg_search_result; 'Search Results' end def msg_search_hits; '%3$d page(s) containing the phrase \'%1$s\' were found in a set of %2$d pages.' end def msg_search_not_found; 'No pages containing the phrase \'%s\' were found.' end def msg_search_comment; 'Searches all pages, ignore case, and return pages that contain all words in your query.' end def msg_frontpage; 'Top' end def msg_hitory; 'History' end def msg_index; 'Index' end def msg_recent_changes; 'Changes' end def msg_newpage; 'New' end def msg_no_recent; '

There is no data.

' end def msg_thanks; 'Thank you for your update.' end def msg_save_conflict; 'There is a conflict with your updates. Copy the content below to a text editor and edit the page after referring to the latest version.' end def msg_time_format; "%Y-%m-%d #DAY# %H:%M:%S" end def msg_date_format; "%Y-%m-%d " end def msg_day; %w(Sun Mon Tue Wed Thr Fri Sat) end def msg_preview; 'Confirm the content below. If there are no problems, save it with the save button. ->Form' end def msg_mail_on; 'Send update e-mails' end def msg_mail_off; 'Do not send update e-mails' end def msg_use; 'Use' end def msg_unuse; 'Don\'t use' end def msg_login_info; 'If you want to login as an administrator, type \'admin\' in the Name field.' end def msg_login_failure; 'Wrong name or password.' end def msg_name; 'Name' end def msg_password; 'Password' end def msg_ok; 'OK' end def msg_invalid_password; 'Your password is not correct. Your changes have not yet been saved.' end def msg_save_config; 'Your configuration changes have been saved.' end def msg_freeze; 'This page is frozen. You will need an admin password to change this page.' end def msg_freeze_mark; '[Frozen]' end def msg_already_exist; 'That page already exists.' end def msg_page_not_exist; 'This page does not exist. Feel free to create it yourself :-)' end def msg_invalid_filename(s); "The page name contains an invalid character or is over the maximum length of #{s} bytes. Please fix the page name." end def msg_delete; 'Deleted' end def msg_delete_page; 'The page has been deleted.' end def msg_follow_link; 'Click the following link to view your page: ' end def msg_match_title; '(matched in title)' end def msg_match_keyword; '(matched in keyword)' end def msg_duplicate_page_title; 'That page title already exists.' end def msg_missing_anchor_title; 'Create and edit the page %s.' end # (config) def msg_config; 'Hiki Configuration'; end # (diff) def msg_diff_add; 'Added parts are displayed like this.'; end def msg_diff_del; 'Deleted parts are displayed like this.'; end # (edit) def msg_title; 'Title'; end def msg_keyword_form; 'Keyword(s) (one keyword per line)'; end def msg_freeze_checkbox; 'Freeze the current page.'; end def msg_preview_button; 'Preview'; end def msg_save; 'Save'; end def msg_update_timestamp; 'Update timestamp'; end def msg_latest; 'Latest version'; end def msg_rules; %Q|See TextFormattingRules for formatting help.|; end # (view) def msg_last_modified; 'Last modified'; end def msg_keyword; 'Keyword(s)'; end def msg_reference; 'References'; end end end