- Timestamp:
- Sep 28, 2022, 9:54:51 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Languages/BigMetro.cs.po
r100 r102 35 35 msgstr "Zpět" 36 36 37 #: uengine.sbeijing 38 msgid "Beijing" 39 msgstr "Peking" 40 37 41 #: uengine.sbigmetro 38 42 msgctxt "uengine.sbigmetro" … … 167 171 msgid "Rome" 168 172 msgstr "Řím" 173 174 #: uengine.sseoul 175 msgid "Seoul" 176 msgstr "Soul" 169 177 170 178 #: uengine.sstationnotdefined -
trunk/Languages/BigMetro.de.po
r100 r102 37 37 msgstr "Zurück" 38 38 39 #: uengine.sbeijing 40 msgid "Beijing" 41 msgstr "" 42 39 43 #: uengine.sbigmetro 40 44 #, fuzzy … … 183 187 msgstr "" 184 188 189 #: uengine.sseoul 190 msgid "Seoul" 191 msgstr "" 192 185 193 #: uengine.sstationnotdefined 186 194 msgid "Station have to be defined" -
trunk/Languages/BigMetro.fr.po
r100 r102 37 37 msgstr "Retour" 38 38 39 #: uengine.sbeijing 40 msgid "Beijing" 41 msgstr "" 42 39 43 #: uengine.sbigmetro 40 44 #, fuzzy … … 183 187 msgstr "" 184 188 189 #: uengine.sseoul 190 msgid "Seoul" 191 msgstr "" 192 185 193 #: uengine.sstationnotdefined 186 194 msgid "Station have to be defined" -
trunk/Languages/BigMetro.pot
r100 r102 25 25 msgstr "" 26 26 27 #: uengine.sbeijing 28 msgid "Beijing" 29 msgstr "" 30 27 31 #: uengine.sbigmetro 28 32 msgctxt "uengine.sbigmetro" … … 156 160 #: uengine.srome 157 161 msgid "Rome" 162 msgstr "" 163 164 #: uengine.sseoul 165 msgid "Seoul" 158 166 msgstr "" 159 167 -
trunk/UEngine.pas
r101 r102 387 387 STokyo = 'Tokyo'; 388 388 SRome = 'Rome'; 389 SSeoul = 'Seoul'; 390 SBeijing = 'Beijing'; 389 391 390 392 { TMetroCarriage } … … 1955 1957 LineColors := [clRed, clGreen, clYellow]; 1956 1958 InitialLineCount := 1; 1957 PassengersCountToUnlock := 200;1959 PassengersCountToUnlock := 300; 1958 1960 end; 1959 1961 with AddNew('Paris', SParis, 2138551) do begin … … 1961 1963 clPurple, clOlive, clAqua, clDarkYellow, clPink]; 1962 1964 InitialLineCount := 1; 1963 PassengersCountToUnlock := 300;1965 PassengersCountToUnlock := 500; 1964 1966 end; 1965 1967 with AddNew('Rome', SRome, 2872800) do begin 1966 1968 LineColors := [clRed, clGreen, clYellow]; 1967 1969 InitialLineCount := 1; 1968 PassengersCountToUnlock := 500;1970 PassengersCountToUnlock := 700; 1969 1971 end; 1970 1972 with AddNew('NewYork', SNewYork, 8804190) do begin 1971 1973 InitialLineCount := 1; 1972 PassengersCountToUnlock := 700;1974 PassengersCountToUnlock := 1000; 1973 1975 end; 1974 1976 with AddNew('London', SLondon, 9002488) do begin 1975 1977 InitialLineCount := 3; 1976 PassengersCountToUnlock := 1000; 1978 PassengersCountToUnlock := 1500; 1979 end; 1980 with AddNew('Seoul', SSeoul, 10197604) do begin 1981 InitialLineCount := 3; 1982 LineColors := [clRed, clGreen, clYellow, clOrange, clGray, 1983 clPink, clCyan, clMoneyGreen, clPurple, clSkyBlue]; 1984 PassengersCountToUnlock := 2000; 1977 1985 end; 1978 1986 with AddNew('Tokyo', STokyo, 13960236) do begin 1979 1987 InitialLineCount := 3; 1980 PassengersCountToUnlock := 2000; 1988 PassengersCountToUnlock := 2500; 1989 end; 1990 with AddNew('Beijing', SBeijing, 21893095) do begin 1991 InitialLineCount := 3; 1992 LineColors := [clRed, clGreen, clYellow, clOrange, clOlive, clGray, 1993 clPink, clCyan, clMoneyGreen, clPurple, clSkyBlue, clBrown]; 1994 PassengersCountToUnlock := 3000; 1981 1995 end; 1982 1996 end;
Note:
See TracChangeset
for help on using the changeset viewer.