diff options
Diffstat (limited to 'helpcontent2/to-wiki/getalltitles.py')
-rwxr-xr-x | helpcontent2/to-wiki/getalltitles.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helpcontent2/to-wiki/getalltitles.py b/helpcontent2/to-wiki/getalltitles.py index b9fb989416..f1167830f6 100755 --- a/helpcontent2/to-wiki/getalltitles.py +++ b/helpcontent2/to-wiki/getalltitles.py @@ -26,6 +26,7 @@ def make_unique(title): replace_text_list = [ ["$[officename]",""], # to fit both LibreOffice and BrOffice ["%PRODUCTNAME",""], # to fit both LibreOffice and BrOffice + ["$PRODUCTNAME",""], # to fit both LibreOffice and BrOffice ['"+"',"Plus"], ['"*"',"Star"], ['"-"',"Minus"], @@ -43,7 +44,8 @@ replace_text_list = [ replace_readable_list = [ ["$[officename]","{{ProductName}}"], - ["%PRODUCTNAME","{{ProductName}}"] + ["%PRODUCTNAME","{{ProductName}}"], + ["$PRODUCTNAME","{{ProductName}}"] ] modules_list = [ |