浏览代码

+ support of Russian (Windows)

florian 25 年之前
父节点
当前提交
6458ba5eda
共有 2 个文件被更改,包括 17 次插入4 次删除
  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_hungarian,
           NewSItem(dialog_language_spanish,
-          NewSItem(dialog_language_german,nil)))))))));
+          NewSItem(dialog_language_german,
+          NewSItem(dialog_language_russian_win,
+          nil))))))))));
        insert(rb);
        inc(line,7);
        inc(line,1);
@@ -908,6 +910,11 @@ program install;
                     cfg.language:='German';
                     msgfile:='errord.msg';
                  end;
+               7:
+                 begin
+                    cfg.language:='RussianWin';
+                    msgfile:='errorrw.msg';
+                 end;
             end;
          end;
     end;
@@ -1435,7 +1442,10 @@ begin
 end.
 {
   $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
     + 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_spanish = 'Spanish';
        dialog_language_german = 'German';
+       dialog_language_russian_win = 'Russian (Windows)';
 
        dialog_enddialog_title = 'Installation Successfull';
 
@@ -92,8 +93,10 @@ unit inststr;
 end.
 {
   $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
     + the -Fr switch is now set in the ppc386.cfg
-
 }