Browse Source

* Implementation of values 11..15 of negcurrentformat from Zeljan Rikalo

git-svn-id: trunk@15982 -
michael 15 years ago
parent
commit
154c6ec4d2
1 changed files with 6 additions and 1 deletions
  1. 6 1
      rtl/objpas/sysutils/sysstr.inc

+ 6 - 1
rtl/objpas/sysutils/sysstr.inc

@@ -1439,7 +1439,12 @@ Begin
             7: Result := Result + FormatSettings.CurrencyString + '-';
             8: Result := '-' + Result + ' ' + FormatSettings.CurrencyString;
             9: Result := '-' + FormatSettings.CurrencyString + ' ' + Result;
-            10: Result := FormatSettings.CurrencyString + ' ' + Result + '-';
+            10: Result := Result + ' ' + FormatSettings.CurrencyString + '-';
+            11: Result := FormatSettings.CurrencyString + ' ' + Result + '-';
+            12: Result := FormatSettings.CurrencyString + ' ' + '-' + Result;
+            13: Result := Result + '-' + ' ' + FormatSettings.CurrencyString;
+            14: Result := '(' + FormatSettings.CurrencyString + ' ' + Result + ')';
+            15: Result := '(' + Result + ' ' + FormatSettings.CurrencyString + ')';
           End;
         End;
       End;