Browse Source

+ support of Russian (Windows)

florian 25 years ago
parent
commit
6458ba5eda
2 changed files with 17 additions and 4 deletions
  1. 12 2
      install/fpinst/install.pas
  2. 5 2
      install/fpinst/inststr.pas

+ 12 - 2
install/fpinst/install.pas

@@ -693,7 +693,9 @@ program install;
           NewSItem(dialog_language_russian,
           NewSItem(dialog_language_russian,
           NewSItem(dialog_language_hungarian,
           NewSItem(dialog_language_hungarian,
           NewSItem(dialog_language_spanish,
           NewSItem(dialog_language_spanish,
-          NewSItem(dialog_language_german,nil)))))))));
+          NewSItem(dialog_language_german,
+          NewSItem(dialog_language_russian_win,
+          nil))))))))));
        insert(rb);
        insert(rb);
        inc(line,7);
        inc(line,7);
        inc(line,1);
        inc(line,1);
@@ -908,6 +910,11 @@ program install;
                     cfg.language:='German';
                     cfg.language:='German';
                     msgfile:='errord.msg';
                     msgfile:='errord.msg';
                  end;
                  end;
+               7:
+                 begin
+                    cfg.language:='RussianWin';
+                    msgfile:='errorrw.msg';
+                 end;
             end;
             end;
          end;
          end;
     end;
     end;
@@ -1435,7 +1442,10 @@ begin
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.5  2000-09-22 11:07:51  florian
+  Revision 1.6  2000-09-22 12:15:49  florian
+    + support of Russian (Windows)
+
+  Revision 1.5  2000/09/22 11:07:51  florian
     + all language dependend strings are now resource strings
     + all language dependend strings are now resource strings
     + the -Fr switch is now set in the ppc386.cfg
     + the -Fr switch is now set in the ppc386.cfg
 
 

+ 5 - 2
install/fpinst/inststr.pas

@@ -34,6 +34,7 @@ unit inststr;
        dialog_language_hungarian = 'Hungarian';
        dialog_language_hungarian = 'Hungarian';
        dialog_language_spanish = 'Spanish';
        dialog_language_spanish = 'Spanish';
        dialog_language_german = 'German';
        dialog_language_german = 'German';
+       dialog_language_russian_win = 'Russian (Windows)';
 
 
        dialog_enddialog_title = 'Installation Successfull';
        dialog_enddialog_title = 'Installation Successfull';
 
 
@@ -92,8 +93,10 @@ unit inststr;
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.2  2000-09-22 11:07:51  florian
+  Revision 1.3  2000-09-22 12:15:49  florian
+    + support of Russian (Windows)
+
+  Revision 1.2  2000/09/22 11:07:51  florian
     + all language dependend strings are now resource strings
     + all language dependend strings are now resource strings
     + the -Fr switch is now set in the ppc386.cfg
     + the -Fr switch is now set in the ppc386.cfg
-
 }
 }