annotate forum/Themes/default/languages/Modlog.english.php @ 78:96118bc49f04 website

Add RGU-MFS
author Chris Cannam
date Thu, 17 Oct 2013 09:22:53 +0100
parents e3e11437ecea
children
rev   line source
Chris@76 1 <?php
Chris@76 2 // Version: 2.0; Modlog
Chris@76 3
Chris@76 4 global $scripturl;
Chris@76 5
Chris@76 6 $txt['modlog_date'] = 'Date';
Chris@76 7 $txt['modlog_member'] = 'Member';
Chris@76 8 $txt['modlog_position'] = 'Position';
Chris@76 9 $txt['modlog_action'] = 'Action';
Chris@76 10 $txt['modlog_ip'] = 'IP';
Chris@76 11 $txt['modlog_search_result'] = 'Search Results';
Chris@76 12 $txt['modlog_total_entries'] = 'Total Entries';
Chris@76 13 $txt['modlog_ac_approve_topic'] = 'Approved topic &quot;{topic}&quot; by &quot;{member}&quot;';
Chris@76 14 $txt['modlog_ac_approve'] = 'Approved message &quot;{subject}&quot; in &quot;{topic}&quot; by &quot;{member}&quot;';
Chris@76 15 $txt['modlog_ac_lock'] = 'Locked &quot;{topic}&quot;';
Chris@76 16 $txt['modlog_ac_warning'] = 'Warned {member} for &quot;{message}&quot;';
Chris@76 17 $txt['modlog_ac_unlock'] = 'Unlocked &quot;{topic}&quot;';
Chris@76 18 $txt['modlog_ac_sticky'] = 'Stickied &quot;{topic}&quot;';
Chris@76 19 $txt['modlog_ac_unsticky'] = 'Un-Stickied &quot;{topic}&quot;';
Chris@76 20 $txt['modlog_ac_delete'] = 'Deleted &quot;{subject}&quot; by &quot;{member}&quot; from &quot;{topic}&quot;';
Chris@76 21 $txt['modlog_ac_delete_member'] = 'Deleted member &quot;{name}&quot;';
Chris@76 22 $txt['modlog_ac_remove'] = 'Removed topic &quot;{topic}&quot; from &quot;{board}&quot;';
Chris@76 23 $txt['modlog_ac_modify'] = 'Edited &quot;{message}&quot; by &quot;{member}&quot;';
Chris@76 24 $txt['modlog_ac_merge'] = 'Merged topics to create &quot;{topic}&quot;';
Chris@76 25 $txt['modlog_ac_split'] = 'Split &quot;{topic}&quot; to create &quot;{new_topic}&quot;';
Chris@76 26 $txt['modlog_ac_move'] = 'Moved &quot;{topic}&quot; from &quot;{board_from}&quot; to &quot;{board_to}&quot;';
Chris@76 27 $txt['modlog_ac_profile'] = 'Edit the profile of &quot;{member}&quot;';
Chris@76 28 $txt['modlog_ac_pruned'] = 'Pruned some posts older than {days} days';
Chris@76 29 $txt['modlog_ac_news'] = 'Edited the news';
Chris@76 30 $txt['modlog_enter_comment'] = 'Enter Moderation Comment';
Chris@76 31 $txt['modlog_moderation_log'] = 'Moderation Log';
Chris@76 32 $txt['modlog_moderation_log_desc'] = 'Below is a list of all the moderation actions that have been carried out by moderators of the forum.<br /><strong>Please note:</strong> Entries cannot be removed from this log until they are at least twenty-four hours old.';
Chris@76 33 $txt['modlog_no_entries_found'] = 'There are currently no moderation log entries.';
Chris@76 34 $txt['modlog_remove'] = 'Remove';
Chris@76 35 $txt['modlog_removeall'] = 'Remove All';
Chris@76 36 $txt['modlog_go'] = 'Go';
Chris@76 37 $txt['modlog_add'] = 'Add';
Chris@76 38 $txt['modlog_search'] = 'Quick Search';
Chris@76 39 $txt['modlog_by'] = 'By';
Chris@76 40 $txt['modlog_id'] = '<em>Deleted - ID:%1$d</em>';
Chris@76 41
Chris@76 42 $txt['modlog_ac_add_warn_template'] = 'Added warning template: &quot;{template}&quot;';
Chris@76 43 $txt['modlog_ac_modify_warn_template'] = 'Edited the warning template: &quot;{template}&quot;';
Chris@76 44 $txt['modlog_ac_delete_warn_template'] = 'Deleted the warning template: &quot;{template}&quot;';
Chris@76 45
Chris@76 46 $txt['modlog_ac_ban'] = 'Added ban triggers:';
Chris@76 47 $txt['modlog_ac_ban_trigger_member'] = ' <em>Member:</em> {member}';
Chris@76 48 $txt['modlog_ac_ban_trigger_email'] = ' <em>Email:</em> {email}';
Chris@76 49 $txt['modlog_ac_ban_trigger_ip_range'] = ' <em>IP:</em> {ip_range}';
Chris@76 50 $txt['modlog_ac_ban_trigger_hostname'] = ' <em>Hostname:</em> {hostname}';
Chris@76 51
Chris@76 52 $txt['modlog_admin_log'] = 'Administration Log';
Chris@76 53 $txt['modlog_admin_log_desc'] = 'Below is a list of administration actions which have been logged on your forum.<br /><strong>Please note:</strong> Entries cannot be removed from this log until they are at least twenty-four hours old.';
Chris@76 54 $txt['modlog_admin_log_no_entries_found'] = 'There are currently no administration log entries.';
Chris@76 55
Chris@76 56 // Admin type strings.
Chris@76 57 $txt['modlog_ac_upgrade'] = 'Upgraded the forum to version {version}';
Chris@76 58 $txt['modlog_ac_install'] = 'Installed version {version}';
Chris@76 59 $txt['modlog_ac_add_board'] = 'Added a new board: &quot;{board}&quot;';
Chris@76 60 $txt['modlog_ac_edit_board'] = 'Edited the &quot;{board}&quot; board';
Chris@76 61 $txt['modlog_ac_delete_board'] = 'Deleted the &quot;{boardname}&quot; board';
Chris@76 62 $txt['modlog_ac_add_cat'] = 'Added a new category, &quot;{catname}&quot;';
Chris@76 63 $txt['modlog_ac_edit_cat'] = 'Edited the &quot;{catname}&quot; category';
Chris@76 64 $txt['modlog_ac_delete_cat'] = 'Deleted the &quot;{catname}&quot; category';
Chris@76 65
Chris@76 66 $txt['modlog_ac_delete_group'] = 'Deleted the &quot;{group}&quot; group';
Chris@76 67 $txt['modlog_ac_add_group'] = 'Added the &quot;{group}&quot; group';
Chris@76 68 $txt['modlog_ac_edited_group'] = 'Edited the &quot;{group}&quot; group';
Chris@76 69 $txt['modlog_ac_added_to_group'] = 'Added &quot;{member}&quot; to the &quot;{group}&quot; group';
Chris@76 70 $txt['modlog_ac_removed_from_group'] = 'Removed &quot;{member}&quot; from the &quot;{group}&quot; group';
Chris@76 71 $txt['modlog_ac_removed_all_groups'] = 'Removed &quot;{member}&quot; from all groups';
Chris@76 72
Chris@76 73 $txt['modlog_ac_remind_member'] = 'Sent out a reminder to &quot;{member}&quot; to activate their account';
Chris@76 74 $txt['modlog_ac_approve_member'] = 'Approved/Activated the account of &quot;{member}&quot;';
Chris@76 75 $txt['modlog_ac_newsletter'] = 'Sent Newsletter';
Chris@76 76
Chris@76 77 $txt['modlog_ac_install_package'] = 'Installed new package: &quot;{package}&quot;, version {version}';
Chris@76 78 $txt['modlog_ac_upgrade_package'] = 'Upgraded package: &quot;{package}&quot; to version {version}';
Chris@76 79 $txt['modlog_ac_uninstall_package'] = 'Uninstalled package: &quot;{package}&quot;, version {version}';
Chris@76 80
Chris@76 81 // Restore topic.
Chris@76 82 $txt['modlog_ac_restore_topic'] = 'Restored topic &quot;{topic}&quot; from &quot;{board}&quot; to &quot;{board_to}&quot;';
Chris@76 83 $txt['modlog_ac_restore_posts'] = 'Restored posts from &quot;{subject}&quot; to the topic &quot;{topic}&quot; in the &quot;{board}&quot; board.';
Chris@76 84
Chris@76 85 $txt['modlog_parameter_guest'] = '<em>Guest</em>';
Chris@76 86
Chris@76 87 ?>