This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, 6.1 has been updated
       via  a77991ae9c5a69974a231b4844bc6b6f23d042dd (commit)
      from  2ea8b90d698c83f297cfab2e4308d364604ca344 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=a77991ae9c5a69974a231b4844bc6b6f23d042dd

commit a77991ae9c5a69974a231b4844bc6b6f23d042dd
Author: Franck Villaume <[email protected]>
Date:   Thu May 10 15:11:47 2018 +0200

    Add missing information about Markdown support in tooltips

diff --git a/src/common/include/html.php b/src/common/include/html.php
index 949b4ff..556c4fa 100644
--- a/src/common/include/html.php
+++ b/src/common/include/html.php
@@ -446,10 +446,18 @@ function html_get_tooltip_description($element_name) {
                        return _('The canned response drop-down represents a 
list of project admin-defined canned responses to common support or bug 
submission.')
                                ._('If you are a project admin you can click 
the “Manage Canned Responses” link to define your own canned responses');
                case 'comment':
-                       return _('Anyone can add here comments to give 
additional information, answers and solutions. Please, be as precise as 
possible to avoid misunderstanding. If relevant, screenshots or documents can 
be added as attached files.');
+                       $text = _('Anyone can add here comments to give 
additional information, answers and solutions. Please, be as precise as 
possible to avoid misunderstanding. If relevant, screenshots or documents can 
be added as attached files.');
+                       if (forge_get_config('tracker_parser_type') == 
'markdown') {
+                               $text .= ' '._('Use Markdown Syntax');
+                       }
+                       return $text;
                case 'description':
-                       return _('Enter the complete description.')
+                       $text = _('Enter the complete description.')
                                ._("Editing tips:http,https or ftp: Hyperlinks. 
[#NNN]: Tracker id NNN. [TNNN]: Task id NNN. [wiki:&lt;pagename&gt;]: Wiki 
page. [forum:&lt;msg_id&gt;]: Forum post. [DNNN]: Document id NNN.");
+                       if (forge_get_config('tracker_parser_type') == 
'markdown') {
+                               $text .= ' '._('Use Markdown Syntax');
+                       }
+                       return $text;
                case 'attach_file':
                        return _('When you wish to attach a file to a tracker 
item you must check this checkbox before submitting changes.');
                case 'monitor':

-----------------------------------------------------------------------

Summary of changes:
 src/common/include/html.php | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to