6e5925a019a2cab8a5b52f827b359ce8b2a583fb
nas ! Added /team_mods/ back to...

nas authored 13 years ago

1) <?xml version="1.0"?>
2) <!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification">
3) <modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/">
4) 	<id>SimpleDesk:Topic_Solved_Mod</id>
5) 	<version>1.0</version>
6) 
7) 	<!-- English language -->		
8) 	<file name="$languagedir/Modifications.english.php">	
9) 		<operation>
10) 			<search position="end" />
11) 			<add><![CDATA[// Topic solved mod
12) $txt['topic_solved_title'] = 'Topic Solved mod';
13) $txt['solve_topic'] = '<strong style="color: green">Mark topic solved</strong>';
14) $txt['unsolve_topic'] = '<strong style="color: red">Mark topic not solved</strong>';
15) $txt['modlog_ac_solve'] = 'Solved &quot;{topic}&quot; by {member}';
16) $txt['modlog_ac_unsolve'] = 'Unsolved &quot;{topic}&quot; by {member}';
17) $txt['modlog_solve_log'] = 'Topic solved log';
18) $txt['modlog_solve_log_desc'] = 'Below is a list of all topics that have been solved or unsolved by your users.<br /><strong>Please note:</strong> Entries cannot be removed from this log until they are at least twenty-four hours old.';
19) $txt['modlog_solve_log_no_entries_found'] = 'There are currently no entries in the topic solved log.';
20) $txt['solve_log_help'] = '<strong>Topic solved log</strong><br />This section allows members of the moderation team to track all usage of the topic solved/not solved feature. To ensure that moderators cannot remove references to the actions they have performed, entries may not be deleted until 24 hours after the action was taken.';
gruffen ! [Topic Solved] Fix the pe...

gruffen authored 12 years ago

21) 
nas ! Added /team_mods/ back to...

nas authored 13 years ago

22) $txt['permissionname_solve_topic'] = 'Mark topics solved/not solved';
gruffen ! [Topic Solved] Fix the pe...

gruffen authored 12 years ago

23) $txt['permissionhelp_solve_topic'] = 'This permission will allow the user to mark topics as solved and not solved.';
nas ! Added /team_mods/ back to...

nas authored 13 years ago

24) $txt['permissionname_solve_topic_any'] = 'Any topic';
25) $txt['permissionname_solve_topic_own'] = 'Own topic';
gruffen ! [Topic Solved] Fix the pe...

gruffen authored 12 years ago

26) $txt['permissionname_simple_solve_topic_own'] = 'Mark their own topics solved';
27) $txt['permissionname_simple_solve_topic_any'] = 'Mark any topics solved';
28) 
gruffen [Topic solved] Some stuff I...

gruffen authored 12 years ago

29) $txt['cannot_solve_topic_any'] = 'You do not have permission to mark topics solved.';
30) $txt['cannot_solve_topic_own'] = 'You do not have permission to mark topics solved.';
nas ! Added /team_mods/ back to...

nas authored 13 years ago

31) $txt['enable_solved_log'] = 'Enable logging of topic solving (Requires moderation logging to be enabled)';
32) $txt['topicsolved_board_desc'] = '<span class="smalltext">Please select the boards you wish to enable the topic solved feature in.</span>';
33) $txt['topicsolved_highlight'] = 'Highlight solved topics on the message index';
34) $txt['topicsolved_highlight_col1'] = 'Color for highlighted solved topics (lighter columns, such as replies/view)';
35) $txt['topicsolved_highlight_col2'] = 'Color for highlighted solved topics (darker columns, such as subject/started by)';
36) $txt['topicsolved_display_notice'] = 'Display a notice inside of solved topics';
37) $txt['topicsolved_is_solved'] = '<strong style="color: green;">Topic solved</strong><br />This topic is marked as solved and as such require no attention unless you want to bump this issue.';
jdarwood007 Updated topic solved for SM...

jdarwood007 authored 6 years ago

38) $txt['topicsolved_not_enabled'] = 'Topic solved is not enabled on this board.';
39) $txt['cannot_solve_own'] = 'You can not mark your own topics as solved';
40) $txt['cannot_solve_any'] = 'You can not mark just any topic as solved';]]></add>
nas ! Added /team_mods/ back to...

nas authored 13 years ago

41) 		</operation>
42) 	</file>
43) 	<file name="$languagedir/Modifications.english-utf8.php" error="skip">	
44) 		<operation>
45) 			<search position="end" />
46) 			<add><![CDATA[// Topic solved mod
47) $txt['topic_solved_title'] = 'Topic Solved mod';
48) $txt['solve_topic'] = '<strong style="color: green">Mark topic solved</strong>';
49) $txt['unsolve_topic'] = '<strong style="color: red">Mark topic not solved</strong>';
50) $txt['modlog_ac_solve'] = 'Solved &quot;{topic}&quot; by {member}';
51) $txt['modlog_ac_unsolve'] = 'Unsolved &quot;{topic}&quot; by {member}';
52) $txt['modlog_solve_log'] = 'Topic solved log';
53) $txt['modlog_solve_log_desc'] = 'Below is a list of all topics that have been solved or unsolved by your users.<br /><strong>Please note:</strong> Entries cannot be removed from this log until they are at least twenty-four hours old.';
54) $txt['modlog_solve_log_no_entries_found'] = 'There are currently no entries in the topic solved log.';
55) $txt['solve_log_help'] = '<strong>Topic solved log</strong><br />This section allows members of the moderation team to track all usage of the topic solved/not solved feature. To ensure that moderators cannot remove references to the actions they have performed, entries may not be deleted until 24 hours after the action was taken.';
gruffen ! [Topic Solved] Fix the pe...

gruffen authored 12 years ago

56) 
nas ! Added /team_mods/ back to...

nas authored 13 years ago

57) $txt['permissionname_solve_topic'] = 'Mark topics solved/not solved';
gruffen ! [Topic Solved] Fix the pe...

gruffen authored 12 years ago

58) $txt['permissionhelp_solve_topic'] = 'This permission will allow the user to mark topics as solved and not solved.';
59) $txt['permissionname_solve_topic_any'] = 'Any topic';
60) $txt['permissionname_solve_topic_own'] = 'Own topic';
61) $txt['permissionname_simple_solve_topic_own'] = 'Mark their own topics solved';
62) $txt['permissionname_simple_solve_topic_any'] = 'Mark any topics solved';
63) 
gruffen [Topic solved] Some stuff I...

gruffen authored 12 years ago

64) $txt['cannot_solve_topic_any'] = 'You do not have permission to mark topics solved.';
65) $txt['cannot_solve_topic_own'] = 'You do not have permission to mark topics solved.';
gruffen ! [Topic Solved] Fix the pe...

gruffen authored 12 years ago

66) $txt['enable_solved_log'] = 'Enable logging of topic solving (Requires moderation logging to be enabled)';
nas ! Added /team_mods/ back to...

nas authored 13 years ago

67) $txt['topicsolved_board_desc'] = '<span class="smalltext">Please select the boards you wish to enable the topic solved feature in.</span>';
gruffen ! [Topic Solved] Fix the pe...

gruffen authored 12 years ago

68) $txt['topicsolved_highlight'] = 'Highlight solved topics on the message index';
69) $txt['topicsolved_highlight_col1'] = 'Color for highlighted solved topics (lighter columns, such as replies/view)';
70) $txt['topicsolved_highlight_col2'] = 'Color for highlighted solved topics (darker columns, such as subject/started by)';