solenv/bin/modules/installer/windows/property.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 3b702fd3176ced5d4770abd67075006c5f642ddb Author: kubak <[email protected]> AuthorDate: Mon Dec 22 00:25:43 2025 +0100 Commit: Hossein <[email protected]> CommitDate: Tue Dec 23 13:24:38 2025 +0100 tdf#121102 Remove unnecessary brackets in language packs Change-Id: I5bfdd436269ae0c25ed6e034d1d08f70571f7414 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196057 Tested-by: Jenkins Reviewed-by: Hossein <[email protected]> diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm index 90d39ff86cb2..f5362043cd40 100644 --- a/solenv/bin/modules/installer/windows/property.pm +++ b/solenv/bin/modules/installer/windows/property.pm @@ -115,7 +115,6 @@ sub get_english_language_string } $langstring =~ s/\,\s*$//; - $langstring = "(" . $langstring . ")"; return $langstring; } @@ -159,7 +158,7 @@ sub get_productname_for_property_table($$) elsif ( $installer::globals::helppack ) { my $langstring = get_english_language_string(); # New: (English, German) - $productname = $name . " " . $version . " Help Pack" . " " . $langstring; + $productname = $name . " " . $version . " Help Pack:" . " " . $langstring; } # Saving this name in hash $allvariables for further usage
