You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
(11) |
Apr
(36) |
May
(74) |
Jun
(9) |
Jul
|
Aug
(36) |
Sep
(11) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
|
Mar
(94) |
Apr
(63) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(12) |
2009 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <cl...@us...> - 2007-04-13 14:18:16
|
Revision: 39 http://freetrain.svn.sourceforge.net/freetrain/?rev=39&view=rev Author: clrg Date: 2007-04-13 07:18:15 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Create branch for c477's unofficial FreeTrain branch from FreeTrain CVS Added Paths: ----------- branches/c477_unofficial200309/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-13 13:37:05
|
Revision: 38 http://freetrain.svn.sourceforge.net/freetrain/?rev=38&view=rev Author: himasaram Date: 2007-04-13 06:37:01 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Translation fixes Modified Paths: -------------- trunk/FreeTrain/core/contributions/others/NewWorldDialog.cs trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs trunk/FreeTrain/core/contributions/train/PatternTrainImpl.cs trunk/FreeTrain/core/controllers/rail/PlatformController.cs trunk/FreeTrain/core/controllers/rail/SlopeRailRoadController.cs trunk/FreeTrain/core/controllers/rail/TrainPlacementController.cs trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs Modified: trunk/FreeTrain/core/contributions/others/NewWorldDialog.cs =================================================================== --- trunk/FreeTrain/core/contributions/others/NewWorldDialog.cs 2007-04-12 03:12:28 UTC (rev 37) +++ trunk/FreeTrain/core/contributions/others/NewWorldDialog.cs 2007-04-13 13:37:01 UTC (rev 38) @@ -1,4 +1,4 @@ -using System; +using System; using System.Drawing; using System.Collections; using System.ComponentModel; @@ -206,7 +206,7 @@ World w = new World( new Distance(x,y+z*2,z), z/4 ); w.name = this.name.Text; if(w.name==null || w.name.Length==0) - w.name = "Nanashi-san"; + w.name = "Terra Incognita"; //! w.name = "ななしさん"; return w; // TODO: Z dimension Modified: trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs =================================================================== --- trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs 2007-04-12 03:12:28 UTC (rev 37) +++ trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs 2007-04-13 13:37:01 UTC (rev 38) @@ -1,76 +1,76 @@ -using System; -using System.Xml; -using freetrain.framework; -using freetrain.framework.plugin; - -namespace freetrain.contributions.train -{ - /// <summary> - /// Parameterized train contribution implementation - /// where an user can specify (a) head, (b) tail, and (c) other intermediate - /// cars separately. - /// </summary> - [Serializable] - public class ParamTrainImpl : AbstractTrainContributionImpl - { - /// <summary> - /// Parses a train contribution from a DOM node. - /// </summary> - /// <exception cref="XmlException">If the parsing fails</exception> - public ParamTrainImpl( XmlElement e ) : base(e) { - composition = (XmlElement)XmlUtil.selectSingleNode(e,"composition"); - } - - /// <summary> - /// <composition> element in the plug-in xml file. - /// </summary> - private XmlElement composition; - - protected internal override void onInitComplete() { - base.onInitComplete(); - - carHeadType = getCarType(composition,"head"); - carBodyType = getCarType(composition,"body"); - carTailType = getCarType(composition,"tail"); - - if(carBodyType==null) - throw new FormatException("<body> part was not specified"); - //! throw new FormatException("<body>要素が指定されませんでした"); - - composition = null; - } - - private TrainCarContribution getCarType( XmlElement comp, string name ) { - XmlElement e = (XmlElement)comp.SelectSingleNode(name); - if(e==null) return null; - - string idref = e.Attributes["carRef"].Value; - if(id==null) throw new FormatException("carRef lacks attribute"); - //! if(id==null) throw new FormatException("carRef属性がありません"); - - TrainCarContribution contrib = (TrainCarContribution)Core.plugins.getContribution(idref); - if(contrib==null) throw new FormatException( - string.Format( "id='{0}' lacks TrainCar contribution", idref )); - //! string.Format( "id='{0}'のTrainCarコントリビューションがありません", idref )); - - return contrib; - } - - private TrainCarContribution carHeadType,carBodyType,carTailType; - - public override TrainCarContribution[] create( int length ) { - TrainCarContribution[] r = new TrainCarContribution[length]; - for( int i=0; i<r.Length; i++ ) - r[i] = carBodyType; - - if( carHeadType!=null ) - r[0] = carHeadType; - - if( carTailType!=null ) - r[r.Length-1] = carTailType; - - return r; - } - - } -} +using System; +using System.Xml; +using freetrain.framework; +using freetrain.framework.plugin; + +namespace freetrain.contributions.train +{ + /// <summary> + /// Parameterized train contribution implementation + /// where an user can specify (a) head, (b) tail, and (c) other intermediate + /// cars separately. + /// </summary> + [Serializable] + public class ParamTrainImpl : AbstractTrainContributionImpl + { + /// <summary> + /// Parses a train contribution from a DOM node. + /// </summary> + /// <exception cref="XmlException">If the parsing fails</exception> + public ParamTrainImpl( XmlElement e ) : base(e) { + composition = (XmlElement)XmlUtil.selectSingleNode(e,"composition"); + } + + /// <summary> + /// <composition> element in the plug-in xml file. + /// </summary> + private XmlElement composition; + + protected internal override void onInitComplete() { + base.onInitComplete(); + + carHeadType = getCarType(composition,"head"); + carBodyType = getCarType(composition,"body"); + carTailType = getCarType(composition,"tail"); + + if(carBodyType==null) + throw new FormatException("<body> part was not specified"); + //! throw new FormatException("<body>要素が指定されませんでした"); + + composition = null; + } + + private TrainCarContribution getCarType( XmlElement comp, string name ) { + XmlElement e = (XmlElement)comp.SelectSingleNode(name); + if(e==null) return null; + + string idref = e.Attributes["carRef"].Value; + if(id==null) throw new FormatException("carRef attribute is missing"); + //! if(id==null) throw new FormatException("carRef属性がありません"); + + TrainCarContribution contrib = (TrainCarContribution)Core.plugins.getContribution(idref); + if(contrib==null) throw new FormatException( + string.Format( "id='{0}' is missing TrainCar contribution", idref )); + //! string.Format( "id='{0}'のTrainCarコントリビューションがありません", idref )); + + return contrib; + } + + private TrainCarContribution carHeadType,carBodyType,carTailType; + + public override TrainCarContribution[] create( int length ) { + TrainCarContribution[] r = new TrainCarContribution[length]; + for( int i=0; i<r.Length; i++ ) + r[i] = carBodyType; + + if( carHeadType!=null ) + r[0] = carHeadType; + + if( carTailType!=null ) + r[r.Length-1] = carTailType; + + return r; + } + + } +} Modified: trunk/FreeTrain/core/contributions/train/PatternTrainImpl.cs =================================================================== --- trunk/FreeTrain/core/contributions/train/PatternTrainImpl.cs 2007-04-12 03:12:28 UTC (rev 37) +++ trunk/FreeTrain/core/contributions/train/PatternTrainImpl.cs 2007-04-13 13:37:01 UTC (rev 38) @@ -1,93 +1,96 @@ -using System; -using System.Collections; -using System.Xml; -using freetrain.framework; -using freetrain.framework.plugin; - -namespace freetrain.contributions.train -{ - /// <summary> - /// Parameterized train contribution implementation - /// where an user can specify (a) head, (b) tail, and (c) other intermediate - /// cars separately. - /// </summary> - [Serializable] - public class PatternTrainImpl : AbstractTrainContributionImpl - { - /// <summary> - /// Parses a train contribution from a DOM node. - /// </summary> - /// <exception cref="XmlException">If the parsing fails</exception> - public PatternTrainImpl( XmlElement e ) : base(e) { - config = (XmlElement)XmlUtil.selectSingleNode(e,"config"); - } - - /// <summary> - /// <config> element in the plug-in xml file. - /// </summary> - private XmlElement config; - - /// <summary> - /// Map from a char 'x' to TrainCarContribution - /// </summary> - private readonly IDictionary cars = new Hashtable(); - - /// <summary> - /// Map from length to its composition. - /// </summary> - private readonly IDictionary compositions = new Hashtable(); - - protected internal override void onInitComplete() { - base.onInitComplete(); - - XmlNodeList lst = config.SelectNodes("car"); - foreach( XmlElement e in lst ) - cars.Add( e.Attributes["char"].Value[0], getCarType(e) ); - - lst = config.SelectNodes("composition"); - foreach( XmlElement e in lst ) - loadComposition(e); - - config = null; - } - - private TrainCarContribution getCarType( XmlElement e ) { - string idref = e.Attributes["ref"].Value; - if(idref==null) throw new FormatException("ref\x91\xAE\x90\xAB\x82\xAA\x82\xA0\x82\xE8\x82܂\xB9\x82\xF1"); - - TrainCarContribution contrib = (TrainCarContribution)Core.plugins.getContribution(idref); - if(contrib==null) throw new FormatException( - string.Format( "id='{0}'\x82\xCCTrainCar\x83R\x83\x93\x83g\x83\x8A\x83r\x83\x85\x81[\x83V\x83\x87\x83\x93\x82\xAA\x82\xA0\x82\xE8\x82܂\xB9\x82\xF1", idref )); - - return contrib; - } - - private void loadComposition( XmlElement e ) { - string comp = e.InnerText; - ArrayList a = new ArrayList(); - - while(comp.Length!=0) { - char head = comp[0]; - comp = comp.Substring(1); - - if( Char.IsWhiteSpace(head) ) - continue; // ignore whitespace - - // otherwise look up a table - TrainCarContribution car = (TrainCarContribution)cars[head]; - if(car==null) - throw new FormatException("\x8E\x9F\x82̕\xB6\x8E\x9A\x82͒\xE8\x8B`\x82\xB3\x82\xEA\x82Ă\xA2\x82܂\xB9\x82\xF1:"+head); - a.Add(car); - } - - compositions.Add( a.Count, a.ToArray(typeof(TrainCarContribution)) ); - } - - public override TrainCarContribution[] create( int length ) { - TrainCarContribution[] r = (TrainCarContribution[])compositions[length]; - if(r==null) return null; - else return (TrainCarContribution[])r.Clone(); - } - - } -} +using System; +using System.Collections; +using System.Xml; +using freetrain.framework; +using freetrain.framework.plugin; + +namespace freetrain.contributions.train +{ + /// <summary> + /// Parameterized train contribution implementation + /// where an user can specify (a) head, (b) tail, and (c) other intermediate + /// cars separately. + /// </summary> + [Serializable] + public class PatternTrainImpl : AbstractTrainContributionImpl + { + /// <summary> + /// Parses a train contribution from a DOM node. + /// </summary> + /// <exception cref="XmlException">If the parsing fails</exception> + public PatternTrainImpl( XmlElement e ) : base(e) { + config = (XmlElement)XmlUtil.selectSingleNode(e,"config"); + } + + /// <summary> + /// <config> element in the plug-in xml file. + /// </summary> + private XmlElement config; + + /// <summary> + /// Map from a char 'x' to TrainCarContribution + /// </summary> + private readonly IDictionary cars = new Hashtable(); + + /// <summary> + /// Map from length to its composition. + /// </summary> + private readonly IDictionary compositions = new Hashtable(); + + protected internal override void onInitComplete() { + base.onInitComplete(); + + XmlNodeList lst = config.SelectNodes("car"); + foreach( XmlElement e in lst ) + cars.Add( e.Attributes["char"].Value[0], getCarType(e) ); + + lst = config.SelectNodes("composition"); + foreach( XmlElement e in lst ) + loadComposition(e); + + config = null; + } + + private TrainCarContribution getCarType( XmlElement e ) { + string idref = e.Attributes["ref"].Value; + if(idref==null) throw new FormatException("ref attribute is missing"); + //! if(idref==null) throw new FormatException("ref属性がありません"); + + TrainCarContribution contrib = (TrainCarContribution)Core.plugins.getContribution(idref); + if(contrib==null) throw new FormatException( + string.Format( "id='{0}' is missing TrainCar contribution", idref )); + //! string.Format( "id='{0}'のTrainCarコントリビューションがありません", idref )); + + return contrib; + } + + private void loadComposition( XmlElement e ) { + string comp = e.InnerText; + ArrayList a = new ArrayList(); + + while(comp.Length!=0) { + char head = comp[0]; + comp = comp.Substring(1); + + if( Char.IsWhiteSpace(head) ) + continue; // ignore whitespace + + // otherwise look up a table + TrainCarContribution car = (TrainCarContribution)cars[head]; + if(car==null) + throw new FormatException("The following characters are undefined: "+head); + //! throw new FormatException("次の文字は定義されていません:"+head); + a.Add(car); + } + + compositions.Add( a.Count, a.ToArray(typeof(TrainCarContribution)) ); + } + + public override TrainCarContribution[] create( int length ) { + TrainCarContribution[] r = (TrainCarContribution[])compositions[length]; + if(r==null) return null; + else return (TrainCarContribution[])r.Clone(); + } + + } +} Modified: trunk/FreeTrain/core/controllers/rail/PlatformController.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/PlatformController.cs 2007-04-12 03:12:28 UTC (rev 37) +++ trunk/FreeTrain/core/controllers/rail/PlatformController.cs 2007-04-13 13:37:01 UTC (rev 38) @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections; using System.ComponentModel; using System.Drawing; @@ -283,7 +283,7 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 24); this.label1.TabIndex = 2; - this.label1.Text = "&Length:"; + this.label1.Text = "&Length:"; //! this.label1.Text = "長さ(&L):"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // Modified: trunk/FreeTrain/core/controllers/rail/SlopeRailRoadController.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/SlopeRailRoadController.cs 2007-04-12 03:12:28 UTC (rev 37) +++ trunk/FreeTrain/core/controllers/rail/SlopeRailRoadController.cs 2007-04-13 13:37:01 UTC (rev 38) @@ -1,4 +1,4 @@ -using System; +using System; using System.Drawing; using System.Collections; using System.ComponentModel; @@ -193,7 +193,7 @@ // costBox // this.costBox.cost = 0; - this.costBox.label = "Cost:"; + this.costBox.label = "Cost:"; //!this.costBox.label = "費用:"; this.costBox.Location = new System.Drawing.Point(8, 224); this.costBox.Name = "costBox"; Modified: trunk/FreeTrain/core/controllers/rail/TrainPlacementController.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/TrainPlacementController.cs 2007-04-12 03:12:28 UTC (rev 37) +++ trunk/FreeTrain/core/controllers/rail/TrainPlacementController.cs 2007-04-13 13:37:01 UTC (rev 38) @@ -1,4 +1,4 @@ -using System; +using System; using System.Diagnostics; using System.Drawing; using System.Collections; @@ -422,7 +422,7 @@ } if(!(rr.voxel.car is Train.TrainCar)) { MainWindow.showError("There are no cars"); - MainWindow.showError("車両がありません"); + //! MainWindow.showError("車両がありません"); return; } ((Train.TrainCar)rr.voxel.car).parent.remove(); Modified: trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs 2007-04-12 03:12:28 UTC (rev 37) +++ trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs 2007-04-13 13:37:01 UTC (rev 38) @@ -1,4 +1,4 @@ -using System; +using System; using System.Drawing; using System.Collections; using System.ComponentModel; @@ -142,7 +142,7 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(64, 20); this.label2.TabIndex = 2; - this.label2.Text = "&Lenght (number of cars):"; + this.label2.Text = "&Length (number of cars):"; //! this.label2.Text = "車両数(&L):"; this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight; // This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-12 03:12:26
|
Revision: 37 http://freetrain.svn.sourceforge.net/freetrain/?rev=37&view=rev Author: himasaram Date: 2007-04-11 20:12:28 -0700 (Wed, 11 Apr 2007) Log Message: ----------- Missing translations Modified Paths: -------------- trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/VCRConsole.cs Modified: trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs 2007-04-12 00:27:21 UTC (rev 36) +++ trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs 2007-04-12 03:12:28 UTC (rev 37) @@ -226,7 +226,7 @@ this.label3.Size = new System.Drawing.Size(48, 16); this.label3.TabIndex = 5; this.label3.Text = "&Bell:"; - this.label3.Text = "ベル(&B):"; + //! this.label3.Text = "ベル(&B):"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // PlatformPropertyDialog Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj 2007-04-12 00:27:21 UTC (rev 36) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj 2007-04-12 03:12:28 UTC (rev 37) @@ -314,6 +314,26 @@ Name="Output" SourceControlFiles="false" > + <File + RelativePath="DirectDraw.AlphaBlend_i.c" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + UsePrecompiledHeader="0" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + > + <Tool + Name="VCCLCompilerTool" + UsePrecompiledHeader="0" + /> + </FileConfiguration> + </File> </Filter> <File RelativePath="ReadMe.txt" Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/VCRConsole.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/VCRConsole.cs 2007-04-12 00:27:21 UTC (rev 36) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/VCRConsole.cs 2007-04-12 03:12:28 UTC (rev 37) @@ -162,9 +162,10 @@ this.btnPause, this.btnRecord, this.btnConfig}); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Name = "VCRConsole"; - this.Text = "ビデオレコーダ"; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; + this.Name = "VCRConsole"; + this.Text = "Video recorder"; + //! this.Text = "ビデオレコーダ"; this.ResumeLayout(false); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-12 00:27:22
|
Revision: 36 http://freetrain.svn.sourceforge.net/freetrain/?rev=36&view=rev Author: himasaram Date: 2007-04-11 17:27:21 -0700 (Wed, 11 Apr 2007) Log Message: ----------- Resolve a number of warnings and C++ build errors Modified Paths: -------------- trunk/FreeTrain/FreeTrain.sln trunk/FreeTrain/FreeTrain.suo trunk/FreeTrain/core/FreeTrain.Core.csproj trunk/FreeTrain/lib/Controls/FreeTrain.Controls.csproj trunk/FreeTrain/lib/DirectAudio.net/DirectAudio.net.csproj trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDrawAlphaBlend.idl trunk/FreeTrain/lib/DirectDraw.net/DirectDraw.net.csproj trunk/FreeTrain/lib/DirectShow.VideoRecorder/DirectShow.VideoRecorder.vcproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/FreeTrain.Bank.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/FreeTrain.StockMarket.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/DummyCars/FreeTrain.DummyCars.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/FreeTrain.RoadAccessory.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib.halfvoxel/FreeTrain.HalfVoxelStructure.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.477/FreeTrain.VinylHouse.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.creek.eikichiya/FreeTrain.Creek.Eikichiya.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.forest/FreeTrain.Forest.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.ricefield/FreeTrain.RiceField.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.music.a4mem/FreeTrain.A4MemBGM.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/FreeTrain.ElectricPole.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/FreeTrain.TrainGarage.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/FreeTrain.RailSignal.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/FreeTrain.SoccerStadium.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/FreeTrain.ManualTrainController.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/FreeTrain.TATTrainController.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/FreeTrain.Terrace.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.dbgwnd/FreeTrain.DebugWindow.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/FreeTrain.TerrainLoader.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/FreeTrain.VCR.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.trains.colorTest/FreeTrain.ColorTestTrain.csproj trunk/FreeTrain/tools/ColorDiff/Tool.ColorDiff.csproj trunk/FreeTrain/tools/Driver/Driver.csproj trunk/FreeTrain/tools/GUIDGen/Tool.GUIDGen.csproj trunk/FreeTrain/tools/PicturePreviewer/Tool.PicturePreviewer.csproj trunk/FreeTrain/tools/TrainListBuilder/Tool.TrainListBuilder.csproj trunk/FreeTrain/tools/XmlCombiner/Tool.XmlCombiner.csproj Modified: trunk/FreeTrain/FreeTrain.sln =================================================================== --- trunk/FreeTrain/FreeTrain.sln 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/FreeTrain.sln 2007-04-12 00:27:21 UTC (rev 36) @@ -83,275 +83,535 @@ Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug Unicode|Any CPU = Debug Unicode|Any CPU + Debug Unicode|Mixed Platforms = Debug Unicode|Mixed Platforms Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms Release Unicode|Any CPU = Release Unicode|Any CPU + Release Unicode|Mixed Platforms = Release Unicode|Mixed Platforms Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Any CPU.ActiveCfg = Release|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Any CPU.Build.0 = Release|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Mixed Platforms.Build.0 = Release|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Any CPU.ActiveCfg = Release|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Any CPU.Build.0 = Release|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Mixed Platforms.Build.0 = Release|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Any CPU.ActiveCfg = Release|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Any CPU.Build.0 = Release|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Any CPU.ActiveCfg = Release|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Any CPU.Build.0 = Release|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode|Any CPU.ActiveCfg = Debug|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Mixed Platforms.Build.0 = Debug|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode|Any CPU.ActiveCfg = Release|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode|Mixed Platforms.Build.0 = Release|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Any CPU.ActiveCfg = Release|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Mixed Platforms.ActiveCfg = Release|Win32 + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Mixed Platforms.Build.0 = Release|Win32 {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Any CPU.ActiveCfg = Release|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Any CPU.Build.0 = Release|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Mixed Platforms.Build.0 = Release|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Any CPU.Build.0 = Debug|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Any CPU.ActiveCfg = Release|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Any CPU.Build.0 = Release|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Mixed Platforms.Build.0 = Release|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Debug|Any CPU.Build.0 = Debug|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Release|Any CPU.ActiveCfg = Release|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Release|Any CPU.Build.0 = Release|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Release|Mixed Platforms.Build.0 = Release|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug|Any CPU.Build.0 = Debug|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release|Any CPU.ActiveCfg = Release|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release|Any CPU.Build.0 = Release|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release|Mixed Platforms.Build.0 = Release|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug|Any CPU.Build.0 = Debug|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release|Any CPU.ActiveCfg = Release|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release|Any CPU.Build.0 = Release|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release|Mixed Platforms.Build.0 = Release|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release|Any CPU.ActiveCfg = Release|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release|Any CPU.Build.0 = Release|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release|Mixed Platforms.Build.0 = Release|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release|Any CPU.ActiveCfg = Release|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release|Any CPU.Build.0 = Release|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release|Mixed Platforms.Build.0 = Release|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release|Any CPU.ActiveCfg = Release|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release|Any CPU.Build.0 = Release|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release|Mixed Platforms.Build.0 = Release|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release|Any CPU.ActiveCfg = Release|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release|Any CPU.Build.0 = Release|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release|Mixed Platforms.Build.0 = Release|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug|Any CPU.Build.0 = Debug|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release|Any CPU.ActiveCfg = Release|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release|Any CPU.Build.0 = Release|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release|Mixed Platforms.Build.0 = Release|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release|Any CPU.ActiveCfg = Release|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release|Any CPU.Build.0 = Release|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release|Mixed Platforms.Build.0 = Release|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release|Any CPU.ActiveCfg = Release|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release|Any CPU.Build.0 = Release|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release|Mixed Platforms.Build.0 = Release|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Release|Any CPU.ActiveCfg = Release|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Release|Any CPU.Build.0 = Release|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Release|Mixed Platforms.Build.0 = Release|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release|Any CPU.ActiveCfg = Release|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release|Any CPU.Build.0 = Release|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release|Mixed Platforms.Build.0 = Release|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release|Any CPU.ActiveCfg = Release|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release|Any CPU.Build.0 = Release|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release|Mixed Platforms.Build.0 = Release|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release|Any CPU.ActiveCfg = Release|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release|Any CPU.Build.0 = Release|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release|Mixed Platforms.Build.0 = Release|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release|Any CPU.ActiveCfg = Release|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release|Any CPU.Build.0 = Release|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release|Mixed Platforms.Build.0 = Release|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release|Any CPU.ActiveCfg = Release|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release|Any CPU.Build.0 = Release|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release|Mixed Platforms.Build.0 = Release|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release|Any CPU.ActiveCfg = Release|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release|Any CPU.Build.0 = Release|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release|Mixed Platforms.Build.0 = Release|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release|Any CPU.ActiveCfg = Release|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release|Any CPU.Build.0 = Release|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Any CPU.Build.0 = Release|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Mixed Platforms.Build.0 = Debug|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode|Any CPU.ActiveCfg = Release|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode|Mixed Platforms.Build.0 = Release|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Any CPU.ActiveCfg = Release|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Mixed Platforms.ActiveCfg = Release|Win32 + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Mixed Platforms.Build.0 = Release|Win32 {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Any CPU.ActiveCfg = Release|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Any CPU.Build.0 = Release|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Mixed Platforms.Build.0 = Release|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Any CPU.ActiveCfg = Release|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Any CPU.Build.0 = Release|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Mixed Platforms.Build.0 = Release|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Any CPU.ActiveCfg = Release|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Any CPU.Build.0 = Release|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Mixed Platforms.Build.0 = Release|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Any CPU.ActiveCfg = Release|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Any CPU.Build.0 = Release|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Mixed Platforms.Build.0 = Release|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug Unicode|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Mixed Platforms.Build.0 = Debug Unicode|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode|Mixed Platforms.ActiveCfg = Release Unicode|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode|Mixed Platforms.Build.0 = Release Unicode|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Any CPU.ActiveCfg = Release|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Any CPU.Build.0 = Release|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Mixed Platforms.Build.0 = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.ActiveCfg = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.Build.0 = Release|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Mixed Platforms.Build.0 = Release|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release|Any CPU.ActiveCfg = Release|Any CPU {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release|Any CPU.Build.0 = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release|Mixed Platforms.Build.0 = Release|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode|Mixed Platforms.ActiveCfg = Debug|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode|Mixed Platforms.Build.0 = Debug|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode|Mixed Platforms.ActiveCfg = Release|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode|Mixed Platforms.Build.0 = Release|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Any CPU.ActiveCfg = Release|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Any CPU.Build.0 = Release|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Mixed Platforms.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE Modified: trunk/FreeTrain/FreeTrain.suo =================================================================== (Binary files differ) Modified: trunk/FreeTrain/core/FreeTrain.Core.csproj =================================================================== --- trunk/FreeTrain/core/FreeTrain.Core.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/core/FreeTrain.Core.csproj 2007-04-12 00:27:21 UTC (rev 36) @@ -8,7 +8,6 @@ <AssemblyName>FreeTrain.Core</AssemblyName> <OutputType>Library</OutputType> <ApplicationIcon /> - <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent> <PreBuildEvent /> <PostBuildEvent /> <StartupObject /> Modified: trunk/FreeTrain/lib/Controls/FreeTrain.Controls.csproj =================================================================== --- trunk/FreeTrain/lib/Controls/FreeTrain.Controls.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/lib/Controls/FreeTrain.Controls.csproj 2007-04-12 00:27:21 UTC (rev 36) @@ -8,7 +8,6 @@ <AssemblyName>FreeTrain.Controls</AssemblyName> <OutputType>Library</OutputType> <ApplicationIcon /> - <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent> <PreBuildEvent /> <PostBuildEvent /> <StartupObject /> Modified: trunk/FreeTrain/lib/DirectAudio.net/DirectAudio.net.csproj =================================================================== --- trunk/FreeTrain/lib/DirectAudio.net/DirectAudio.net.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/lib/DirectAudio.net/DirectAudio.net.csproj 2007-04-12 00:27:21 UTC (rev 36) @@ -8,7 +8,6 @@ <AssemblyName>DirectAudio.net</AssemblyName> <OutputType>Library</OutputType> <ApplicationIcon /> - <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent> <PreBuildEvent /> <PostBuildEvent /> <StartupObject /> Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj 2007-04-12 00:27:21 UTC (rev 36) @@ -314,26 +314,6 @@ Name="Output" SourceControlFiles="false" > - <File - RelativePath="DirectDraw.AlphaBlend_i.c" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCLCompilerTool" - UsePrecompiledHeader="0" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCLCompilerTool" - UsePrecompiledHeader="0" - /> - </FileConfiguration> - </File> </Filter> <File RelativePath="ReadMe.txt" Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDrawAlphaBlend.idl =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDrawAlphaBlend.idl 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDrawAlphaBlend.idl 2007-04-12 00:27:21 UTC (rev 36) @@ -11,7 +11,7 @@ [ uuid(EF1510AF-E75F-4974-BE7A-A2F4E88EBFB4), version(1.0), - helpstring("DirectDrawAlphaBlend 1.0 タイプ ライブラリ") + helpstring("DirectDrawAlphaBlend 1.0 Type Library") ] library DirectDrawAlphaBlendLib { @@ -28,7 +28,7 @@ uuid(2D16CEE2-F54C-425F-84A7-61692CF1D82C), dual, nonextensible, - helpstring("IAlphaBlender インターフェイス"), + helpstring("IAlphaBlender Interface"), pointer_default(unique) ] interface IAlphaBlender : IDispatch{ Modified: trunk/FreeTrain/lib/DirectDraw.net/DirectDraw.net.csproj =================================================================== --- trunk/FreeTrain/lib/DirectDraw.net/DirectDraw.net.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/lib/DirectDraw.net/DirectDraw.net.csproj 2007-04-12 00:27:21 UTC (rev 36) @@ -8,7 +8,6 @@ <AssemblyName>DirectDraw.net</AssemblyName> <OutputType>Library</OutputType> <ApplicationIcon /> - <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent> <PreBuildEvent /> <PostBuildEvent /> <StartupObject /> Modified: trunk/FreeTrain/lib/DirectShow.VideoRecorder/DirectShow.VideoRecorder.vcproj =================================================================== --- trunk/FreeTrain/lib/DirectShow.VideoRecorder/DirectShow.VideoRecorder.vcproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/lib/DirectShow.VideoRecorder/DirectShow.VideoRecorder.vcproj 2007-04-12 00:27:21 UTC (rev 36) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="shift_jis"?> +<?xml version="1.0" encoding="utf-8"?> <VisualStudioProject ProjectType="Visual C++" Version="8.00" Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/FreeTrain.Bank.csproj =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/FreeTrain.Bank.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/FreeTrain.Bank.csproj 2007-04-12 00:27:21 UTC (rev 36) @@ -8,7 +8,6 @@ <AssemblyName>Bank</AssemblyName> <OutputType>Library</OutputType> <ApplicationIcon /> - <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent> <PreBuildEvent /> <PostBuildEvent /> <StartupObject /> Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/FreeTrain.StockMarket.csproj =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/FreeTrain.StockMarket.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/FreeTrain.StockMarket.csproj 2007-04-12 00:27:21 UTC (rev 36) @@ -8,7 +8,6 @@ <AssemblyName>StockMarket</AssemblyName> <OutputType>Library</OutputType> <ApplicationIcon /> - <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent> <PreBuildEvent /> <PostBuildEvent /> <StartupObject /> Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/DummyCars/FreeTrain.DummyCars.csproj =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/DummyCars/FreeTrain.DummyCars.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/DummyCars/FreeTrain.DummyCars.csproj 2007-04-12 00:27:21 UTC (rev 36) @@ -8,7 +8,6 @@ <AssemblyName>DummyCars</AssemblyName> <OutputType>Library</OutputType> <ApplicationIcon /> - <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent> <PreBuildEvent /> <PostBuildEvent /> <StartupObject /> Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/FreeTrain.RoadAccessory.csproj =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/FreeTrain.RoadAccessory.csproj 2007-04-11 03:35:43 UTC (rev 35) +++ tru... [truncated message content] |
From: <him...@us...> - 2007-04-11 03:35:44
|
Revision: 35 http://freetrain.svn.sourceforge.net/freetrain/?rev=35&view=rev Author: himasaram Date: 2007-04-10 20:35:43 -0700 (Tue, 10 Apr 2007) Log Message: ----------- Fix errors in xml files and comment out a piece of code that always fail ('solution' from freetrain-int) Modified Paths: -------------- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/Company.cs trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/typelist.xml Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/Company.cs =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/Company.cs 2007-04-11 03:01:16 UTC (rev 34) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/Company.cs 2007-04-11 03:35:43 UTC (rev 35) @@ -183,16 +183,17 @@ catch { throw new XmlException("invalid company definition (in stock tag) : "+id+name,null); - } - try - { - updateStockPrice(); - trend.setParams(0,5); - } - catch - { - throw new XmlException("invalid company definition (invalid data) : "+id+name,null); - } + } + //try + //{ + // updateStockPrice(); + // trend.setParams(0,5); + //} + //catch + //{ + // throw new XmlException("invalid company definition (invalid data) : "+id+name,null); + //} + // FIX ME IMPORTANT } Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml 2007-04-11 03:01:16 UTC (rev 34) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml 2007-04-11 03:35:43 UTC (rev 35) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="UTF-8" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!-- このファイルは、C477氏の作成したファイルを元に、ジャガイモが作成しました。 詳しい情報は下記のURLへ。 @@ -416,7 +416,7 @@ <!--081 金融(証券)--> - <company id="8403" name="Sumidomo Trust & Banking" type="081"> + <company id="8403" name="Sumidomo Trust & Banking" type="081"> <!--!<company id="8403" name="清友信託銀行" type="081">--> <performance capital="2000000" sales="550000000" /> <capacity brand="6" marketing="3" quality="6" rationality="3" development="4" /> Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/typelist.xml =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/typelist.xml 2007-04-11 03:01:16 UTC (rev 34) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/typelist.xml 2007-04-11 03:35:43 UTC (rev 35) @@ -66,7 +66,7 @@ <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="4" progressivity="4" /> <weight brand="8" marketing="6" quality="6" /> </business> - <business id="023" name="Pulp & Paper"> <!--//!パルプ・紙--> + <business id="023" name="Pulp & Paper"> <!--//!パルプ・紙--> <account fixed="0.30"/> <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="5" progressivity="2" /> <weight brand="3" marketing="5" quality="5" /> @@ -81,7 +81,7 @@ <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="5" progressivity="8" /> <weight brand="6" marketing="5" quality="9" /> </business> - <business id="032" name="Oil & Coal"> <!--//!石油・石炭--> + <business id="032" name="Oil & Coal"> <!--//!石油・石炭--> <account fixed="0.35"/> <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="5" progressivity="4" /> <weight brand="3" marketing="3" quality="4" /> @@ -161,7 +161,7 @@ <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="5" progressivity="5" /> <weight brand="5" marketing="5" quality="5" /> </business> - <business id="050" name="Electricity & Gas"> <!--//!電力・ガス--> + <business id="050" name="Electricity & Gas"> <!--//!電力・ガス--> <account fixed="0.35"/> <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="2" progressivity="1" /> <weight brand="3" marketing="3" quality="3" /> @@ -186,12 +186,12 @@ <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="6" progressivity="1" /> <weight brand="3" marketing="6" quality="5" /> </business> - <business id="065" name="Logistics & Storage"> <!--//!倉庫・運輸--> + <business id="065" name="Logistics & Storage"> <!--//!倉庫・運輸--> <account fixed="0.25"/> <market scale="50000000000000" cycle="100" amplitude="5" ex_dependency="6" progressivity="1" /> <weight brand="3" marketing="6" quality="5" /> </business> - <business id="070" name="Media & Communication"> <!--//!情報・通信--> + <business id="070" name="Media & Communication"> <!--//!情報・通信--> <account fixed="0.30"/> <market scale="5000000000000" cycle="100" amplitude="5" ex_dependency="3" progressivity="4" /> <weight brand="4" marketing="6" quality="6" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-11 03:01:16
|
Revision: 34 http://freetrain.svn.sourceforge.net/freetrain/?rev=34&view=rev Author: himasaram Date: 2007-04-10 20:01:16 -0700 (Tue, 10 Apr 2007) Log Message: ----------- Missing translation Modified Paths: -------------- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/src/LoadDialog.cs Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/src/LoadDialog.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/src/LoadDialog.cs 2007-04-11 02:27:23 UTC (rev 33) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/src/LoadDialog.cs 2007-04-11 03:01:16 UTC (rev 34) @@ -240,9 +240,9 @@ this.label3.Location = new System.Drawing.Point(8, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 16); - this.label3.TabIndex = 0; - this.label3.Text = "幅(&W):"; - //! this.label3.Text = "&Width"; + this.label3.TabIndex = 0; + this.label3.Text = "&Width"; + //! this.label3.Text = "幅(&W):"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // LoadDialog This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-11 02:27:50
|
Revision: 33 http://freetrain.svn.sourceforge.net/freetrain/?rev=33&view=rev Author: himasaram Date: 2007-04-10 19:27:23 -0700 (Tue, 10 Apr 2007) Log Message: ----------- Put binary in more sensible location Added Paths: ----------- trunk/FreeTrain/bin/Release/DirectDraw.AlphaBlend.dll Removed Paths: ------------- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/bin/ Added: trunk/FreeTrain/bin/Release/DirectDraw.AlphaBlend.dll =================================================================== (Binary files differ) Property changes on: trunk/FreeTrain/bin/Release/DirectDraw.AlphaBlend.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-11 02:19:32
|
Revision: 32 http://freetrain.svn.sourceforge.net/freetrain/?rev=32&view=rev Author: himasaram Date: 2007-04-10 19:19:33 -0700 (Tue, 10 Apr 2007) Log Message: ----------- Temporarily add binary by lexxuk from the freetrain-int project Added Paths: ----------- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/bin/ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/bin/Release/ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/bin/Release/DirectDraw.AlphaBlend.dll Added: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/bin/Release/DirectDraw.AlphaBlend.dll =================================================================== (Binary files differ) Property changes on: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/bin/Release/DirectDraw.AlphaBlend.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-11 01:35:08
|
Revision: 31 http://freetrain.svn.sourceforge.net/freetrain/?rev=31&view=rev Author: himasaram Date: 2007-04-10 18:35:07 -0700 (Tue, 10 Apr 2007) Log Message: ----------- Update project files to the latest format Modified Paths: -------------- trunk/FreeTrain/FreeTrain.sln trunk/FreeTrain/FreeTrain.suo trunk/FreeTrain/core/FreeTrain.Core.csproj trunk/FreeTrain/lib/Controls/FreeTrain.Controls.csproj trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj trunk/FreeTrain/lib/DirectShow.VideoRecorder/DirectShow.VideoRecorder.vcproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/FreeTrain.Bank.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/FreeTrain.StockMarket.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/DummyCars/FreeTrain.DummyCars.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/FreeTrain.RoadAccessory.csproj trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib.halfvoxel/FreeTrain.HalfVoxelStructure.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.477/FreeTrain.VinylHouse.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.creek.eikichiya/FreeTrain.Creek.Eikichiya.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.forest/FreeTrain.Forest.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.land.ricefield/FreeTrain.RiceField.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.music.a4mem/FreeTrain.A4MemBGM.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/FreeTrain.ElectricPole.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/FreeTrain.TrainGarage.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/FreeTrain.RailSignal.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/FreeTrain.SoccerStadium.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/FreeTrain.ManualTrainController.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/FreeTrain.TATTrainController.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/FreeTrain.Terrace.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.dbgwnd/FreeTrain.DebugWindow.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/FreeTrain.TerrainLoader.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/FreeTrain.VCR.csproj trunk/FreeTrain/plugins/org.kohsuke.freetrain.trains.colorTest/FreeTrain.ColorTestTrain.csproj trunk/FreeTrain/tools/ColorDiff/Tool.ColorDiff.csproj trunk/FreeTrain/tools/Driver/Driver.csproj trunk/FreeTrain/tools/GUIDGen/Tool.GUIDGen.csproj trunk/FreeTrain/tools/PicturePreviewer/Tool.PicturePreviewer.csproj trunk/FreeTrain/tools/TrainListBuilder/Tool.TrainListBuilder.csproj Modified: trunk/FreeTrain/FreeTrain.sln =================================================================== --- trunk/FreeTrain/FreeTrain.sln 2007-04-11 01:17:29 UTC (rev 30) +++ trunk/FreeTrain/FreeTrain.sln 2007-04-11 01:35:07 UTC (rev 31) @@ -1,7 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 9.00 # Visual Studio 2005 -# SharpDevelop 2.1.0.2376 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Core", "core\FreeTrain.Core.csproj", "{7746CF50-D84E-4E7B-83FB-AB43DB854DA8}" ProjectSection(ProjectDependencies) = postProject {0616A314-BDF0-466D-AB4B-9FA1B071A8A2} = {0616A314-BDF0-466D-AB4B-9FA1B071A8A2} @@ -10,20 +9,12 @@ EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Controls", "lib\Controls\FreeTrain.Controls.csproj", "{D3B86CCE-530E-4472-AE8E-3FA5F903C206}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DirectAudio.net", "lib\DirectAudio.net\DirectAudio.net.csproj", "{0616A314-BDF0-466D-AB4B-9FA1B071A8A2}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DirectDraw.AlphaBlend", "lib\DirectDraw.AlphaBlend\DirectDraw.AlphaBlend.vcproj", "{76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DirectDraw.net", "lib\DirectDraw.net\DirectDraw.net.csproj", "{C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Driver", "tools\Driver\Driver.csproj", "{17B6AE46-0110-4C40-98EB-5F7E4E16C050}" ProjectSection(ProjectDependencies) = postProject @@ -31,80 +22,42 @@ EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.ColorDiff", "tools\ColorDiff\Tool.ColorDiff.csproj", "{508553C7-F40C-4513-A45F-9058C5C65452}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.GUIDGen", "tools\GUIDGen\Tool.GUIDGen.csproj", "{717EB2D5-4AF0-40BD-967D-EA4FDB969852}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.PicturePreviewer", "tools\PicturePreviewer\Tool.PicturePreviewer.csproj", "{15D46FE4-4C72-426E-8A54-D8922AAD8E75}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.TrainListBuilder", "tools\TrainListBuilder\Tool.TrainListBuilder.csproj", "{45E5B5B6-274B-46D2-9F29-45D953D59728}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.XmlCombiner", "tools\XmlCombiner\Tool.XmlCombiner.csproj", "{24E010BF-3085-42D2-812C-FD01D2AB446E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Creek.Eikichiya", "plugins\org.kohsuke.freetrain.land.creek.eikichiya\FreeTrain.Creek.Eikichiya.csproj", "{FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.RiceField", "plugins\org.kohsuke.freetrain.land.ricefield\FreeTrain.RiceField.csproj", "{BB5CC2A0-A3C7-447C-85B1-0133BB434314}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.A4MemBGM", "plugins\org.kohsuke.freetrain.music.a4mem\FreeTrain.A4MemBGM.csproj", "{058250A9-3BD8-418A-A3C3-6BD38F564520}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.TrainGarage", "plugins\org.kohsuke.freetrain.rail.garage\FreeTrain.TrainGarage.csproj", "{E388A2ED-7487-4BFC-AF79-F8C827B39346}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.RailSignal", "plugins\org.kohsuke.freetrain.rail.signal\FreeTrain.RailSignal.csproj", "{F5C10827-E301-426F-B1CA-9EFFE49539C6}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.SoccerStadium", "plugins\org.kohsuke.freetrain.soccerStadium\FreeTrain.SoccerStadium.csproj", "{A9C4C2DD-509F-448B-A74F-176590457CED}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.ColorTestTrain", "plugins\org.kohsuke.freetrain.trains.colorTest\FreeTrain.ColorTestTrain.csproj", "{4380999E-CA4C-4AA2-8848-12FFABF72535}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.DebugWindow", "plugins\org.kohsuke.freetrain.tools.dbgwnd\FreeTrain.DebugWindow.csproj", "{F209ABA2-B4B3-4C9C-8540-8B06071994FC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.TerrainLoader", "plugins\org.kohsuke.freetrain.tools.terrainloader\FreeTrain.TerrainLoader.csproj", "{21F3202B-B5D1-41B2-9808-9FB4E87D848A}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Terrace", "plugins\org.kohsuke.freetrain.terrain.terrace\FreeTrain.Terrace.csproj", "{21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.ManualTrainController", "plugins\org.kohsuke.freetrain.tc.manual\FreeTrain.ManualTrainController.csproj", "{1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.TATTrainController", "plugins\org.kohsuke.freetrain.tc.tat\FreeTrain.TATTrainController.csproj", "{C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.VinylHouse", "plugins\org.kohsuke.freetrain.land.477\FreeTrain.VinylHouse.csproj", "{D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DirectShow.VideoRecorder", "lib\DirectShow.VideoRecorder\DirectShow.VideoRecorder.vcproj", "{214B6310-5ECF-4A0B-835E-559F2EB4ABC6}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.VCR", "plugins\org.kohsuke.freetrain.tools.vcr\FreeTrain.VCR.csproj", "{D600BE69-53F2-49FE-B79B-7043F0F0D4D1}" ProjectSection(ProjectDependencies) = postProject @@ -112,310 +65,295 @@ EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Forest", "plugins\org.kohsuke.freetrain.land.forest\FreeTrain.Forest.csproj", "{1A7A0168-D783-4F4A-9B39-FBCCB08078AE}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.ElectricPole", "plugins\org.kohsuke.freetrain.rail.electricPole\FreeTrain.ElectricPole.csproj", "{AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Bank", "plugins\jp.co.tripod.chiname.financial.bank\FreeTrain.Bank.csproj", "{4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.StockMarket", "plugins\jp.co.tripod.chiname.financial.stockmarket\FreeTrain.StockMarket.csproj", "{9213F69B-447F-4B92-A046-BE7506871F47}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.RoadAccessory", "plugins\jp.co.tripod.chiname.lib\src\RoadAccessory\FreeTrain.RoadAccessory.csproj", "{7264D32E-75DB-4C13-9EE4-E6263FD5B652}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.DummyCars", "plugins\jp.co.tripod.chiname.lib\src\DummyCars\FreeTrain.DummyCars.csproj", "{7264D32E-75DB-4C13-9EE4-E6263FD5B652}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.DummyCars", "plugins\jp.co.tripod.chiname.lib\src\DummyCars\FreeTrain.DummyCars.csproj", "{3883DFAC-52BF-4C95-BCB4-D260E75F6F74}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.HalfVoxelStructure", "plugins\jp.co.tripod.chiname.lib.halfvoxel\FreeTrain.HalfVoxelStructure.csproj", "{FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AFDE3F64-F17F-44E0-A28F-7DA41CAEE336}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU Debug Unicode|Any CPU = Debug Unicode|Any CPU - Release|Any CPU = Release|Any CPU + Debug|Any CPU = Debug|Any CPU Release Unicode|Any CPU = Release Unicode|Any CPU + Release|Any CPU = Release|Any CPU EndGlobalSection - GlobalSection(SolutionItems) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Any CPU.Build.0 = Debug|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Any CPU.Build.0 = Release|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug|Any CPU.Build.0 = Debug|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release|Any CPU.Build.0 = Release|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Any CPU.Build.0 = Release|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug|Any CPU.Build.0 = Debug|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release|Any CPU.Build.0 = Release|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Any CPU.Build.0 = Release|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug|Any CPU.Build.0 = Debug|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release|Any CPU.Build.0 = Release|Any CPU {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Any CPU.ActiveCfg = Release|Any CPU - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Any CPU.Build.0 = Release|Any CPU + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug|Any CPU.Build.0 = Debug|Any CPU {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release|Any CPU.Build.0 = Release|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Any CPU.Build.0 = Release|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug|Any CPU.Build.0 = Debug|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release|Any CPU.Build.0 = Release|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Any CPU.ActiveCfg = Release|Any CPU - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Any CPU.Build.0 = Release|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug|Any CPU.Build.0 = Debug|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Any CPU.ActiveCfg = Release|Any CPU + {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release|Any CPU.Build.0 = Release|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Debug|Any CPU.Build.0 = Debug|Any CPU - {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Release|Any CPU.ActiveCfg = Release|Any CPU {508553C7-F40C-4513-A45F-9058C5C65452}.Release|Any CPU.Build.0 = Release|Any CPU - {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug|Any CPU.Build.0 = Debug|Any CPU - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release|Any CPU.ActiveCfg = Release|Any CPU {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release|Any CPU.Build.0 = Release|Any CPU - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug|Any CPU.Build.0 = Debug|Any CPU - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release|Any CPU.ActiveCfg = Release|Any CPU {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release|Any CPU.Build.0 = Release|Any CPU - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug|Any CPU.Build.0 = Debug|Any CPU - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release|Any CPU.ActiveCfg = Release|Any CPU {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release|Any CPU.Build.0 = Release|Any CPU - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release|Any CPU.ActiveCfg = Release|Any CPU {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release|Any CPU.Build.0 = Release|Any CPU - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release|Any CPU.ActiveCfg = Release|Any CPU {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release|Any CPU.Build.0 = Release|Any CPU - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release|Any CPU.ActiveCfg = Release|Any CPU {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release|Any CPU.Build.0 = Release|Any CPU - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug|Any CPU.Build.0 = Debug|Any CPU - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release|Any CPU.ActiveCfg = Release|Any CPU {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release|Any CPU.Build.0 = Release|Any CPU - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release|Any CPU.ActiveCfg = Release|Any CPU {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release|Any CPU.Build.0 = Release|Any CPU - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release|Any CPU.ActiveCfg = Release|Any CPU {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release|Any CPU.Build.0 = Release|Any CPU - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Release|Any CPU.ActiveCfg = Release|Any CPU {A9C4C2DD-509F-448B-A74F-176590457CED}.Release|Any CPU.Build.0 = Release|Any CPU - {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release|Any CPU.ActiveCfg = Release|Any CPU {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release|Any CPU.Build.0 = Release|Any CPU - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release|Any CPU.ActiveCfg = Release|Any CPU {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release|Any CPU.Build.0 = Release|Any CPU - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release|Any CPU.ActiveCfg = Release|Any CPU {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release|Any CPU.Build.0 = Release|Any CPU - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release|Any CPU.ActiveCfg = Release|Any CPU {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release|Any CPU.Build.0 = Release|Any CPU - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release|Any CPU.ActiveCfg = Release|Any CPU {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release|Any CPU.Build.0 = Release|Any CPU - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release|Any CPU.ActiveCfg = Release|Any CPU {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release|Any CPU.Build.0 = Release|Any CPU - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release|Any CPU.ActiveCfg = Release|Any CPU {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release|Any CPU.Build.0 = Release|Any CPU - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Any CPU.Build.0 = Debug|Any CPU {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Any CPU.Build.0 = Release|Any CPU + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug|Any CPU.Build.0 = Debug|Any CPU {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release|Any CPU.Build.0 = Release|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Any CPU.Build.0 = Release|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug|Any CPU.Build.0 = Debug|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release|Any CPU.Build.0 = Release|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Any CPU.Build.0 = Release|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug|Any CPU.Build.0 = Debug|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release|Any CPU.Build.0 = Release|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Any CPU.Build.0 = Release|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug|Any CPU.Build.0 = Debug|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release|Any CPU.Build.0 = Release|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Any CPU.Build.0 = Release|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug|Any CPU.Build.0 = Debug|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release|Any CPU.Build.0 = Release|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU - {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Any CPU.ActiveCfg = Release|Any CPU {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Any CPU.Build.0 = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.Build.0 = Release|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Any CPU.Build.0 = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.Build.0 = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release|Any CPU.Build.0 = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release Unicode|Any CPU.Build.0 = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3883DFAC-52BF-4C95-BCB4-D260E75F6F74}.Release|Any CPU.Build.0 = Release|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode|Any CPU.ActiveCfg = Debug|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode|Any CPU.Build.0 = Debug|Any CPU - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Any CPU.Build.0 = Release|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug|Any CPU.Build.0 = Debug|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode|Any CPU.ActiveCfg = Release|Any CPU {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode|Any CPU.Build.0 = Release|Any CPU - {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {9213F69B-447F-4B92-A046-BE7506871F47}.Release|Any CPU.Build.0 = Release|Any CPU - {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU - {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode|Any CPU.Build.0 = Debug Unicode|Any CPU - {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode|Any CPU.Build.0 = Release Unicode|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection EndGlobal Modified: trunk/FreeTrain/FreeTrain.suo =================================================================== (Binary files differ) Modified: trunk/FreeTrain/core/FreeTrain.Core.csproj =================================================================== --- trunk/FreeTrain/core/FreeTrain.Core.csproj 2007-04-11 01:17:29 UTC (rev 30) +++ trunk/FreeTrain/core/FreeTrain.Core.csproj 2007-04-11 01:35:07 UTC (rev 31) @@ -90,7 +90,9 @@ <Compile Include="contributions\others\EmptyNewGameContributionImpl.cs" /> <Compile Include="contributions\others\MenuContribution.cs" /> <Compile Include="contributions\others\NewGameContribution.cs" /> - <Compile Include="contributions\others\NewWorldDialog.cs" /> + <Compile Include="contributions\others\NewWorldDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="contributions\others\NewWorldDialog.resx"> <DependentUpon>NewWorldDialog.cs</DependentUpon> </EmbeddedResource> @@ -130,19 +132,27 @@ <Compile Include="contributions\train\TrainCarContribution.cs" /> <Compile Include="contributions\train\TrainContribution.cs" /> <Compile Include="contributions\train\TrainContributionFactory.cs" /> - <Compile Include="controllers\AbstractControllerForm.cs" /> + <Compile Include="controllers\AbstractControllerForm.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\AbstractControllerForm.resx"> <DependentUpon>AbstractControllerForm.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\AbstractControllerImpl.cs" /> + <Compile Include="controllers\AbstractControllerImpl.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\AbstractControllerImpl.resx"> <DependentUpon>AbstractControllerImpl.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\AbstractLineController.cs" /> + <Compile Include="controllers\AbstractLineController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\AbstractLineController.resx"> <DependentUpon>AbstractLineController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\ControllerHostForm.cs" /> + <Compile Include="controllers\ControllerHostForm.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\ControllerHostForm.resx"> <DependentUpon>ControllerHostForm.cs</DependentUpon> </EmbeddedResource> @@ -154,105 +164,157 @@ <Compile Include="controllers\ModalController.cs" /> <Compile Include="controllers\PointSelectorController.cs" /> <Compile Include="controllers\RectSelectorController.cs" /> - <Compile Include="controllers\land\LandController.cs" /> + <Compile Include="controllers\land\LandController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\land\LandController.resx"> <DependentUpon>LandController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\land\LandPropertyController.cs" /> + <Compile Include="controllers\land\LandPropertyController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\land\LandPropertyController.resx"> <DependentUpon>LandPropertyController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\PlatformController.cs" /> + <Compile Include="controllers\rail\PlatformController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\PlatformController.resx"> <DependentUpon>PlatformController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\PlatformPropertyDialog.cs" /> + <Compile Include="controllers\rail\PlatformPropertyDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\PlatformPropertyDialog.resx"> <DependentUpon>PlatformPropertyDialog.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\RailRoadController.cs" /> + <Compile Include="controllers\rail\RailRoadController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\RailRoadController.resx"> <DependentUpon>RailRoadController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\SlopeRailRoadController.cs" /> + <Compile Include="controllers\rail\SlopeRailRoadController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\SlopeRailRoadController.resx"> <DependentUpon>SlopeRailRoadController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\SpecialPurposeRailController.cs" /> - <Compile Include="controllers\rail\StationaryStructPlacementController.cs" /> - <Compile Include="controllers\rail\StationPassagewayController.cs" /> + <Compile Include="controllers\rail\SpecialPurposeRailController.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="controllers\rail\StationaryStructPlacementController.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="controllers\rail\StationPassagewayController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\StationPassagewayController.resx"> <DependentUpon>StationPassagewayController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\StationPropertyDialog.cs" /> + <Compile Include="controllers\rail\StationPropertyDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\StationPropertyDialog.resx"> <DependentUpon>StationPropertyDialog.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\TrainControllerDialog.cs" /> + <Compile Include="controllers\rail\TrainControllerDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\TrainControllerDialog.resx"> <DependentUpon>TrainControllerDialog.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\TrainPlacementController.cs" /> + <Compile Include="controllers\rail\TrainPlacementController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\TrainPlacementController.resx"> <DependentUpon>TrainPlacementController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\TrainTrackingWindow.cs" /> + <Compile Include="controllers\rail\TrainTrackingWindow.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\TrainTrackingWindow.resx"> <DependentUpon>TrainTrackingWindow.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\rail\TrainTradingDialog.cs" /> + <Compile Include="controllers\rail\TrainTradingDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\rail\TrainTradingDialog.resx"> <DependentUpon>TrainTradingDialog.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\road\RoadController.cs" /> + <Compile Include="controllers\road\RoadController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\road\RoadController.resx"> <DependentUpon>RoadController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\structs\CommercialStructPlacementController.cs" /> - <Compile Include="controllers\structs\FixedSizeStructController.cs" /> + <Compile Include="controllers\structs\CommercialStructPlacementController.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="controllers\structs\FixedSizeStructController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\structs\FixedSizeStructController.resx"> <DependentUpon>FixedSizeStructController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\structs\StructPlacementController.cs" /> + <Compile Include="controllers\structs\StructPlacementController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\structs\StructPlacementController.resx"> <DependentUpon>StructPlacementController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\structs\VarHeightBuildingController.cs" /> + <Compile Include="controllers\structs\VarHeightBuildingController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\structs\VarHeightBuildingController.resx"> <DependentUpon>VarHeightBuildingController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="controllers\terrain\MountainController.cs" /> + <Compile Include="controllers\terrain\MountainController.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="controllers\terrain\MountainController.resx"> <DependentUpon>MountainController.cs</DependentUpon> </EmbeddedResource> - <Compile Include="framework\AboutDialog.cs" /> + <Compile Include="framework\AboutDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="framework\AboutDialog.resx"> <DependentUpon>AboutDialog.cs</DependentUpon> </EmbeddedResource> <Compile Include="framework\BGMManager.cs" /> - <Compile Include="framework\ConfigDialog.cs" /> + <Compile Include="framework\ConfigDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="framework\ConfigDialog.resx"> <DependentUpon>ConfigDialog.cs</DependentUpon> </EmbeddedResource> <Compile Include="framework\Core.cs" /> - <Compile Include="framework\ErrorMessageBox.cs" /> + <Compile Include="framework\ErrorMessageBox.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="framework\ErrorMessageBox.resx"> <DependentUpon>ErrorMessageBox.cs</DependentUpon> </EmbeddedResource> <Compile Include="framework\GlobalOptions.cs" /> - <Compile Include="framework\MainWindow.cs" /> + <Compile Include="framework\MainWindow.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="framework\MainWindow.resx"> <DependentUpon>MainWindow.cs</DependentUpon> </EmbeddedResource> <Compile Include="framework\MenuItemConstants.cs" /> <Compile Include="framework\MruHelper.cs" /> - <Compile Include="framework\NewWorldDialog.cs" /> + <Compile Include="framework\NewWorldDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="framework\NewWorldDialog.resx"> <DependentUpon>NewWorldDialog.cs</DependentUpon> </EmbeddedResource> <Compile Include="framework\PersistentOptions.cs" /> <Compile Include="framework\ResourceUtil.cs" /> - <Compile Include="framework\Splash.cs" /> + <Compile Include="framework\Splash.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="framework\Splash.resx"> <DependentUpon>Splash.cs</DependentUpon> </EmbeddedResource> @@ -279,7 +341,9 @@ <Compile Include="framework\plugin\DynamicContributionFactory.cs" /> <Compile Include="framework\plugin\FixedClassContributionFactory.cs" /> <Compile Include="framework\plugin\Plugin.cs" /> - <Compile Include="framework\plugin\PluginListDialog.cs" /> + <Compile Include="framework\plugin\PluginListDialog.cs"> + <SubType>Form</SubType> + </Compile> <EmbeddedResource Include="framework\plugin\PluginListDialog.resx"> <DependentUpon>PluginListDialog.cs</DependentUpon> </EmbeddedResource> @@ -312,11 +376,15 @@ <Compile ... [truncated message content] |
From: <him...@us...> - 2007-04-11 01:17:28
|
Revision: 30 http://freetrain.svn.sourceforge.net/freetrain/?rev=30&view=rev Author: himasaram Date: 2007-04-10 18:17:29 -0700 (Tue, 10 Apr 2007) Log Message: ----------- Minor translation fixes Modified Paths: -------------- trunk/FreeTrain/core/world/rail/Platform.cs trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs Modified: trunk/FreeTrain/core/world/rail/Platform.cs =================================================================== --- trunk/FreeTrain/core/world/rail/Platform.cs 2007-04-11 01:07:07 UTC (rev 29) +++ trunk/FreeTrain/core/world/rail/Platform.cs 2007-04-11 01:17:29 UTC (rev 30) @@ -19,7 +19,7 @@ this.location = loc; this.direction = d; this.length = len; - this.name = string.Format("Platform{0,2:d}",iota++); + this.name = string.Format("Platform {0,2:d}",iota++); //! this.name = string.Format("ホーム{0,2:d}",iota++); this.bellSound = DepartureBellContribution.DEFAULT; World.world.clock.registerRepeated( new ClockHandler(onClockPerDay), TimeLength.ONEDAY ); Modified: trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs =================================================================== --- trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs 2007-04-11 01:07:07 UTC (rev 29) +++ trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs 2007-04-11 01:17:29 UTC (rev 30) @@ -182,14 +182,14 @@ // this.tbModeSell.ImageIndex = 0; this.tbModeSell.Style = System.Windows.Forms.ToolBarButtonStyle.ToggleButton; - this.tbModeSell.Text = "Your company"; + this.tbModeSell.Text = "My company"; //! this.tbModeSell.Text = "自社"; // // tbModeBuy // this.tbModeBuy.ImageIndex = 0; this.tbModeBuy.Style = System.Windows.Forms.ToolBarButtonStyle.ToggleButton; - this.tbModeBuy.Text = "Another company"; + this.tbModeBuy.Text = "Other companies"; //! this.tbModeBuy.Text = "他社"; // // tbSeparator This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-11 01:07:05
|
Revision: 29 http://freetrain.svn.sourceforge.net/freetrain/?rev=29&view=rev Author: himasaram Date: 2007-04-10 18:07:07 -0700 (Tue, 10 Apr 2007) Log Message: ----------- Translation fixes and temporary solution for the weekday problem Modified Paths: -------------- trunk/FreeTrain/core/framework/ConfigDialog.cs trunk/FreeTrain/core/world/Time.cs Modified: trunk/FreeTrain/core/framework/ConfigDialog.cs =================================================================== --- trunk/FreeTrain/core/framework/ConfigDialog.cs 2007-04-10 02:36:02 UTC (rev 28) +++ trunk/FreeTrain/core/framework/ConfigDialog.cs 2007-04-11 01:07:07 UTC (rev 29) @@ -170,7 +170,7 @@ this.showBoundingBox.Name = "showBoundingBox"; this.showBoundingBox.Size = new System.Drawing.Size(168, 16); this.showBoundingBox.TabIndex = 4; - this.showBoundingBox.Text = "Display drawing range (debugging)"; + this.showBoundingBox.Text = "Display drawing range (debug)"; //! this.showBoundingBox.Text = "描画範囲を表示(デバッグ)"; // // hideTrees @@ -187,12 +187,12 @@ // this.comboSurfaceAlloc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSurfaceAlloc.Items.AddRange(new object[] { - "自動的に判断する", - "ビデオメモリに限定する", - "システムメモリに限定する"}); - //! "Decide automatically", - //! "Limit to VRAM", - //! "Limit to system RAM"}); + "Automatically", + "Limit to VRAM", + "Limit to system RAM"}); + //! "自動的に判断する", + //! "ビデオメモリに限定する", + //! "システムメモリに限定する"}); this.comboSurfaceAlloc.Location = new System.Drawing.Point(184, 182); this.comboSurfaceAlloc.Name = "comboSurfaceAlloc"; this.comboSurfaceAlloc.Size = new System.Drawing.Size(200, 20); Modified: trunk/FreeTrain/core/world/Time.cs =================================================================== --- trunk/FreeTrain/core/world/Time.cs 2007-04-10 02:36:02 UTC (rev 28) +++ trunk/FreeTrain/core/world/Time.cs 2007-04-11 01:07:07 UTC (rev 29) @@ -125,7 +125,11 @@ public static char dayOfWeekChar( int dow ) { - return "Mon Tue Wed Thu Fri Sat Sun"[dow]; + return "7123456"[dow]; + //! Translator's comment: The string above is a temporary + //! solution, since the weekday can only be one character + //! long in the current solution. + //! return "SunMonTueWedThuFriSat "[dow]; //! return "日月火水木金土"[dow]; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-10 02:36:08
|
Revision: 28 http://freetrain.svn.sourceforge.net/freetrain/?rev=28&view=rev Author: himasaram Date: 2007-04-09 19:36:02 -0700 (Mon, 09 Apr 2007) Log Message: ----------- Remove redundant files and folders Removed Paths: ------------- trunk/FreeTrain/plugins/org.kohsuke.freetrain.railsignal/ trunk/FreeTrain/tools/FreeTrain.sln trunk/FreeTrain/tools/FreeTrain.suo trunk/FreeTrain/tools/NeoFT/ trunk/FreeTrain/tools/bin/ trunk/FreeTrain/tools/copyresources.bat trunk/FreeTrain/tools/core/ trunk/FreeTrain/tools/devdoc/ trunk/FreeTrain/tools/doc/ trunk/FreeTrain/tools/experiments/ trunk/FreeTrain/tools/extlib/ trunk/FreeTrain/tools/lib/ Deleted: trunk/FreeTrain/tools/FreeTrain.sln =================================================================== --- trunk/FreeTrain/tools/FreeTrain.sln 2007-04-09 03:45:27 UTC (rev 27) +++ trunk/FreeTrain/tools/FreeTrain.sln 2007-04-10 02:36:02 UTC (rev 28) @@ -1,379 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Core", "core\FreeTrain.Core.csproj", "{7746CF50-D84E-4E7B-83FB-AB43DB854DA8}" - ProjectSection(ProjectDependencies) = postProject - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2} = {0616A314-BDF0-466D-AB4B-9FA1B071A8A2} - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C} = {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C} - {D3B86CCE-530E-4472-AE8E-3FA5F903C206} = {D3B86CCE-530E-4472-AE8E-3FA5F903C206} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Controls", "lib\Controls\FreeTrain.Controls.csproj", "{D3B86CCE-530E-4472-AE8E-3FA5F903C206}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DirectAudio.net", "lib\DirectAudio.net\DirectAudio.net.csproj", "{0616A314-BDF0-466D-AB4B-9FA1B071A8A2}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DirectDraw.AlphaBlend", "lib\DirectDraw.AlphaBlend\DirectDraw.AlphaBlend.vcproj", "{76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DirectDraw.net", "lib\DirectDraw.net\DirectDraw.net.csproj", "{C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Driver", "tools\Driver\Driver.csproj", "{17B6AE46-0110-4C40-98EB-5F7E4E16C050}" - ProjectSection(ProjectDependencies) = postProject - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8} = {7746CF50-D84E-4E7B-83FB-AB43DB854DA8} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.ColorDiff", "tools\ColorDiff\Tool.ColorDiff.csproj", "{508553C7-F40C-4513-A45F-9058C5C65452}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.GUIDGen", "tools\GUIDGen\Tool.GUIDGen.csproj", "{717EB2D5-4AF0-40BD-967D-EA4FDB969852}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.PicturePreviewer", "tools\PicturePreviewer\Tool.PicturePreviewer.csproj", "{15D46FE4-4C72-426E-8A54-D8922AAD8E75}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.TrainListBuilder", "tools\TrainListBuilder\Tool.TrainListBuilder.csproj", "{45E5B5B6-274B-46D2-9F29-45D953D59728}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool.XmlCombiner", "tools\XmlCombiner\Tool.XmlCombiner.csproj", "{24E010BF-3085-42D2-812C-FD01D2AB446E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Creek.Eikichiya", "plugins\org.kohsuke.freetrain.land.creek.eikichiya\FreeTrain.Creek.Eikichiya.csproj", "{FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.RiceField", "plugins\org.kohsuke.freetrain.land.ricefield\FreeTrain.RiceField.csproj", "{BB5CC2A0-A3C7-447C-85B1-0133BB434314}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.A4MemBGM", "plugins\org.kohsuke.freetrain.music.a4mem\FreeTrain.A4MemBGM.csproj", "{058250A9-3BD8-418A-A3C3-6BD38F564520}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.TrainGarage", "plugins\org.kohsuke.freetrain.rail.garage\FreeTrain.TrainGarage.csproj", "{E388A2ED-7487-4BFC-AF79-F8C827B39346}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.RailSignal", "plugins\org.kohsuke.freetrain.rail.signal\FreeTrain.RailSignal.csproj", "{F5C10827-E301-426F-B1CA-9EFFE49539C6}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.SoccerStadium", "plugins\org.kohsuke.freetrain.soccerStadium\FreeTrain.SoccerStadium.csproj", "{A9C4C2DD-509F-448B-A74F-176590457CED}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.ColorTestTrain", "plugins\org.kohsuke.freetrain.trains.colorTest\FreeTrain.ColorTestTrain.csproj", "{4380999E-CA4C-4AA2-8848-12FFABF72535}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.DebugWindow", "plugins\org.kohsuke.freetrain.tools.dbgwnd\FreeTrain.DebugWindow.csproj", "{F209ABA2-B4B3-4C9C-8540-8B06071994FC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.TerrainLoader", "plugins\org.kohsuke.freetrain.tools.terrainloader\FreeTrain.TerrainLoader.csproj", "{21F3202B-B5D1-41B2-9808-9FB4E87D848A}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Terrace", "plugins\org.kohsuke.freetrain.terrain.terrace\FreeTrain.Terrace.csproj", "{21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.ManualTrainController", "plugins\org.kohsuke.freetrain.tc.manual\FreeTrain.ManualTrainController.csproj", "{1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.TATTrainController", "plugins\org.kohsuke.freetrain.tc.tat\FreeTrain.TATTrainController.csproj", "{C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.VinylHouse", "plugins\org.kohsuke.freetrain.land.477\FreeTrain.VinylHouse.csproj", "{D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DirectShow.VideoRecorder", "lib\DirectShow.VideoRecorder\DirectShow.VideoRecorder.vcproj", "{214B6310-5ECF-4A0B-835E-559F2EB4ABC6}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.VCR", "plugins\org.kohsuke.freetrain.tools.vcr\FreeTrain.VCR.csproj", "{D600BE69-53F2-49FE-B79B-7043F0F0D4D1}" - ProjectSection(ProjectDependencies) = postProject - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6} = {214B6310-5ECF-4A0B-835E-559F2EB4ABC6} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Forest", "plugins\org.kohsuke.freetrain.land.forest\FreeTrain.Forest.csproj", "{1A7A0168-D783-4F4A-9B39-FBCCB08078AE}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.ElectricPole", "plugins\org.kohsuke.freetrain.rail.electricPole\FreeTrain.ElectricPole.csproj", "{AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.Bank", "plugins\jp.co.tripod.chiname.financial.bank\FreeTrain.Bank.csproj", "{4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.StockMarket", "plugins\jp.co.tripod.chiname.financial.stockmarket\FreeTrain.StockMarket.csproj", "{9213F69B-447F-4B92-A046-BE7506871F47}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.RoadAccessory", "plugins\jp.co.tripod.chiname.lib\src\RoadAccessory\FreeTrain.RoadAccessory.csproj", "{7264D32E-75DB-4C13-9EE4-E6263FD5B652}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.DummyCars", "plugins\jp.co.tripod.chiname.lib\src\DummyCars\FreeTrain.DummyCars.csproj", "{7264D32E-75DB-4C13-9EE4-E6263FD5B652}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreeTrain.HalfVoxelStructure", "plugins\jp.co.tripod.chiname.lib.halfvoxel\FreeTrain.HalfVoxelStructure.csproj", "{FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Debug Unicode = Debug Unicode - Release = Release - Release Unicode = Release Unicode - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug.ActiveCfg = Debug|.NET - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug.Build.0 = Debug|.NET - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode.ActiveCfg = Debug|.NET - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Debug Unicode.Build.0 = Debug|.NET - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release.ActiveCfg = Release|.NET - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release.Build.0 = Release|.NET - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode.ActiveCfg = Release|.NET - {7746CF50-D84E-4E7B-83FB-AB43DB854DA8}.Release Unicode.Build.0 = Release|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug.ActiveCfg = Debug|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug.Build.0 = Debug|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode.ActiveCfg = Debug|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Debug Unicode.Build.0 = Debug|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release.ActiveCfg = Release|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release.Build.0 = Release|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode.ActiveCfg = Release|.NET - {D3B86CCE-530E-4472-AE8E-3FA5F903C206}.Release Unicode.Build.0 = Release|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug.ActiveCfg = Debug|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug.Build.0 = Debug|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode.ActiveCfg = Debug|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Debug Unicode.Build.0 = Debug|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release.ActiveCfg = Release|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release.Build.0 = Release|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode.ActiveCfg = Release|.NET - {0616A314-BDF0-466D-AB4B-9FA1B071A8A2}.Release Unicode.Build.0 = Release|.NET - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug.ActiveCfg = Debug|Win32 - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug.Build.0 = Debug|Win32 - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode.ActiveCfg = Debug|Win32 - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Debug Unicode.Build.0 = Debug|Win32 - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release.ActiveCfg = Release|Win32 - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release.Build.0 = Release|Win32 - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode.ActiveCfg = Release|Win32 - {76CB19BD-60DD-44E1-AB7A-9E1A73D77CFD}.Release Unicode.Build.0 = Release|Win32 - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug.ActiveCfg = Debug|.NET - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug.Build.0 = Debug|.NET - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode.ActiveCfg = Debug|.NET - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Debug Unicode.Build.0 = Debug|.NET - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release.ActiveCfg = Release|.NET - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release.Build.0 = Release|.NET - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode.ActiveCfg = Release|.NET - {C7DA6E56-7BB2-43BC-871C-3B33F0DE038C}.Release Unicode.Build.0 = Release|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug.ActiveCfg = Debug|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug.Build.0 = Debug|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode.ActiveCfg = Debug|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Debug Unicode.Build.0 = Debug|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release.ActiveCfg = Release|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release.Build.0 = Release|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode.ActiveCfg = Release|.NET - {17B6AE46-0110-4C40-98EB-5F7E4E16C050}.Release Unicode.Build.0 = Release|.NET - {508553C7-F40C-4513-A45F-9058C5C65452}.Debug.ActiveCfg = Debug|.NET - {508553C7-F40C-4513-A45F-9058C5C65452}.Debug.Build.0 = Debug|.NET - {508553C7-F40C-4513-A45F-9058C5C65452}.Debug Unicode.ActiveCfg = Debug|.NET - {508553C7-F40C-4513-A45F-9058C5C65452}.Release.ActiveCfg = Release|.NET - {508553C7-F40C-4513-A45F-9058C5C65452}.Release.Build.0 = Release|.NET - {508553C7-F40C-4513-A45F-9058C5C65452}.Release Unicode.ActiveCfg = Release|.NET - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug.ActiveCfg = Debug|.NET - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug.Build.0 = Debug|.NET - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Debug Unicode.ActiveCfg = Debug|.NET - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release.ActiveCfg = Release|.NET - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release.Build.0 = Release|.NET - {717EB2D5-4AF0-40BD-967D-EA4FDB969852}.Release Unicode.ActiveCfg = Release|.NET - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug.ActiveCfg = Debug|.NET - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug.Build.0 = Debug|.NET - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Debug Unicode.ActiveCfg = Debug|.NET - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release.ActiveCfg = Release|.NET - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release.Build.0 = Release|.NET - {15D46FE4-4C72-426E-8A54-D8922AAD8E75}.Release Unicode.ActiveCfg = Release|.NET - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug.ActiveCfg = Debug|.NET - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug.Build.0 = Debug|.NET - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Debug Unicode.ActiveCfg = Debug|.NET - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release.ActiveCfg = Release|.NET - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release.Build.0 = Release|.NET - {45E5B5B6-274B-46D2-9F29-45D953D59728}.Release Unicode.ActiveCfg = Release|.NET - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug.ActiveCfg = Debug|.NET - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug.Build.0 = Debug|.NET - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Debug Unicode.ActiveCfg = Debug|.NET - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release.ActiveCfg = Release|.NET - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release.Build.0 = Release|.NET - {24E010BF-3085-42D2-812C-FD01D2AB446E}.Release Unicode.ActiveCfg = Release|.NET - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug.ActiveCfg = Debug|.NET - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug.Build.0 = Debug|.NET - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Debug Unicode.ActiveCfg = Debug|.NET - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release.ActiveCfg = Release|.NET - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release.Build.0 = Release|.NET - {FD37B5F1-A12B-42F5-B768-4FA21DF5E1D6}.Release Unicode.ActiveCfg = Release|.NET - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug.ActiveCfg = Debug|.NET - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug.Build.0 = Debug|.NET - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Debug Unicode.ActiveCfg = Debug|.NET - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release.ActiveCfg = Release|.NET - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release.Build.0 = Release|.NET - {BB5CC2A0-A3C7-447C-85B1-0133BB434314}.Release Unicode.ActiveCfg = Release|.NET - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug.ActiveCfg = Debug|.NET - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug.Build.0 = Debug|.NET - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Debug Unicode.ActiveCfg = Debug|.NET - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release.ActiveCfg = Release|.NET - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release.Build.0 = Release|.NET - {058250A9-3BD8-418A-A3C3-6BD38F564520}.Release Unicode.ActiveCfg = Release|.NET - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug.ActiveCfg = Debug|.NET - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug.Build.0 = Debug|.NET - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Debug Unicode.ActiveCfg = Debug|.NET - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release.ActiveCfg = Release|.NET - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release.Build.0 = Release|.NET - {E388A2ED-7487-4BFC-AF79-F8C827B39346}.Release Unicode.ActiveCfg = Release|.NET - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug.ActiveCfg = Debug|.NET - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug.Build.0 = Debug|.NET - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Debug Unicode.ActiveCfg = Debug|.NET - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release.ActiveCfg = Release|.NET - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release.Build.0 = Release|.NET - {F5C10827-E301-426F-B1CA-9EFFE49539C6}.Release Unicode.ActiveCfg = Release|.NET - {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug.ActiveCfg = Debug|.NET - {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug.Build.0 = Debug|.NET - {A9C4C2DD-509F-448B-A74F-176590457CED}.Debug Unicode.ActiveCfg = Debug|.NET - {A9C4C2DD-509F-448B-A74F-176590457CED}.Release.ActiveCfg = Release|.NET - {A9C4C2DD-509F-448B-A74F-176590457CED}.Release.Build.0 = Release|.NET - {A9C4C2DD-509F-448B-A74F-176590457CED}.Release Unicode.ActiveCfg = Release|.NET - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug.ActiveCfg = Debug|.NET - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug.Build.0 = Debug|.NET - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Debug Unicode.ActiveCfg = Debug|.NET - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release.ActiveCfg = Release|.NET - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release.Build.0 = Release|.NET - {4380999E-CA4C-4AA2-8848-12FFABF72535}.Release Unicode.ActiveCfg = Release|.NET - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug.ActiveCfg = Debug|.NET - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug.Build.0 = Debug|.NET - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Debug Unicode.ActiveCfg = Debug|.NET - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release.ActiveCfg = Release|.NET - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release.Build.0 = Release|.NET - {F209ABA2-B4B3-4C9C-8540-8B06071994FC}.Release Unicode.ActiveCfg = Release|.NET - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug.ActiveCfg = Debug|.NET - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug.Build.0 = Debug|.NET - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Debug Unicode.ActiveCfg = Debug|.NET - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release.ActiveCfg = Release|.NET - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release.Build.0 = Release|.NET - {21F3202B-B5D1-41B2-9808-9FB4E87D848A}.Release Unicode.ActiveCfg = Release|.NET - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug.ActiveCfg = Debug|.NET - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug.Build.0 = Debug|.NET - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Debug Unicode.ActiveCfg = Debug|.NET - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release.ActiveCfg = Release|.NET - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release.Build.0 = Release|.NET - {21B1FB9B-EDD9-482E-B559-628FC0C9A5BD}.Release Unicode.ActiveCfg = Release|.NET - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug.ActiveCfg = Debug|.NET - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug.Build.0 = Debug|.NET - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Debug Unicode.ActiveCfg = Debug|.NET - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release.ActiveCfg = Release|.NET - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release.Build.0 = Release|.NET - {1DFD6EFB-270C-4ABE-BA76-AE56815C9F00}.Release Unicode.ActiveCfg = Release|.NET - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug.ActiveCfg = Debug|.NET - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug.Build.0 = Debug|.NET - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Debug Unicode.ActiveCfg = Debug|.NET - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release.ActiveCfg = Release|.NET - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release.Build.0 = Release|.NET - {C874FCFE-6EBB-4C73-99AF-6FF19AB735A3}.Release Unicode.ActiveCfg = Release|.NET - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug.ActiveCfg = Debug|.NET - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug.Build.0 = Debug|.NET - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Debug Unicode.ActiveCfg = Debug|.NET - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release.ActiveCfg = Release|.NET - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release.Build.0 = Release|.NET - {D01D6622-F67B-4EDC-8CA3-4E1A8FCA422B}.Release Unicode.ActiveCfg = Release|.NET - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug.ActiveCfg = Debug|Win32 - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug.Build.0 = Debug|Win32 - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode.ActiveCfg = Debug|Win32 - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Debug Unicode.Build.0 = Debug|Win32 - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release.ActiveCfg = Release|Win32 - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release.Build.0 = Release|Win32 - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode.ActiveCfg = Release|Win32 - {214B6310-5ECF-4A0B-835E-559F2EB4ABC6}.Release Unicode.Build.0 = Release|Win32 - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug.ActiveCfg = Debug|.NET - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug.Build.0 = Debug|.NET - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode.ActiveCfg = Debug|.NET - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Debug Unicode.Build.0 = Debug|.NET - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release.ActiveCfg = Release|.NET - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release.Build.0 = Release|.NET - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode.ActiveCfg = Release|.NET - {D600BE69-53F2-49FE-B79B-7043F0F0D4D1}.Release Unicode.Build.0 = Release|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug.ActiveCfg = Debug|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug.Build.0 = Debug|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode.ActiveCfg = Debug|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Debug Unicode.Build.0 = Debug|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release.ActiveCfg = Release|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release.Build.0 = Release|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode.ActiveCfg = Release|.NET - {1A7A0168-D783-4F4A-9B39-FBCCB08078AE}.Release Unicode.Build.0 = Release|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug.ActiveCfg = Debug|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug.Build.0 = Debug|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode.ActiveCfg = Debug|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Debug Unicode.Build.0 = Debug|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release.ActiveCfg = Release|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release.Build.0 = Release|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode.ActiveCfg = Release|.NET - {AD3CD7FE-3E36-40D3-AA25-F635D73B3C7C}.Release Unicode.Build.0 = Release|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug.ActiveCfg = Debug|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug.Build.0 = Debug|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode.ActiveCfg = Debug|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Debug Unicode.Build.0 = Debug|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release.ActiveCfg = Release|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release.Build.0 = Release|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode.ActiveCfg = Release|.NET - {4C35BAD5-CAEE-498F-9BA7-8771FBEA4979}.Release Unicode.Build.0 = Release|.NET - {9213F69B-447F-4B92-A046-BE7506871F47}.Debug.ActiveCfg = Debug|.NET - {9213F69B-447F-4B92-A046-BE7506871F47}.Debug.Build.0 = Debug|.NET - {9213F69B-447F-4B92-A046-BE7506871F47}.Debug Unicode.ActiveCfg = Debug|.NET - {9213F69B-447F-4B92-A046-BE7506871F47}.Release.ActiveCfg = Release|.NET - {9213F69B-447F-4B92-A046-BE7506871F47}.Release Unicode.ActiveCfg = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug.ActiveCfg = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug.Build.0 = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode.ActiveCfg = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode.Build.0 = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release.ActiveCfg = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release.Build.0 = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode.ActiveCfg = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode.Build.0 = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug.ActiveCfg = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug.Build.0 = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode.ActiveCfg = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Debug Unicode.Build.0 = Debug|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release.ActiveCfg = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release.Build.0 = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode.ActiveCfg = Release|.NET - {7264D32E-75DB-4C13-9EE4-E6263FD5B652}.Release Unicode.Build.0 = Release|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug.ActiveCfg = Debug|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug.Build.0 = Debug|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode.ActiveCfg = Debug|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Debug Unicode.Build.0 = Debug|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release.ActiveCfg = Release|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release.Build.0 = Release|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode.ActiveCfg = Release|.NET - {FBA1BF4E-5481-41AC-BED0-6D6326CC4C2F}.Release Unicode.Build.0 = Release|.NET - EndGlobalSection - GlobalSection(SolutionItems) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal Deleted: trunk/FreeTrain/tools/FreeTrain.suo =================================================================== (Binary files differ) Deleted: trunk/FreeTrain/tools/copyresources.bat =================================================================== --- trunk/FreeTrain/tools/copyresources.bat 2007-04-09 03:45:27 UTC (rev 27) +++ trunk/FreeTrain/tools/copyresources.bat 2007-04-10 02:36:02 UTC (rev 28) @@ -1,3 +0,0 @@ -xcopy core\res %1\res /D /E /I /Q /Y /EXCLUDE:excludelist.txt -xcopy plugins %1\plugins /D /E /I /Q /Y /EXCLUDE:excludelist.txt -pause \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-09 03:45:28
|
Revision: 27 http://freetrain.svn.sourceforge.net/freetrain/?rev=27&view=rev Author: himasaram Date: 2007-04-08 20:45:27 -0700 (Sun, 08 Apr 2007) Log Message: ----------- Remove superfluous directories Removed Paths: ------------- trunk/FreeTrain/core/framework/container/ trunk/FreeTrain/core/framework/plugin/impl/ trunk/FreeTrain/core/plugins/ trunk/FreeTrain/core/util/video/ trunk/FreeTrain/core/world/traffic/ trunk/FreeTrain/lib/MagicLibrary/ trunk/FreeTrain/plugins/A4MemBGM/ trunk/FreeTrain/plugins/ColorTestTrain/ trunk/FreeTrain/plugins/Creek.Eikichiya/ trunk/FreeTrain/plugins/DebugWindow/ trunk/FreeTrain/plugins/ManualTrainController/ trunk/FreeTrain/plugins/RailSignal/ trunk/FreeTrain/plugins/RiceField/ trunk/FreeTrain/plugins/SoccerStadium/ trunk/FreeTrain/plugins/TATTrainController/ trunk/FreeTrain/plugins/Terrace/ trunk/FreeTrain/plugins/TerrainLoader/ trunk/FreeTrain/plugins/TrainGarage/ trunk/FreeTrain/plugins/VinylHouse/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-09 03:29:26
|
Revision: 26 http://freetrain.svn.sourceforge.net/freetrain/?rev=26&view=rev Author: himasaram Date: 2007-04-08 20:29:26 -0700 (Sun, 08 Apr 2007) Log Message: ----------- Fix some translations and file encodings Modified Paths: -------------- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs 2007-04-09 01:38:54 UTC (rev 25) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs 2007-04-09 03:29:26 UTC (rev 26) @@ -11,8 +11,8 @@ public ContributionImpl( XmlElement e ) : base(e) { } - public override string name { get { return "サッカースタジアム"; } } - //! public override string name { get { return "Soccer Stadium"; } } + public override string name { get { return "Soccer Stadium"; } } + //! public override string name { get { return "サッカースタジアム"; } } public override string oneLineDescription { get { Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml 2007-04-09 01:38:54 UTC (rev 25) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml 2007-04-09 03:29:26 UTC (rev 26) @@ -33,7 +33,8 @@ <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="station" id="{E1C41DF8-6C9B-465d-A798-2624551AC4FD}"> - <name>ローカル駅舎1(L)</name> + <name>Local station 1 (L)</name> + <!--!<name>ローカル駅舎1(L)</name>--> &localStation; <sprite origin="0,0" offset="16"> <picture src="local1-02.bmp" /> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs 2007-04-09 01:38:54 UTC (rev 25) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs 2007-04-09 03:29:26 UTC (rev 26) @@ -7,14 +7,14 @@ namespace freetrain.world.rail.tattc { /// <summary> - /// JunctionAdvancedDialog \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// JunctionAdvancedDialog の概要の説明です。 /// </summary> internal class JunctionAdvancedDialog : System.Windows.Forms.Form { internal JunctionAdvancedDialog( Junction junction ) { this.junction = junction; // - // Windows \x83t\x83H\x81[\x83\x80 \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ł\xB7\x81B + // Windows フォーム デザイナ サポートに必要です。 // InitializeComponent(); @@ -36,7 +36,7 @@ private readonly Junction junction; /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing && components != null) @@ -66,13 +66,13 @@ private System.Windows.Forms.Button buttonReplace; private System.Windows.Forms.ListView triggerList; /// <summary> - /// \x95K\x97v\x82ȃf\x83U\x83C\x83i\x95ϐ\x94\x82ł\xB7\x81B + /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -123,7 +123,7 @@ this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Requirement"; - //! this.groupBox1.Text = "\x8F\xF0\x8C\x8F"; + //! this.groupBox1.Text = "条件"; // // radioCurve // @@ -132,7 +132,7 @@ this.radioCurve.Size = new System.Drawing.Size(64, 24); this.radioCurve.TabIndex = 9; this.radioCurve.Text = "Junction"; - //! this.radioCurve.Text = "\x95\xAA\x8A\xF2"; + //! this.radioCurve.Text = "分岐"; this.radioCurve.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // radioStraight @@ -144,7 +144,7 @@ this.radioStraight.TabIndex = 8; this.radioStraight.TabStop = true; this.radioStraight.Text = "Straight"; - //! this.radioStraight.Text = "\x92\xBC\x90i"; + //! this.radioStraight.Text = "直進"; // // buttonReplace // @@ -154,7 +154,7 @@ this.buttonReplace.Size = new System.Drawing.Size(64, 24); this.buttonReplace.TabIndex = 11; this.buttonReplace.Text = "&Replace"; - //! this.buttonReplace.Text = "\x92u\x8A\xB7(&R)"; + //! this.buttonReplace.Text = "置換(&R)"; this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click); // // label4 @@ -164,7 +164,7 @@ this.label4.Size = new System.Drawing.Size(20, 20); this.label4.TabIndex = 7; this.label4.Text = "o'clock"; - //! this.label4.Text = "\x8E\x9E"; + //! this.label4.Text = "時"; this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // hourBox @@ -209,7 +209,7 @@ this.label3.Size = new System.Drawing.Size(32, 20); this.label3.TabIndex = 5; this.label3.Text = "day"; - //! this.label3.Text = "\x97j\x93\xFA"; + //! this.label3.Text = "曜日"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // dayOfWeekBox @@ -224,13 +224,13 @@ "Thurs", "Fri", "Satur"}); - //!"\x93\xFA", - //!"\x8C\x8E", - //!"\x89\xCE", - //!"\x90\x85", - //!"\x96\xD8", - //!"\x8B\xE0", - //!"\x93y"}); + //!"日", + //!"月", + //!"火", + //!"水", + //!"木", + //!"金", + //!"土"}); this.dayOfWeekBox.Location = new System.Drawing.Point(176, 16); this.dayOfWeekBox.MaxDropDownItems = 13; this.dayOfWeekBox.Name = "dayOfWeekBox"; @@ -244,7 +244,7 @@ this.label2.Size = new System.Drawing.Size(16, 20); this.label2.TabIndex = 3; this.label2.Text = "th"; - //! this.label2.Text = "\x93\xFA"; + //! this.label2.Text = "日"; this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // dayBox @@ -296,7 +296,7 @@ this.label1.Size = new System.Drawing.Size(16, 20); this.label1.TabIndex = 1; this.label1.Text = "month"; - //! this.label1.Text = "\x8C\x8E"; + //! this.label1.Text = "月"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // monthBox @@ -330,7 +330,7 @@ this.buttonAdd.Size = new System.Drawing.Size(64, 24); this.buttonAdd.TabIndex = 10; this.buttonAdd.Text = "&Add"; - //! this.buttonAdd.Text = "\x92lj\xC1(&A)"; + //! this.buttonAdd.Text = "追加(&A)"; this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click); // // buttonUp @@ -340,7 +340,7 @@ this.buttonUp.Name = "buttonUp"; this.buttonUp.Size = new System.Drawing.Size(64, 24); this.buttonUp.TabIndex = 13; - this.buttonUp.Text = "\x81\xAA"; + this.buttonUp.Text = "↑"; this.buttonUp.Click += new System.EventHandler(this.buttonUp_Click); // // buttonDown @@ -350,7 +350,7 @@ this.buttonDown.Name = "buttonDown"; this.buttonDown.Size = new System.Drawing.Size(64, 24); this.buttonDown.TabIndex = 14; - this.buttonDown.Text = "\x81\xAB"; + this.buttonDown.Text = "↓"; this.buttonDown.Click += new System.EventHandler(this.buttonDown_Click); // // buttonRemove @@ -361,7 +361,7 @@ this.buttonRemove.Size = new System.Drawing.Size(64, 24); this.buttonRemove.TabIndex = 15; this.buttonRemove.Text = "Delete"; - //! this.buttonRemove.Text = "\x8D폜"; + //! this.buttonRemove.Text = "削除"; this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click); // // buttonOk @@ -401,31 +401,31 @@ // columnHeader1 // this.columnHeader1.Text = "Month"; - //! this.columnHeader1.Text = "\x8C\x8E"; + //! this.columnHeader1.Text = "月"; this.columnHeader1.Width = 55; // // columnHeader2 // this.columnHeader2.Text = "Date"; - //! this.columnHeader2.Text = "\x93\xFA"; + //! this.columnHeader2.Text = "日"; this.columnHeader2.Width = 55; // // columnHeader3 // this.columnHeader3.Text = "Day"; - //! this.columnHeader3.Text = "\x97j\x93\xFA"; + //! this.columnHeader3.Text = "曜日"; this.columnHeader3.Width = 55; // // columnHeader4 // this.columnHeader4.Text = "Time"; - //! this.columnHeader4.Text = "\x8E\x9E"; + //! this.columnHeader4.Text = "時"; this.columnHeader4.Width = 55; // // columnHeader5 // this.columnHeader5.Text = "Direction"; - //! this.columnHeader5.Text = "\x95\xFB\x8C\xFC"; + //! this.columnHeader5.Text = "方向"; this.columnHeader5.Width = 55; // // JunctionAdvancedDialog @@ -447,7 +447,7 @@ this.Name = "JunctionAdvancedDialog"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show; this.Text = "Advanced point settings"; - //! this.Text = "\x83|\x83C\x83\x93\x83g\x82̏ڍאݒ\xE8"; + //! this.Text = "ポイントの詳細設定"; this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); @@ -560,7 +560,7 @@ lvi.SubItems.Add(numberToString(rule.hour)); lvi.SubItems.Add( rule.route==JunctionRoute.Straight?"Straight":"Junction" ); - //! lvi.SubItems.Add( rule.route==JunctionRoute.Straight?"\x92\xBC\x90i":"\x95\xAA\x8A\xF2" ); + //! lvi.SubItems.Add( rule.route==JunctionRoute.Straight?"直進":"分岐" ); } private string numberToString( sbyte i ) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-09 01:38:55
|
Revision: 25 http://freetrain.svn.sourceforge.net/freetrain/?rev=25&view=rev Author: himasaram Date: 2007-04-08 18:38:54 -0700 (Sun, 08 Apr 2007) Log Message: ----------- Fix a case of backslash-turned-into-yen-sign plus other minor fixes Modified Paths: -------------- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/plugin.xml trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/NumberEditEx.cs trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/ControllerForm.cs Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/plugin.xml 2007-04-09 00:46:03 UTC (rev 24) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.bank/plugin.xml 2007-04-09 01:38:54 UTC (rev 25) @@ -1,11 +1,14 @@ <?xml version="1.0" encoding="UTF-8" ?> <plug-in> <title>Banking module</title> + <!--!<title>銀行モジュール</title>--> <author>C477@2両目</author> <homepage>http://www.rocket.ne.jp/~nao/</homepage> <contribution type="dockingContent" id="{8254AA45-A93B-4989-C477-3D3BD31F7A8D}"> <name>List of debts and savings</name> <menu name="List of debts and savings" location="view" /> + <!--!<name>借入金・預金一覧</name> + <menu name="借入金・預金一覧" location="view" />--> <class name="freetrain.views.bank.BankbookWindow" codebase="bin/Debug/Bank.dll" /> </contribution> <contribution type="menu" id="{AD26D946-C86C-4904-C477-C79CDAAADBD6}"> Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/NumberEditEx.cs =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/NumberEditEx.cs 2007-04-09 00:46:03 UTC (rev 24) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/NumberEditEx.cs 2007-04-09 01:38:54 UTC (rev 25) @@ -248,7 +248,7 @@ { char key = e.KeyChar; if( '0' <= key && '9' >= key ) return; - if( '¥b' == key ) return; + if( '\b' == key ) return; e.Handled = true; } Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/ControllerForm.cs =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/ControllerForm.cs 2007-04-09 00:46:03 UTC (rev 24) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.lib/src/RoadAccessory/ControllerForm.cs 2007-04-09 01:38:54 UTC (rev 25) @@ -112,7 +112,7 @@ this.buttonPlace.Size = new System.Drawing.Size(56, 24); this.buttonPlace.TabIndex = 8; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "設置"; + this.buttonPlace.Text = "Build"; //! this.buttonPlace.Text = "設置"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonPlace.CheckedChanged += new System.EventHandler(this.onTypeChanged); @@ -128,7 +128,7 @@ this.typeBox, this.preview}); this.Name = "ControllerForm"; - this.Text = "Road accessory"; + this.Text = "Road accessories"; //! this.Text = "道路アクセサリ"; this.ResumeLayout(false); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-09 00:46:06
|
Revision: 24 http://freetrain.svn.sourceforge.net/freetrain/?rev=24&view=rev Author: himasaram Date: 2007-04-08 17:46:03 -0700 (Sun, 08 Apr 2007) Log Message: ----------- Fix some plugin loading errors Modified Paths: -------------- trunk/FreeTrain/core/framework/plugin/PluginManager.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/plugin.xml trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl Modified: trunk/FreeTrain/core/framework/plugin/PluginManager.cs =================================================================== --- trunk/FreeTrain/core/framework/plugin/PluginManager.cs 2007-04-08 08:56:33 UTC (rev 23) +++ trunk/FreeTrain/core/framework/plugin/PluginManager.cs 2007-04-09 00:46:03 UTC (rev 24) @@ -112,8 +112,8 @@ } catch( Exception e ) { if( errCount++ <= 5 ) MessageBox.Show(e.ToString(), - "プラグイン"+Path.GetFileName(dir)+"がロードできません"); - //! "Plugin "+Path.GetFileName(dir)+" can not be loaded"); + "Plugin "+Path.GetFileName(dir)+" can not be loaded"); + //! "プラグイン"+Path.GetFileName(dir)+"がロードできません"); if( errCount==5 ) MessageBox.Show("There are too many plugin loading errors"); //! MessageBox.Show("プラグインのロードエラーが多すぎます"); @@ -211,7 +211,7 @@ public static string getDefaultPluginDirectory() { // try the IDE directory first string pluginDir = Path.GetFullPath(Path.Combine( - Core.installationDirectory, @"..¥..¥plugins" )); + Core.installationDirectory, @"..\..\plugins" )); if(Directory.Exists(pluginDir)) return pluginDir; Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml 2007-04-08 08:56:33 UTC (rev 23) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml 2007-04-09 00:46:03 UTC (rev 24) @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>Bridges & Tunnels</title> + <title>Bridges & Tunnels</title> <!--!<title>鉄橋・トンネル</title>--> <author>477さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml 2007-04-08 08:56:33 UTC (rev 23) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml 2007-04-09 00:46:03 UTC (rev 24) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> <title>Soccer Stadium</title> <!--!<title>サッカースタジアム</title>--> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/plugin.xml 2007-04-08 08:56:33 UTC (rev 23) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/plugin.xml 2007-04-09 00:46:03 UTC (rev 24) @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>Terraces & Cuts</title> + <title>Terraces & Cuts</title> <!--!<title>雛壇と切り通し</title>--> <author>477さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> Modified: trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl =================================================================== --- trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl 2007-04-08 08:56:33 UTC (rev 23) +++ trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl 2007-04-09 00:46:03 UTC (rev 24) @@ -25,7 +25,8 @@ <small> <xsl:text> (</xsl:text> <xsl:value-of select="count($trains)"/> - <xsl:text>コ)</xsl:text> + <xsl:text> trains)</xsl:text> + <!--!<xsl:text>コ)</xsl:text>--> </small> </li> <saxon:output href="{generate-id(.)}.html" method="html"> @@ -46,7 +47,7 @@ </saxon:output> </xsl:for-each> </ul> - <p>Total number: <xsl:value-of select="count(//train)"/></p> + <p>Total number of trains: <xsl:value-of select="count(//train)"/></p> <!--!<p>全<xsl:value-of select="count(//train)"/>個</p>--> </body> </html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-08 08:56:34
|
Revision: 23 http://freetrain.svn.sourceforge.net/freetrain/?rev=23&view=rev Author: himasaram Date: 2007-04-08 01:56:33 -0700 (Sun, 08 Apr 2007) Log Message: ----------- Translation complete Modified Paths: -------------- trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs trunk/FreeTrain/experiments/RoadSimulator/Form1.cs trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml trunk/FreeTrain/plugins/system/plugin.xml trunk/FreeTrain/tools/PicturePreviewer/AssemblyInfo.cs trunk/FreeTrain/tools/PicturePreviewer/Previewer.cs trunk/FreeTrain/tools/TrainListBuilder/src/MainForm.cs trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl trunk/FreeTrain/tools/XmlCombiner/AssemblyInfo.cs trunk/FreeTrain/tools/XmlCombiner/XmlCombiner.cs trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs Modified: trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -171,7 +171,8 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(16, 20); this.label3.TabIndex = 5; - this.label3.Text = "×"; + this.label3.Text = "x"; + //! this.label3.Text = "×"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // count @@ -365,7 +366,7 @@ this.name.Name = "name"; this.name.Size = new System.Drawing.Size(184, 16); this.name.TabIndex = 25; - this.name.Text = "123 system ABCDEF"; + this.name.Text = "123 series ABCDEF"; //! this.name.Text = "123系 ABCDEF"; this.name.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // Modified: trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs =================================================================== --- trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -137,7 +137,7 @@ this.structType, this.preview}); this.Name = "StructPlacementController"; - this.Text = "Building construction (temporary) "; + this.Text = "Building construction"; //! this.Text = "建物の工事(仮)"; this.ResumeLayout(false); Modified: trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs =================================================================== --- trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -112,7 +112,7 @@ this.heightBox, this.label1}); this.Name = "VarHeightBuildingController"; - this.Text = "Building construction (temporary)"; + this.Text = "Building construction"; //! this.Text = "建物の工事(仮)"; ((System.ComponentModel.ISupportInitialize)(this.heightBox)).EndInit(); this.ResumeLayout(false); Modified: trunk/FreeTrain/experiments/RoadSimulator/Form1.cs =================================================================== --- trunk/FreeTrain/experiments/RoadSimulator/Form1.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/experiments/RoadSimulator/Form1.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -103,7 +103,8 @@ this.btnStep.Name = "btnStep"; this.btnStep.Size = new System.Drawing.Size(40, 23); this.btnStep.TabIndex = 1; - this.btnStep.Text = ">|"; + this.btnStep.Text = ">|"; + //! this.btnStep.Text = ">|"; this.toolTip1.SetToolTip(this.btnStep, "NEXT STEP"); this.btnStep.Click += new System.EventHandler(this.btnStep_Click); // @@ -225,7 +226,8 @@ this.btnPlay.Name = "btnPlay"; this.btnPlay.Size = new System.Drawing.Size(40, 24); this.btnPlay.TabIndex = 5; - this.btnPlay.Text = ">"; + this.btnPlay.Text = ">"; + //! this.btnPlay.Text = ">"; this.btnPlay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.toolTip1.SetToolTip(this.btnPlay, "PLAY"); this.btnPlay.CheckedChanged += new System.EventHandler(this.btnPlay_CheckedChanged); Modified: trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml =================================================================== --- trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/plugins/jp.co.tripod.chiname.financial.stockmarket/companies.xml 2007-04-08 08:56:33 UTC (rev 23) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!-- このファイルは、C477氏の作成したファイルを元に、ジャガイモが作成しました。 詳しい情報は下記のURLへ。 @@ -46,16 +46,19 @@ <!--020 建設業--> <company id="1801" name="Daisei Construction" type="020"> + <!--!<company id="1801" name="大製建設" type="020">--> <performance capital="10000000" sales="16000000000" /> <capacity brand="9" marketing="5" quality="7" rationality="3" development="3" /> <stock total="1100000" share="200000" /> </company> <company id="1802" name="Obayashi Group" type="020"> + <!--!<company id="1802" name="雄林組" type="020">--> <performance capital="6000000" sales="2500000000" /> <capacity brand="9" marketing="5" quality="8" rationality="3" development="3" /> <stock total="120000" share="50000" /> </company> <company id="1942" name="Nishi Electrics" type="020"> + <!--!<company id="1942" name="西電工" type="020">--> <performance capital="1000000" sales="4500000000" /> <capacity brand="8" marketing="6" quality="7" rationality="4" development="3" /> <stock total="200000" share="100000" /> @@ -64,11 +67,13 @@ <!--021 食品--> <company id="2002" name="Nisshin Seifun Group" type="021"> + <!--!<company id="2002" name="日進製粉グループ" type="021">--> <performance capital="350000" sales="45000000" /> <capacity brand="8" marketing="4" quality="6" rationality="1" development="2" /> <stock total="20000" share="5600" /> </company> <company id="2503" name="Raijin Breweries" type="021"> + <!--!<company id="2503" name="雷神麦酒" type="021">--> <performance capital="100000000" sales="900000000" /> <capacity brand="5" marketing="6" quality="7" rationality="3" development="1" /> <stock total="300000" share="30000" /> @@ -77,11 +82,13 @@ <!--022 繊維--> <company id="3103" name="Yuninica" type="022"> + <!--!<company id="3103" name="ユニニカ" type="022">--> <performance capital="200000" sales="700000000" /> <capacity brand="6" marketing="6" quality="5" rationality="3" development="4" /> <stock total="5000000" share="3000000" /> </company> <company id="3402" name="Dai-re" type="022"> + <!--!<company id="3402" name="大レ" type="022">--> <performance capital="800000" sales="80000000" /> <capacity brand="7" marketing="3" quality="7" rationality="4" development="2" /> <stock total="200000" share="100000" /> @@ -90,11 +97,13 @@ <!--023 パルプ・紙--> <company id="3861" name="Shibusawa Manufacturing" type="023"> + <!--!<company id="3861" name="澁澤製紙" type="023">--> <performance capital="1000000" sales="550000000" /> <capacity brand="8" marketing="4" quality="5" rationality="5" development="4" /> <stock total="1000000" share="500000" /> </company> <company id="3872" name="Itsubishi Manufacturing" type="023"> + <!--!<company id="3872" name="五菱製紙" type="023">--> <performance capital="800000" sales="35000000" /> <capacity brand="2" marketing="6" quality="6" rationality="3" development="3" /> <stock total="250000" share="30000" /> @@ -103,11 +112,13 @@ <!--030 化学--> <company id="4023" name="Kureha Chemical" type="030"> + <!--!<company id="4023" name="暮羽化学" type="030">--> <performance capital="4500000" sales="700000000" /> <capacity brand="3" marketing="4" quality="5" rationality="6" development="1" /> <stock total="200000" share="100000" /> </company> <company id="4208" name="Ube Mining" type="030"> + <!--!<company id="4208" name="宇部鉱産" type="030">--> <performance capital="8000000" sales="300000000" /> <capacity brand="7" marketing="5" quality="6" rationality="4" development="2" /> <stock total="520000" share="40000" /> @@ -116,11 +127,13 @@ <!--031 医薬品--> <company id="4503" name="Hamanouchi Pharmaceutical" type="031"> + <!--!<company id="4503" name="濱之内製薬" type="031">--> <performance capital="2800000" sales="700000000" /> <capacity brand="7" marketing="5" quality="6" rationality="3" development="2" /> <stock total="30000" share="10000" /> </company> <company id="4535" name="Daisho Pharmaceutical" type="031"> + <!--!<company id="4535" name="大賞製薬" type="031">--> <performance capital="2000000" sales="400000000" /> <capacity brand="5" marketing="9" quality="5" rationality="4" development="4" /> <stock total="50000" share="10000" /> @@ -129,11 +142,13 @@ <!--032 石油・石炭--> <company id="5001" name="Japan Oil" type="032"> + <!--!<company id="5001" name="にっぽん石油" type="032">--> <performance capital="6400000" sales="5000000000" /> <capacity brand="5" marketing="8" quality="6" rationality="3" development="6" /> <stock total="300000" share="40000" /> </company> <company id="5002" name="Asahi Oil" type="032"> + <!--!<company id="5002" name="旭石油" type="032">--> <performance capital="5300000" sales="5000000000" /> <capacity brand="6" marketing="2" quality="9" rationality="4" development="3" /> <stock total="200000" share="55000" /> @@ -141,7 +156,8 @@ <!--033 ゴム--> - <company id="5108" name="Predgest" type="033"> + <company id="5108" name="Pregiest" type="033"> + <!--!<company id="5108" name="ブリヂエスト" type="033">--> <performance capital="1200000" sales="350000000" /> <capacity brand="8" marketing="3" quality="6" rationality="3" development="5" /> <stock total="200000" share="100000" /> @@ -150,6 +166,7 @@ <!--034 ガラス--> <company id="5201" name="Asahi Glass" type="034"> + <!--!<company id="5201" name="朝日グラス" type="034">--> <performance capital="2500000" sales="5000000000" /> <capacity brand="8" marketing="3" quality="3" rationality="6" development="6" /> <stock total="1300000" share="300000" /> @@ -157,12 +174,14 @@ <!--035 窯業--> - <company id="5232" name="Sumidomo Kansei Cement" type="035"> + <company id="5232" name="Sumidomo Kansai Cement" type="035"> + <!--!<company id="5232" name="清友関西セメント" type="035">--> <performance capital="8000000" sales="1600000000" /> <capacity brand="4" marketing="6" quality="4" rationality="3" development="5" /> <stock total="3200000" share="2200000" /> </company> <company id="5233" name="Taiyo Cement" type="035"> + <!--!<company id="5233" name="太洋セメント" type="035">--> <performance capital="10000000" sales="150000000" /> <capacity brand="8" marketing="3" quality="2" rationality="6" development="2" /> <stock total="200000" share="150000" /> @@ -171,11 +190,13 @@ <!--036 鉄鋼--> <company id="5405" name="Sumidomo Metalworking" type="036"> + <!--!<company id="5405" name="清友金属工業" type="036">--> <performance capital="1500000" sales="1000000000" /> <capacity brand="5" marketing="5" quality="5" rationality="3" development="3" /> <stock total="5000000" share="3000000" /> </company> <company id="5406" name="Hanshin Steel" type="036"> + <!--!<company id="5406" name="阪神製鋼" type="036">--> <performance capital="1000000" sales="480000000" /> <capacity brand="8" marketing="3" quality="9" rationality="3" development="6" /> <stock total="3000000" share="2000000" /> @@ -184,11 +205,13 @@ <!--037 非鉄--> <company id="5711" name="Itsubishi Material" type="037"> + <!--!<company id="5711" name="五菱マテリアル" type="037">--> <performance capital="5000000" sales="2600000000" /> <capacity brand="8" marketing="3" quality="6" rationality="3" development="5" /> <stock total="3000000" share="1000000" /> </company> <company id="5713" name="Sumidomo Mining" type="037"> + <!--!<company id="5713" name="清友金属鉱山" type="037">--> <performance capital="3000000" sales="1000000000" /> <capacity brand="5" marketing="8" quality="8" rationality="2" development="3" /> <stock total="500000" share="250000" /> @@ -199,16 +222,19 @@ <!--040 機械--> <company id="5631" name="Daiwa Steel Works" type="040"> + <!--!<company id="5631" name="大和製鋼所" type="040">--> <performance capital="15000000" sales="45000000000" /> <capacity brand="5" marketing="6" quality="5" rationality="1" development="6" /> <stock total="350000" share="250000" /> </company> <company id="7011" name="Itsubishi Heavy Industries" type="040"> + <!--!<company id="7011" name="五菱重工業" type="040">--> <performance capital="30000000" sales="600000000000" /> <capacity brand="8" marketing="6" quality="8" rationality="4" development="3" /> <stock total="8000000" share="5000000" /> </company> <company id="7013" name="Morishima Hama Heavy Industries" type="040"> + <!--!<company id="7013" name="森島播磨重工業" type="040">--> <performance capital="50000000" sales="400000000000" /> <capacity brand="9" marketing="8" quality="7" rationality="3" development="5" /> <stock total="3100000" share="1800000" /> @@ -217,26 +243,31 @@ <!--041 電気機器--> <company id="6501" name="Hidachi Manufacturing" type="041"> + <!--!<company id="6501" name="常陸製作所" type="041">--> <performance capital="28000000" sales="350000000000" /> <capacity brand="8" marketing="3" quality="9" rationality="2" development="3" /> <stock total="100000" share="67000" /> </company> <company id="6502" name="Shiba Electric" type="041"> + <!--!<company id="6502" name="芝電" type="041">--> <performance capital="30000000" sales="300000000000" /> <capacity brand="7" marketing="4" quality="6" rationality="2" development="5" /> <stock total="100000" share="70000" /> </company> <company id="6742" name="Kyosan Manufacturing" type="041"> + <!--!<company id="6742" name="京賛製作所" type="041">--> <performance capital="620000" sales="6000000000" /> <capacity brand="8" marketing="7" quality="8" rationality="5" development="8" /> <stock total="6300" share="4" /> </company> <company id="6752" name="Matsushika Electric Industrial" type="041"> + <!--!<company id="6752" name="松鹿電器産業" type="041">--> <performance capital="26000000" sales="100000000000" /> <capacity brand="9" marketing="8" quality="7" rationality="2" development="6" /> <stock total="24000" share="8000" /> </company> - <company id="6758" name="Sona" type="041"> + <company id="6758" name="SONA" type="041"> + <!--!<company id="6758" name="ソナ" type="041">--> <performance capital="50000000" sales="400000000000" /> <capacity brand="10" marketing="10" quality="5" rationality="10" development="8" /> <stock total="35000" share="2600" /> @@ -247,16 +278,19 @@ <!--042 自動車--> <company id="7201" name="Nisan Motors" type="042"> + <!--!<company id="7201" name="日参自動車" type="042">--> <performance capital="6000000" sales="6000000000" /> <capacity brand="8" marketing="5" quality="9" rationality="9" development="9" /> <stock total="60000" share="15000" /> </company> <company id="7203" name="Toyoto Motors" type="042"> + <!--!<company id="7203" name="トヨト自動車" type="042">--> <performance capital="4000000" sales="30000000000" /> <capacity brand="10" marketing="9" quality="6" rationality="8" development="5" /> <stock total="100000" share="54000" /> </company> <company id="7267" name="Handa Industries" type="042"> + <!--!<company id="7267" name="半田技研工業" type="042">--> <performance capital="1000000" sales="25000000000" /> <capacity brand="6" marketing="7" quality="7" rationality="9" development="5" /> <stock total="36000" share="24000" /> @@ -265,11 +299,13 @@ <!--043 造船--> <company id="7004" name="Hidachi Shipyard" type="043"> + <!--!<company id="7004" name="常陸造船" type="043">--> <performance capital="3000000" sales="60000000000" /> <capacity brand="5" marketing="1" quality="6" rationality="3" development="6" /> <stock total="1000000" share="200000" /> </company> - <company id="7003" name="Mitui Shipyard" type="043"> + <company id="7003" name="Hikarii Shipyard" type="043"> + <!--!<company id="7003" name="光井造船" type="043">--> <performance capital="5000000" sales="80000000000" /> <capacity brand="8" marketing="8" quality="8" rationality="6" development="2" /> <stock total="2500000" share="150000" /> @@ -280,6 +316,7 @@ <!--046 精密機器--> <company id="7701" name="Shimadzu Manufacturing" type="046"> + <!--!<company id="7701" name="縞津製作所" type="046">--> <performance capital="8500000" sales="10000000000" /> <capacity brand="8" marketing="4" quality="6" rationality="3" development="8" /> <stock total="2000000" share="500000" /> @@ -293,11 +330,13 @@ <!--047 印刷--> <company id="7911" name="Nihon Printing" type="047"> + <!--!<company id="7911" name="日本凸版" type="047">--> <performance capital="5700000" sales="60000000" /> <capacity brand="6" marketing="5" quality="6" rationality="2" development="1" /> <stock total="82000" share="42000" /> </company> <company id="7914" name="Gohdoh Printing" type="047"> + <!--!<company id="7914" name="合同印刷" type="047">--> <performance capital="2800000" sales="90000000" /> <capacity brand="5" marketing="3" quality="5" rationality="2" development="3" /> <stock total="380000" share="300000" /> @@ -306,11 +345,13 @@ <!--048 その他製造--> <company id="7951" name="Yamaba" type="048"> + <!--!<company id="7951" name="ヤマバ" type="048">--> <performance capital="35000000" sales="3000000000" /> <capacity brand="8" marketing="7" quality="6" rationality="3" development="4" /> <stock total="300000" share="25000" /> </company> - <company id="7964" name="Saga" type="048"> + <company id="7964" name="SAGA" type="048"> + <!--!<company id="7964" name="サガ" type="048">--> <performance capital="200000" sales="2000000000" /> <capacity brand="5" marketing="2" quality="8" rationality="1" development="3" /> <stock total="180000" share="80000" /> @@ -319,11 +360,13 @@ <!--071 商業(卸売)--> <company id="8002" name="Tada Cosmetics" type="071"> + <!--!<company id="8002" name="忠紅" type="071">--> <performance capital="300000000" sales="200000000000" /> <capacity brand="8" marketing="4" quality="3" rationality="6" development="1" /> <stock total="300000" share="100000" /> </company> - <company id="8058" name="Itsubishi Trading" type="071"> + <company id="8058" name="Itsubishi Wholesale" type="071"> + <!--!<company id="8058" name="五菱商事" type="071">--> <performance capital="240000000" sales="1200000000000" /> <capacity brand="8" marketing="6" quality="8" rationality="2" development="3" /> <stock total="520000" share="87000" /> @@ -332,16 +375,19 @@ <!--072 商業(小売)--> <company id="8233" name="Takashima-ya" type="072"> + <!--!<company id="8233" name="鷹島屋" type="072">--> <performance capital="50000000" sales="5000000000" /> <capacity brand="8" marketing="5" quality="8" rationality="3" development="2" /> <stock total="380000" share="54000" /> </company> <company id="8251" name="Park" type="072"> + <!--!<company id="8251" name="パルク" type="072">--> <performance capital="31000000" sales="10000000000" /> <capacity brand="6" marketing="5" quality="7" rationality="4" development="3" /> <stock total="980000" share="34000" /> </company> <company id="9831" name="Yahada Electric" type="072"> + <!--!<company id="9831" name="ヤハダ電機" type="072">--> <performance capital="1000000" sales="500000000" /> <capacity brand="6" marketing="8" quality="1" rationality="6" development="1" /> <stock total="6000" share="3000" /> @@ -350,16 +396,19 @@ <!--080 金融(銀行)--> <company id="8307" name="GFJ Holdings" type="080"> + <!--!<company id="8307" name="GFJホールディングス" type="080">--> <performance capital="20000000" sales="100000000000" /> <capacity brand="7" marketing="7" quality="5" rationality="2" development="2" /> <stock total="30000" share="10000" /> </company> <company id="8308" name="Risoh Holdings" type="080"> + <!--!<company id="8308" name="りそうホールディングス" type="080">--> <performance capital="80000000" sales="90000000000" /> <capacity brand="6" marketing="8" quality="6" rationality="3" development="3" /> <stock total="850000" share="200000" /> </company> <company id="8411" name="Musashi Financial Group" type="080"> + <!--!<company id="8411" name="むさしフィナンシャルグループ" type="080">--> <performance capital="43000000" sales="2000000000000" /> <capacity brand="6" marketing="5" quality="7" rationality="4" development="1" /> <stock total="780000" share="400000" /> @@ -368,11 +417,13 @@ <!--081 金融(証券)--> <company id="8403" name="Sumidomo Trust & Banking" type="081"> + <!--!<company id="8403" name="清友信託銀行" type="081">--> <performance capital="2000000" sales="550000000" /> <capacity brand="6" marketing="3" quality="6" rationality="3" development="4" /> <stock total="380000" share="20000" /> </company> <company id="8604" name="Noura Holdings" type="081"> + <!--!<company id="8604" name="乃浦ホールディングス" type="081">--> <performance capital="1300000" sales="700000000" /> <capacity brand="5" marketing="8" quality="4" rationality="5" development="2" /> <stock total="190000" share="100000" /> @@ -380,12 +431,14 @@ <!--082 金融(保険)--> - <company id="8752" name="Mitui-Sumidomo Marine Insurance" type="082"> + <company id="8752" name="Hikarii-Sumidomo Marine Insurance" type="082"> + <!--!<company id="8752" name="光井清友海上火災保険" type="082">--> <performance capital="5000000" sales="800000000" /> <capacity brand="8" marketing="5" quality="6" rationality="3" development="2" /> <stock total="100000" share="25000" /> </company> <company id="8761" name="Aoi Accident Insurance" type="082"> + <!--!<company id="8761" name="あおい損害保険" type="082">--> <performance capital="8100000" sales="3500000000" /> <capacity brand="7" marketing="8" quality="4" rationality="3" development="2" /> <stock total="860000" share="500000" /> @@ -394,11 +447,13 @@ <!--083 金融(その他)--> <company id="8574" name="Prominence" type="083"> + <!--!<company id="8574" name="プロミネンス" type="083">--> <performance capital="5600000" sales="9500000000" /> <capacity brand="8" marketing="6" quality="3" rationality="8" development="3" /> <stock total="60000" share="7000" /> </company> <company id="8591" name="Oriental" type="083"> + <!--!<company id="8591" name="オリエンタル" type="083">--> <performance capital="3000000" sales="26000000000" /> <capacity brand="5" marketing="6" quality="2" rationality="6" development="5" /> <stock total="50000" share="33000" /> @@ -406,12 +461,14 @@ <!--064 不動産--> - <company id="8801" name="Mitui Real Estate" type="064"> + <company id="8801" name="Hikarii Real Estate" type="064"> + <!--!<company id="8801" name="光井不動産" type="064">--> <performance capital="16000000" sales="12000000000" /> <capacity brand="8" marketing="6" quality="3" rationality="6" development="2" /> <stock total="350000" share="200000" /> </company> <company id="8804" name="Nihon Construction" type="064"> + <!--!<company id="8804" name="日本建物" type="064">--> <performance capital="50000000" sales="15000000000" /> <capacity brand="3" marketing="4" quality="7" rationality="3" development="3" /> <stock total="1800000" share="800000" /> @@ -420,11 +477,13 @@ <!--061 陸運--> <company id="9062" name="All Japan Shipping" type="061"> + <!--!<company id="9062" name="全日本通運" type="061">--> <performance capital="20000000" sales="400000000" /> <capacity brand="5" marketing="5" quality="6" rationality="3" development="3" /> <stock total="200000" share="50000" /> </company> <company id="9064" name="Yamaneko Express" type="061"> + <!--!<company id="9064" name="ヤマネコ運輸" type="061">--> <performance capital="30000000" sales="300000000" /> <capacity brand="9" marketing="9" quality="8" rationality="5" development="4" /> <stock total="85000" share="30000" /> @@ -432,12 +491,14 @@ <!--062 海運--> - <company id="9101" name="Nippon Shipping" type="062"> + <company id="9101" name="Nihon Shipping" type="062"> + <!--!<company id="9101" name="日本汽船" type="062">--> <performance capital="3100000" sales="280000000" /> <capacity brand="8" marketing="6" quality="5" rationality="4" development="3" /> <stock total="500000" share="100000" /> </company> - <company id="9104" name="Mitui Shipping" type="062"> + <company id="9104" name="Hikarii Shipping" type="062"> + <!--!<company id="9104" name="商船光井" type="062">--> <performance capital="7000000" sales="160000000" /> <capacity brand="3" marketing="3" quality="6" rationality="3" development="3" /> <stock total="300000" share="20000" /> @@ -446,11 +507,13 @@ <!--063 空運--> <company id="9202" name="All Japan Airways" type="063"> + <!--!<company id="9202" name="全日航" type="063">--> <performance capital="3000000" sales="50000000" /> <capacity brand="5" marketing="5" quality="4" rationality="3" development="1" /> <stock total="1000000" share="200000" /> </company> <company id="9205" name="JAT" type="063"> + <!--!<company id="9205" name="日本空運" type="063">--> <performance capital="1000000" sales="10000000" /> <capacity brand="9" marketing="9" quality="5" rationality="2" development="1" /> <stock total="400000" share="200000" /> @@ -459,11 +522,13 @@ <!--065 倉庫・運輸関連--> <company id="9301" name="Itsubishi Logistics" type="065"> + <!--!<company id="9301" name="五菱倉庫" type="065">--> <performance capital="500000" sales="300000000" /> <capacity brand="5" marketing="6" quality="8" rationality="3" development="4" /> <stock total="350000" share="180000" /> </company> <company id="9303" name="Sumidomo Logistics" type="065"> + <!--!<company id="9303" name="清友倉庫" type="065">--> <performance capital="1400000" sales="800000000" /> <capacity brand="8" marketing="7" quality="6" rationality="5" development="2" /> <stock total="3500000" share="900000" /> @@ -472,11 +537,13 @@ <!--070 情報・通信--> <company id="9404" name="Nippon TV" type="070"> + <!--!<company id="9404" name="にっぽんテレビ" type="070">--> <performance capital="25000000" sales="300000000000" /> <capacity brand="3" marketing="5" quality="4" rationality="3" development="2" /> <stock total="40000" share="5600" /> </company> <company id="9432" name="NNT" type="070"> + <!--!<company id="9432" name=" NNT" type="070">--> <performance capital="8500000" sales="5000000000" /> <capacity brand="8" marketing="4" quality="5" rationality="6" development="2" /> <stock total="6000" share="3500" /> @@ -485,16 +552,19 @@ <!--050 電気・ガス--> <company id="9501" name="East Japan Power" type="050"> + <!--!<company id="9501" name="東日本電力" type="050">--> <performance capital="33000000" sales="220000000000" /> <capacity brand="6" marketing="5" quality="8" rationality="4" development="2" /> <stock total="280000" share="100000" /> </company> <company id="9502" name="Chuo Power" type="050"> + <!--!<company id="9502" name="中央電力" type="050">--> <performance capital="20000000" sales="50000000000" /> <capacity brand="3" marketing="8" quality="5" rationality="3" development="1" /> <stock total="65000" share="30000" /> </company> <company id="9503" name="Hanshin Power" type="050"> + <!--!<company id="9503" name="阪神電力" type="050">--> <performance capital="10000000" sales="30000000000" /> <capacity brand="7" marketing="3" quality="6" rationality="2" development="3" /> <stock total="48000" share="20000" /> Modified: trunk/FreeTrain/plugins/system/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/system/plugin.xml 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/plugins/system/plugin.xml 2007-04-08 08:56:33 UTC (rev 23) @@ -192,8 +192,8 @@ </contribution> <contribution type="dockingContent" id="{7A5AE360-0974-4e6a-A7BB-70A3906C406E}"> - <name>Subsidiary market</name> - <menu name="S&ubsidiary market" location="view" /> + <name>Subsidiary business</name> + <menu name="S&ubsidiary business" location="view" /> <!--!<name>子会社売買</name> <menu name="子会社売買(&U)" location="view" />--> <class name="freetrain.world.subsidiaries.MarketWindow"/> @@ -332,43 +332,50 @@ </contribution> <contribution type="colorMapTrainPicture" id="{243D9F53-67FB-432E-B985-3B9B696D8CE0}-1"> - <name>汎用三色細帯</name> + <name>General-purpose three-color thin stripe</name> + <!--!<name>汎用三色細帯</name>--> <author>477さん</author> <picture src="UncoloredTrain01.bmp" /> </contribution> <contribution type="colorMapTrainPicture" id="{243D9F53-67FB-432E-B985-3B9B696D8CE0}-2"> - <name>汎用四色太帯</name> + <name>General-purpose four-color thick stripe</name> + <!--!<name>汎用四色太帯</name>--> <author>477さん</author> <picture src="UncoloredTrain02.bmp" /> </contribution> <contribution type="colorMapTrainPicture" id="{243D9F53-67FB-432E-B985-3B9B696D8CE0}-3"> - <name>汎用四色細帯</name> + <name>Genral-purpose four-color thin stripe</name> + <!--!<name>汎用四色細帯</name>--> <author>477さん</author> <picture src="UncoloredTrain03.bmp" /> </contribution> <contribution type="colorMapTrainPicture" id="{243D9F53-67FB-432E-B985-3B9B696D8CE0}-4"> - <name>103系風</name> + <name>103 series style</name> + <!--!<name>103系風</name>--> <author>477さん</author> <picture src="UncoloredTrain04.bmp" /> </contribution> <contribution type="colorMapTrainPicture" id="{243D9F53-67FB-432E-B985-3B9B696D8CE0}-5"> - <name>205系風</name> + <name>205 series style</name> + <!--!<name>205系風</name>--> <author>477さん</author> <picture src="UncoloredTrain05.bmp" /> </contribution> <contribution type="colorMapTrainPicture" id="{243D9F53-67FB-432E-B985-3B9B696D8CE0}-6"> - <name>211系風</name> + <name>211 series style</name> + <!--!<name>211系風</name>--> <author>477さん</author> <picture src="UncoloredTrain06.bmp" /> </contribution> <contribution type="colorMapTrainPicture" id="{243D9F53-67FB-432E-B985-3B9B696D8CE0}-7"> - <name>E231系風</name> + <name>E231 series style</name> + <!--!<name>E231系風</name>--> <author>477さん</author> <picture src="UncoloredTrain07.bmp" /> </contribution> Modified: trunk/FreeTrain/tools/PicturePreviewer/AssemblyInfo.cs =================================================================== --- trunk/FreeTrain/tools/PicturePreviewer/AssemblyInfo.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/PicturePreviewer/AssemblyInfo.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -2,9 +2,9 @@ using System.Runtime.CompilerServices; // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋւ\xB7\x82\xE9\x88\xEA\x94ʏ\xEE\x95\xF1\x82͈ȉ\xBA\x82\xCC -// \x91\xAE\x90\xAB\x83Z\x83b\x83g\x82\xF0\x92ʂ\xB5\x82Đ\xA7\x8C䂳\x82\xEA\x82܂\xB7\x81B\x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋ֘A\x95t\x82\xAF\x82\xE7\x82\xEA\x82Ă\xA2\x82\xE9 -// \x8F\xEE\x95\xF1\x82\xF0\x95ύX\x82\xB7\x82\xE9\x82ɂ́A\x82\xB1\x82\xEA\x82\xE7\x82̑\xAE\x90\xAB\x92l\x82\xF0\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに関する一般情報は以下の +// 属性セットを通して制御されます。アセンブリに関連付けられている +// 情報を変更するには、これらの属性値を変更してください。 // [assembly: AssemblyTitle("")] [assembly: AssemblyDescription("")] @@ -16,42 +16,42 @@ [assembly: AssemblyCulture("")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82̃o\x81[\x83W\x83\x87\x83\x93\x8F\xEE\x95\xF1\x82́A\x88ȉ\xBA\x82\xCC 4 \x82̑\xAE\x90\xAB\x82ō\\x90\xAC\x82\xB3\x82\xEA\x82܂\xB7 : +// アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : // -// \x83\x81\x83W\x83\x83\x81[ \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83}\x83C\x83i \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83r\x83\x8B\x83h\x94ԍ\x86 -// \x83\x8A\x83r\x83W\x83\x87\x83\x93 +// メジャー バージョン +// マイナ バージョン +// ビルド番号 +// リビジョン // -// \x89\xBA\x82ɂ\xA0\x82\xE9\x82悤\x82ɁA'*' \x82\xF0\x8Eg\x82\xC1\x82āA\x82\xB7\x82ׂĂ̒l\x82\xF0\x8Ew\x92肷\x82邩\x81A -// \x83r\x83\x8B\x83h\x82\xA8\x82\xE6\x82у\x8A\x83r\x83W\x83\x87\x83\x93\x94ԍ\x86\x82\xF0\x8A\xF9\x92\xE8\x92l\x82ɂ\xB7\x82邱\x82Ƃ\xAA\x82ł\xAB\x82܂\xB7 : +// 下にあるように、'*' を使って、すべての値を指定するか、 +// ビルドおよびリビジョン番号を既定値にすることができます : [assembly: AssemblyVersion("1.0.*")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82ɏ\x90\x96\xBC\x82\xB7\x82\xE9\x82ɂ́A\x8Eg\x97p\x82\xB7\x82\xE9\x83L\x81[\x82\xF0\x8Ew\x92肵\x82Ȃ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x8F\x90\x96\xBC\x82Ɋւ\xB7\x82\xE9\x8Fڍׂɂ\xA2\x82ẮAMicrosoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに署名するには、使用するキーを指定しなければなりません。 +// アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 // -// \x89\xBA\x8BL\x82̑\xAE\x90\xAB\x82\xF0\x8Eg\x82\xC1\x82āA\x8F\x90\x96\xBC\x82Ɏg\x82\xA4\x83L\x81[\x82𐧌䂵\x82܂\xB7\x81B +// 下記の属性を使って、署名に使うキーを制御します。 // -// \x83\x81\x83\x82 : -// (*) \x83L\x81[\x82\xAA\x8Ew\x92肳\x82\xEA\x82Ȃ\xA2\x82ƁA\x83A\x83Z\x83\x93\x83u\x83\x8A\x82͏\x90\x96\xBC\x82\xB3\x82\xEA\x82܂\xB9\x82\xF1\x81B -// (*) KeyName \x82́A\x83R\x83\x93\x83s\x83\x85\x81[\x83^\x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9 -// \x88Í\x86\x83T\x81[\x83r\x83X \x83v\x83\x8D\x83o\x83C\x83_ (CSP) \x82̃L\x81[\x82\xF0\x95\\x82\xB5\x82܂\xB7\x81BKeyFile \x82́A -// \x83L\x81[\x82\xF0\x8A܂ރt\x83@\x83C\x83\x8B\x82ł\xB7\x81B -// (*) KeyFile \x82\xA8\x82\xE6\x82\xD1 KeyName \x82̒l\x82\xAA\x8B\xA4\x82Ɏw\x92肳\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82́A -// \x88ȉ\xBA\x82̏\x88\x97\x9D\x82\xAA\x8Ds\x82\xED\x82\xEA\x82܂\xB7 : -// (1) KeyName \x82\xAA CSP \x82Ɍ\xA9\x82\xA9\x82\xC1\x82\xBD\x8Fꍇ\x81A\x82\xBB\x82̃L\x81[\x82\xAA\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (2) KeyName \x82\xAA\x91\xB6\x8D݂\xB9\x82\xB8\x81AKeyFile \x82\xAA\x91\xB6\x8D݂\xB7\x82\xE9\x8Fꍇ\x81A -// KeyFile \x82ɂ\xA0\x82\xE9\x83L\x81[\x82\xAA CSP \x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x81A\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (*) KeyFile \x82\xF0\x8D쐬\x82\xB7\x82\xE9\x82ɂ́Asn.exe (\x8C\xB5\x96\xA7\x82Ȗ\xBC\x91O) \x83\x86\x81[\x83e\x83B\x83\x8A\x83e\x83B\x82\xF0\x8Eg\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B -// KeyFile \x82\xF0\x8Ew\x92肷\x82\xE9\x82Ƃ\xAB\x81AKeyFile \x82̏ꏊ\x82́A -// \x83v\x83\x8D\x83W\x83F\x83N\x83g\x8Fo\x97\xCD \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ւ̑\x8A\x91p\x83X\x82łȂ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83p\x83X\x82́A%Project Directory%\obj\<configuration> \x82ł\xB7\x81B\x82\xBD\x82Ƃ\xA6\x82AKeyFile \x82\xAA\x83v\x83\x8D\x83W\x83F\x83N\x83g \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ɂ\xA0\x82\xE9\x8Fꍇ\x81A -// AssemblyKeyFile \x91\xAE\x90\xAB\x82\xF0 -// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] \x82Ƃ\xB5\x82Ďw\x92肵\x82܂\xB7\x81B -// (*) \x92x\x89\x84\x8F\x90\x96\xBC\x82͍\x82\x93x\x82ȃI\x83v\x83V\x83\x87\x83\x93\x82ł\xB7\x81B -// \x8Fڍׂɂ\xA2\x82Ă\xCD Microsoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// メモ : +// (*) キーが指定されないと、アセンブリは署名されません。 +// (*) KeyName は、コンピュータにインストールされている +// 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 +// キーを含むファイルです。 +// (*) KeyFile および KeyName の値が共に指定されている場合は、 +// 以下の処理が行われます : +// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 +// (2) KeyName が存在せず、KeyFile が存在する場合、 +// KeyFile にあるキーが CSP にインストールされ、使われます。 +// (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 +// KeyFile を指定するとき、KeyFile の場所は、 +// プロジェクト出力 ディレクトリへの相対パスでなければなりません。 +// パスは、%Project Directory%\obj\<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 +// AssemblyKeyFile 属性を +// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] として指定します。 +// (*) 遅延署名は高度なオプションです。 +// 詳細については Microsoft .NET Framework ドキュメントを参照してください。 // [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] Modified: trunk/FreeTrain/tools/PicturePreviewer/Previewer.cs =================================================================== --- trunk/FreeTrain/tools/PicturePreviewer/Previewer.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/PicturePreviewer/Previewer.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -180,19 +180,22 @@ this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem2, this.menuItem3}); - this.menuItem1.Text = "\x83t\x83@\x83C\x83\x8B(&F)"; + this.menuItem1.Text = "&File"; + //! this.menuItem1.Text = "ファイル(&F)"; // // menuItem2 // this.menuItem2.Index = 0; - this.menuItem2.Text = "\x8AJ\x82\xAD(&O)..."; + this.menuItem2.Text = "&Open..."; + //! this.menuItem2.Text = "開く(&O)..."; this.menuItem2.Click += new System.EventHandler(this.open); // // menuItem3 // this.menuItem3.Index = 1; this.menuItem3.Shortcut = System.Windows.Forms.Shortcut.F4; - this.menuItem3.Text = "\x8Dēǂݍ\x9E\x82\xDD(&R)"; + this.menuItem3.Text = "&Reload"; + //! this.menuItem3.Text = "再読み込み(&R)"; this.menuItem3.Click += new System.EventHandler(this.reload); // // menuItem4 @@ -206,19 +209,22 @@ this.miSummer, this.miFall, this.miWinter}); - this.menuItem4.Text = "\x8E\x9E\x8A\xD4(&T)"; + this.menuItem4.Text = "&Timer"; + //! this.menuItem4.Text = "時間(&T)"; // // miDay // this.miDay.Index = 0; this.miDay.RadioCheck = true; - this.miDay.Text = "\x92\x8B(&D)"; + this.miDay.Text = "&Day"; + //! this.miDay.Text = "昼(&D)"; // // miNight // this.miNight.Index = 1; this.miNight.RadioCheck = true; - this.miNight.Text = "\x96\xE9(&N)"; + this.miNight.Text = "&Night"; + //! this.miNight.Text = "夜(&N)"; // // menuItem7 // @@ -230,25 +236,29 @@ // this.miSpring.Index = 3; this.miSpring.RadioCheck = true; - this.miSpring.Text = "\x8Ft(&S)"; + this.miSpring.Text = "&Spring"; + //! this.miSpring.Text = "春(&S)"; // // miSummer // this.miSummer.Index = 4; this.miSummer.RadioCheck = true; - this.miSummer.Text = "\x89\xC4(&U)"; + this.miSummer.Text = "S&ummer"; + //! this.miSummer.Text = "夏(&U)"; // // miFall // this.miFall.Index = 5; this.miFall.RadioCheck = true; - this.miFall.Text = "\x8FH(&F)"; + this.miFall.Text = "&Fall"; + //! this.miFall.Text = "秋(&F)"; // // miWinter // this.miWinter.Index = 6; this.miWinter.RadioCheck = true; - this.miWinter.Text = "\x93~(&W)"; + this.miWinter.Text = "&Winter"; + //! this.miWinter.Text = "冬(&W)"; // // menuItem12 // @@ -260,7 +270,8 @@ this.miZoom8, this.miZoom16, this.miZoom32}); - this.menuItem12.Text = "\x8Ag\x91\xE5(&Z)"; + this.menuItem12.Text = "&Zoom"; + //! this.menuItem12.Text = "拡大(&Z)"; // // miZoom1 // @@ -315,7 +326,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(472, 16); this.label1.TabIndex = 1; - this.label1.Text = "\x83X\x83v\x83\x89\x83C\x83g\x81F"; + this.label1.Text = "Sprite:"; + //! this.label1.Text = "スプライト:"; // // splitter1 // @@ -345,7 +357,8 @@ this.xmlSpriteType.Name = "xmlSpriteType"; this.xmlSpriteType.Size = new System.Drawing.Size(472, 120); this.xmlSpriteType.TabIndex = 2; - this.xmlSpriteType.Text = "<spriteType>\x83^\x83O\x82\xF0\x93\xFC\x97͂\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2"; + this.xmlSpriteType.Text = "Input the <spriteType> tag"; + //! this.xmlSpriteType.Text = "<spriteType>タグを入力してください"; this.xmlSpriteType.TextChanged += new System.EventHandler(this.onSpriteXmlChanged); // // Previewer @@ -360,7 +373,8 @@ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Menu = this.mainMenu1; this.Name = "Previewer"; - this.Text = "FreeTrain \x89摜\x83v\x83\x8C\x83r\x83\x85\x81[\x83A"; + this.Text = "FreeTrain picture previewer"; + //! this.Text = "FreeTrain 画像プレビューア"; this.spritePanel.ResumeLayout(false); this.ResumeLayout(false); Modified: trunk/FreeTrain/tools/TrainListBuilder/src/MainForm.cs =================================================================== --- trunk/FreeTrain/tools/TrainListBuilder/src/MainForm.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/TrainListBuilder/src/MainForm.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -73,7 +73,8 @@ this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(96, 24); this.buttonOK.TabIndex = 0; - this.buttonOK.Text = "\x8D쐬"; + this.buttonOK.Text = "Create"; + //! this.buttonOK.Text = "作成"; this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); // // progressBar @@ -89,7 +90,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 16); this.label1.TabIndex = 2; - this.label1.Text = "\x8Fo\x97͐\xE6\x81F"; + this.label1.Text = "Output directory:"; + //! this.label1.Text = "出力先:"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // output @@ -125,7 +127,8 @@ this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "MainForm"; - this.Text = "\x97\xF1\x8EԈꗗHTML\x8D쐬\x83c\x81[\x83\x8B"; + this.Text = "A tool to create HTML lists of trains"; + //! this.Text = "列車一覧HTML作成ツール"; this.ResumeLayout(false); } @@ -141,7 +144,8 @@ string dir = output.Text; if( !Directory.Exists(dir) ) { - MessageBox.Show(this,"\x8Ew\x92肳\x82ꂽ\x8Fo\x97͐\xE6\x82͑\xB6\x8D݂\xB5\x82܂\xB9\x82\xF1"); + MessageBox.Show(this,"The chosen output directory does not exist"); + //! MessageBox.Show(this,"指定された出力先は存在しません"); return; } @@ -218,9 +222,12 @@ continue; } MessageBox.Show( - "\x8Eg\x97p\x95\xFB\x96@\x81F\n"+ - " -output \x8Fo\x97̓f\x83B\x83\x8C\x83N\x83g\x83\x8A\n"+ - " -plugin \x83G\x83N\x83X\x83g\x83\x89\x83v\x83\x89\x83O\x83C\x83\x93\x83f\x83B\x83\x8C\x83N\x83g\x83\x8A" ); + "Usage:\n"+ + " -output output directory\n"+ + " -plugin extra plugin directory" ); + //! "使用方法:\n"+ + //! " -output 出力ディレクトリ\n"+ + //! " -plugin エクストラプラグインディレクトリ" ); return; } Modified: trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl =================================================================== --- trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/TrainListBuilder/src/html.xsl 2007-04-08 08:56:33 UTC (rev 23) @@ -1,10 +1,10 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://icl.com/saxon" extension-element-prefixes="saxon"> - <xsl:output method="html" encoding="Shift_JIS" /> + <xsl:output method="html" encoding="UTF-8" /> <xsl:template match="/"> <saxon:output href="toc.html" method="html"> @@ -25,17 +25,19 @@ <small> <xsl:text> (</xsl:text> <xsl:value-of select="count($trains)"/> - <xsl:text>\x83R)</xsl:text> + <xsl:text>コ)</xsl:text> </small> </li> <saxon:output href="{generate-id(.)}.html" method="html"> <html> <head> - <title><xsl:value-of select="." />\x8Eԗ\xBC\x83\x8A\x83X\x83g</title> + <title><xsl:value-of select="." />Train list</title> + <!--!<title><xsl:value-of select="." />車両リスト</title>--> <xsl:call-template name="css"/> </head> <body> - <h1><xsl:value-of select="." />\x8Eԗ\xBC\x83\x8A\x83X\x83g</h1> + <h1><xsl:value-of select="." />Train list</h1> + <!--!<h1><xsl:value-of select="." />車両リスト</h1>--> <xsl:apply-templates select="$trains"> <xsl:sort select="name"/> </xsl:apply-templates> @@ -44,14 +46,16 @@ </saxon:output> </xsl:for-each> </ul> - <p>\x91S<xsl:value-of select="count(//train)"/>\x8C\xC2</p> + <p>Total number: <xsl:value-of select="count(//train)"/></p> + <!--!<p>全<xsl:value-of select="count(//train)"/>個</p>--> </body> </html> </saxon:output> <saxon:output href="index.html" method="html"> <html> <head> - <title>FreeTrain\x8Eԗ\xBC\x83\x8A\x83X\x83g</title> + <title>FreeTrain train list</title> + <!--!<title>FreeTrain車両リスト</title>--> </head> <frameset cols="250,*"> <frame src="toc.html" /> @@ -65,9 +69,11 @@ <xsl:call-template name="css"/> </head> <body> - <h1>FreeTrain\x8Eԗ\xBC\x83\x8A\x83X\x83g</h1> + <h1>FreeTrain train list</h1> + <!--!<h1>FreeTrain車両リスト</h1>--> <p> - \x8E\x84\x82̒m\x82\xE9\x94͈͂Ō\xF6\x8AJ\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9FreeTrain\x97p\x82̎ԗ\xBC\x82\xF0\x8FW\x82߂Ă݂܂\xB5\x82\xBD\x81B\x82\xB1\x82\xCCHTML\x82\xF0\x8D\xEC\x82\xE9\x83v\x83\x8D\x83O\x83\x89\x83\x80\x8E\xA9\x91̂ɋ\xBB\x96\xA1\x82̂\xA0\x82\xE9\x90l\x82͎\x84\x82܂łǂ\xA4\x82\xBC\x81B + A collection of all published FreeTrain trains. Feel free to drop me a line if you are interested in the program that created this HTML file. + <!--!私の知る範囲で公開されているFreeTrain用の車両を集めてみました。このHTMLを作るプログラム自体に興味のある人は私までどうぞ。--> </p> </body> </html> @@ -81,19 +87,22 @@ <td rowspan="3"> <img src="{@id}.png"/> </td> - <td><nobr>\x8D\xEC\x8EҁF</nobr></td> + <td><nobr>Author:</nobr></td> + <!--!<td><nobr>作者:</nobr></td>--> <td> <xsl:value-of select="author"/> </td> </tr> <tr> - <td><nobr>\x91\xAC\x93x\x81F</nobr></td> + <td><nobr>Speed:</nobr></td> + <!--!<td><nobr>速度:</nobr></td>--> <td> <xsl:value-of select="speed"/> </td> </tr> <tr> - <td><nobr>\x90\xE0\x96\xBE\x81F</nobr></td> + <td><nobr>Description:</nobr></td> + <!--!<td><nobr>説明:</nobr></td>--> <td> <xsl:value-of select="description"/> </td> Modified: trunk/FreeTrain/tools/XmlCombiner/AssemblyInfo.cs =================================================================== --- trunk/FreeTrain/tools/XmlCombiner/AssemblyInfo.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/XmlCombiner/AssemblyInfo.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -2,9 +2,9 @@ using System.Runtime.CompilerServices; // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋւ\xB7\x82\xE9\x88\xEA\x94ʏ\xEE\x95\xF1\x82͈ȉ\xBA\x82\xCC -// \x91\xAE\x90\xAB\x83Z\x83b\x83g\x82\xF0\x92ʂ\xB5\x82Đ\xA7\x8C䂳\x82\xEA\x82܂\xB7\x81B\x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋ֘A\x95t\x82\xAF\x82\xE7\x82\xEA\x82Ă\xA2\x82\xE9 -// \x8F\xEE\x95\xF1\x82\xF0\x95ύX\x82\xB7\x82\xE9\x82ɂ́A\x82\xB1\x82\xEA\x82\xE7\x82̑\xAE\x90\xAB\x92l\x82\xF0\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに関する一般情報は以下の +// 属性セットを通して制御されます。アセンブリに関連付けられている +// 情報を変更するには、これらの属性値を変更してください。 // [assembly: AssemblyTitle("")] [assembly: AssemblyDescription("")] @@ -16,42 +16,42 @@ [assembly: AssemblyCulture("")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82̃o\x81[\x83W\x83\x87\x83\x93\x8F\xEE\x95\xF1\x82́A\x88ȉ\xBA\x82\xCC 4 \x82̑\xAE\x90\xAB\x82ō\\x90\xAC\x82\xB3\x82\xEA\x82܂\xB7 : +// アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : // -// \x83\x81\x83W\x83\x83\x81[ \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83}\x83C\x83i \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83r\x83\x8B\x83h\x94ԍ\x86 -// \x83\x8A\x83r\x83W\x83\x87\x83\x93 +// メジャー バージョン +// マイナ バージョン +// ビルド番号 +// リビジョン // -// \x89\xBA\x82ɂ\xA0\x82\xE9\x82悤\x82ɁA'*' \x82\xF0\x8Eg\x82\xC1\x82āA\x82\xB7\x82ׂĂ̒l\x82\xF0\x8Ew\x92肷\x82邩\x81A -// \x83r\x83\x8B\x83h\x82\xA8\x82\xE6\x82у\x8A\x83r\x83W\x83\x87\x83\x93\x94ԍ\x86\x82\xF0\x8A\xF9\x92\xE8\x92l\x82ɂ\xB7\x82邱\x82Ƃ\xAA\x82ł\xAB\x82܂\xB7 : +// 下にあるように、'*' を使って、すべての値を指定するか、 +// ビルドおよびリビジョン番号を既定値にすることができます : [assembly: AssemblyVersion("1.0.*")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82ɏ\x90\x96\xBC\x82\xB7\x82\xE9\x82ɂ́A\x8Eg\x97p\x82\xB7\x82\xE9\x83L\x81[\x82\xF0\x8Ew\x92肵\x82Ȃ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x8F\x90\x96\xBC\x82Ɋւ\xB7\x82\xE9\x8Fڍׂɂ\xA2\x82ẮAMicrosoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに署名するには、使用するキーを指定しなければなりません。 +// アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 // -// \x89\xBA\x8BL\x82̑\xAE\x90\xAB\x82\xF0\x8Eg\x82\xC1\x82āA\x8F\x90\x96\xBC\x82Ɏg\x82\xA4\x83L\x81[\x82𐧌䂵\x82܂\xB7\x81B +// 下記の属性を使って、署名に使うキーを制御します。 // -// \x83\x81\x83\x82 : -// (*) \x83L\x81[\x82\xAA\x8Ew\x92肳\x82\xEA\x82Ȃ\xA2\x82ƁA\x83A\x83Z\x83\x93\x83u\x83\x8A\x82͏\x90\x96\xBC\x82\xB3\x82\xEA\x82܂\xB9\x82\xF1\x81B -// (*) KeyName \x82́A\x83R\x83\x93\x83s\x83\x85\x81[\x83^\x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9 -// \x88Í\x86\x83T\x81[\x83r\x83X \x83v\x83\x8D\x83o\x83C\x83_ (CSP) \x82̃L\x81[\x82\xF0\x95\\x82\xB5\x82܂\xB7\x81BKeyFile \x82́A -// \x83L\x81[\x82\xF0\x8A܂ރt\x83@\x83C\x83\x8B\x82ł\xB7\x81B -// (*) KeyFile \x82\xA8\x82\xE6\x82\xD1 KeyName \x82̒l\x82\xAA\x8B\xA4\x82Ɏw\x92肳\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82́A -// \x88ȉ\xBA\x82̏\x88\x97\x9D\x82\xAA\x8Ds\x82\xED\x82\xEA\x82܂\xB7 : -// (1) KeyName \x82\xAA CSP \x82Ɍ\xA9\x82\xA9\x82\xC1\x82\xBD\x8Fꍇ\x81A\x82\xBB\x82̃L\x81[\x82\xAA\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (2) KeyName \x82\xAA\x91\xB6\x8D݂\xB9\x82\xB8\x81AKeyFile \x82\xAA\x91\xB6\x8D݂\xB7\x82\xE9\x8Fꍇ\x81A -// KeyFile \x82ɂ\xA0\x82\xE9\x83L\x81[\x82\xAA CSP \x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x81A\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (*) KeyFile \x82\xF0\x8D쐬\x82\xB7\x82\xE9\x82ɂ́Asn.exe (\x8C\xB5\x96\xA7\x82Ȗ\xBC\x91O) \x83\x86\x81[\x83e\x83B\x83\x8A\x83e\x83B\x82\xF0\x8Eg\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B -// KeyFile \x82\xF0\x8Ew\x92肷\x82\xE9\x82Ƃ\xAB\x81AKeyFile \x82̏ꏊ\x82́A -// \x83v\x83\x8D\x83W\x83F\x83N\x83g\x8Fo\x97\xCD \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ւ̑\x8A\x91p\x83X\x82łȂ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83p\x83X\x82́A%Project Directory%\obj\<configuration> \x82ł\xB7\x81B\x82\xBD\x82Ƃ\xA6\x82AKeyFile \x82\xAA\x83v\x83\x8D\x83W\x83F\x83N\x83g \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ɂ\xA0\x82\xE9\x8Fꍇ\x81A -// AssemblyKeyFile \x91\xAE\x90\xAB\x82\xF0 -// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] \x82Ƃ\xB5\x82Ďw\x92肵\x82܂\xB7\x81B -// (*) \x92x\x89\x84\x8F\x90\x96\xBC\x82͍\x82\x93x\x82ȃI\x83v\x83V\x83\x87\x83\x93\x82ł\xB7\x81B -// \x8Fڍׂɂ\xA2\x82Ă\xCD Microsoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// メモ : +// (*) キーが指定されないと、アセンブリは署名されません。 +// (*) KeyName は、コンピュータにインストールされている +// 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 +// キーを含むファイルです。 +// (*) KeyFile および KeyName の値が共に指定されている場合は、 +// 以下の処理が行われます : +// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 +// (2) KeyName が存在せず、KeyFile が存在する場合、 +// KeyFile にあるキーが CSP にインストールされ、使われます。 +// (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 +// KeyFile を指定するとき、KeyFile の場所は、 +// プロジェクト出力 ディレクトリへの相対パスでなければなりません。 +// パスは、%Project Directory%\obj\<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 +// AssemblyKeyFile 属性を +// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] として指定します。 +// (*) 遅延署名は高度なオプションです。 +// 詳細については Microsoft .NET Framework ドキュメントを参照してください。 // [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] Modified: trunk/FreeTrain/tools/XmlCombiner/XmlCombiner.cs =================================================================== --- trunk/FreeTrain/tools/XmlCombiner/XmlCombiner.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/XmlCombiner/XmlCombiner.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -41,7 +41,7 @@ root.AppendChild( dom.ImportNode( plugin.DocumentElement, true ) ); } - Console.WriteLine("<?xml version='1.0' encoding='Shift_JIS'?>"); + Console.WriteLine("<?xml version='1.0' encoding='UTF-8'?>"); XmlTextWriter writer = new XmlTextWriter(Console.Out); writer.Formatting = Formatting.Indented; dom.WriteContentTo( writer ); Modified: trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -30,7 +30,7 @@ protected override void onSelected( Cube cube ) { if( contrib.canBeBuilt(cube.corner) ) { MainWindow.showError("Can not place"); - //! MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + //! MainWindow.showError("設置できません"); } else { CompletionHandler handler = new CompletionHandler(contrib,cube.corner,true); new ConstructionSite( cube.corner, new EventHandler(handler.handle), contrib.size ); @@ -81,7 +81,7 @@ PThreeDimStructure s = World.world.getEntityAt(cube.corner) as PThreeDimStructure; if( s==null || s.type!=contrib ) { MainWindow.showError("Wrong type"); - //! MainWindow.showError("\x8E\xED\x97ނ\xAA\x88Ⴂ\x82܂\xB7"); + //! MainWindow.showError("種類が違います"); return; } s.remove(); Modified: trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -171,7 +171,8 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(16, 20); this.label3.TabIndex = 5; - this.label3.Text = "×"; + this.label3.Text = "x"; + //! this.label3.Text = "×"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // count @@ -365,7 +366,7 @@ this.name.Name = "name"; this.name.Size = new System.Drawing.Size(184, 16); this.name.TabIndex = 25; - this.name.Text = "123 system ABCDEF"; + this.name.Text = "123 series ABCDEF"; //! this.name.Text = "123系 ABCDEF"; this.name.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // Modified: trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -137,7 +137,7 @@ this.structType, this.preview}); this.Name = "StructPlacementController"; - this.Text = "Building construction (temporary)"; + this.Text = "Building construction"; //! this.Text = "建物の工事(仮)"; this.ResumeLayout(false); Modified: trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -112,7 +112,7 @@ this.heightBox, this.label1}); this.Name = "VarHeightBuildingController"; - this.Text = "Building construction (temporary)"; + this.Text = "Building construction"; //! this.Text = "建物の工事(仮)"; ((System.ComponentModel.ISupportInitialize)(this.heightBox)).EndInit(); this.ResumeLayout(false); Modified: trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs =================================================================== --- trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs 2007-04-08 04:30:09 UTC (rev 22) +++ trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs 2007-04-08 08:56:33 UTC (rev 23) @@ -103,7 +103,8 @@ this.btnStep.Name = "btnStep"; this.btnStep.Size = new System.Drawing.Size(40, 23); this.btnStep.TabIndex = 1; - this.btnStep.Text = ">|"; + this.btnStep.Text = ">|"; + //! this.btnStep.Text = ">|"; this.toolTip1.SetToolTip(this.btnStep, "NEXT STEP"); this.btnStep.Click += new System.EventHandler(this.btnStep_Click); // @@ -126,7 +127,7 @@ this.rb_HStation.Name = "rb_HStation"; this.rb_HStation.Size = new System.Drawing.Size(40, 24); this.rb_HStation.TabIndex = 5; - this.rb_HStation.Text = "Station −"; + this.rb_HStation.Text = "Station -"; //! this.rb_HStation.Text = "駅−"; this.rb_HStation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.toolTip1.SetToolTip(this.rb_HStation, "Place station (horizontally)"); @@ -225,7 +226,8 @@ this.btnPlay.Name = "btnPlay"; this.btnPlay.Size = new System.Drawing.Size(40, 24); this.btnPlay.TabIndex = 5; - this.btnPlay.Text = ">"; + this.btnPlay.Text = ">"; + //! this.btnPlay.Text = ">"; this.btnPlay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.toolTip1.SetToolTip(this.btnPlay, "PLAY"); this.btnPlay.CheckedChanged += new System.EventHandler(this.btnPlay_CheckedChanged); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ... [truncated message content] |
From: <him...@us...> - 2007-04-08 04:30:09
|
Revision: 22 http://freetrain.svn.sourceforge.net/freetrain/?rev=22&view=rev Author: himasaram Date: 2007-04-07 21:30:09 -0700 (Sat, 07 Apr 2007) Log Message: ----------- Translated most of tools/ plus heaps of translation fixes etc Modified Paths: -------------- trunk/FreeTrain/core/framework/MainWindow.cs trunk/FreeTrain/doc/readme.txt trunk/FreeTrain/experiments/RoadSimulator/Form1.cs trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.rc trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlendPS.vcproj trunk/FreeTrain/lib/DirectDraw.AlphaBlend/ReadMe.txt trunk/FreeTrain/lib/DirectDraw.AlphaBlend/Stdafx.h trunk/FreeTrain/lib/DirectShow.TypeLib/DirectShow.idl trunk/FreeTrain/lib/DirectShow.VideoRecorder/PushSource.rc trunk/FreeTrain/tools/Driver/AssemblyInfo.cs trunk/FreeTrain/tools/Driver/Driver.cs trunk/FreeTrain/tools/GUIDGen/AssemblyInfo.cs trunk/FreeTrain/tools/GUIDGen/GUIDGen.cs trunk/FreeTrain/tools/GUIDGen/readme.txt trunk/FreeTrain/tools/MapConstructionDriver/AssemblyInfo.cs trunk/FreeTrain/tools/MapConstructionDriver/Driver.cs trunk/FreeTrain/tools/XmlPP.readme.txt trunk/FreeTrain/tools/doc/plugin.rnc trunk/FreeTrain/tools/doc/readme.txt trunk/FreeTrain/tools/experiments/Heat/AssemblyInfo.cs trunk/FreeTrain/tools/experiments/Heat/Heat.cs trunk/FreeTrain/tools/experiments/RoadSimulator/AssemblyInfo.cs trunk/FreeTrain/tools/experiments/RoadSimulator/Configure.cs trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs trunk/FreeTrain/tools/experiments/RoadSimulator/MapViewer.cs trunk/FreeTrain/tools/experiments/RoadSimulator/RoadBud.cs trunk/FreeTrain/tools/experiments/RoadSimulator/RoadExtender.cs trunk/FreeTrain/tools/experiments/RoadSimulator/Voxel.cs trunk/FreeTrain/tools/experiments/RoadSimulator/World.cs trunk/FreeTrain/tools/lib/Controls/src/AssemblyInfo.cs trunk/FreeTrain/tools/lib/Controls/src/ColorPicker.cs trunk/FreeTrain/tools/lib/Controls/src/CostBox.cs trunk/FreeTrain/tools/lib/Controls/src/IndexSelector.cs trunk/FreeTrain/tools/lib/Controls/src/SubListSelector.cs trunk/FreeTrain/tools/lib/DirectAudio.net/src/AudioPath.cs trunk/FreeTrain/tools/lib/DirectAudio.net/src/Performance.cs trunk/FreeTrain/tools/lib/DirectAudio.net/src/SegmentState.cs trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/AlphaBlender.cpp trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/AlphaBlender.h trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.cpp trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.def trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.rc trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlendPS.vcproj trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/DirectDrawAlphaBlend.idl trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/ReadMe.txt trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/Stdafx.cpp trunk/FreeTrain/tools/lib/DirectDraw.AlphaBlend/Stdafx.h trunk/FreeTrain/tools/lib/DirectShow.TypeLib/DirectShow.idl trunk/FreeTrain/tools/lib/DirectShow.VideoRecorder/DirectShow.VideoRecorder.vcproj trunk/FreeTrain/tools/lib/DirectShow.VideoRecorder/PushSource.rc Modified: trunk/FreeTrain/core/framework/MainWindow.cs =================================================================== --- trunk/FreeTrain/core/framework/MainWindow.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/core/framework/MainWindow.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -647,7 +647,7 @@ // menuItem_varHeightBldg // this.menuItem_varHeightBldg.Index = 2; - this.menuItem_varHeightBldg.Text = "Rental &building..."; + this.menuItem_varHeightBldg.Text = "Rental &buildings..."; //! this.menuItem_varHeightBldg.Text = "貸しビル(&B)..."; // // menuItem_land Modified: trunk/FreeTrain/doc/readme.txt =================================================================== --- trunk/FreeTrain/doc/readme.txt 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/doc/readme.txt 2007-04-08 04:30:09 UTC (rev 22) @@ -6,24 +6,23 @@ by Kohsuke Kawaguchi (kk...@ko...) -FreeTrain is an 'A4' style game (A4 is the fourth game in the A-Train -series by Artdink.) When you run FreeTrain.exe, a game (?) will start. -For details about the runtime environment, refer to +FreeTrain is a game in "A-Train 4" style. When you run FreeTrain.exe, a +game (?) will start. For details about the runtime environment, refer to http://www.kohsuke.org/freetrain/ -$ Acknowledgments +* Acknowledgments This game was created by the members of the "A-Train" community at 2ch. -Starting with 477-san, Hima-san, 915-san, Eshiminarai-san, -Ryokonotomo-san, Shosei-san, Koensha A-san, Miha-san, ima-san, Min-san, -and Ayase-san, I extend my thanks to all artist, musicians and everybody -who submitted suggestions. +First I'd like to thank 477-san, Hima-san, 915-san, Esiminarai-san, +Ryokounotomo-san, Syosei-san, Kouensya A-san, Miha-san, ima-san, Min-san, +and Ayase-san. Also, a big thanks to our artist, musicians, and all other +contributors. -$ License +* License FreeTrain itself is licensed under the LGPL. All use and redistribution are subject to this license. Individual plugins may have different licensing Modified: trunk/FreeTrain/experiments/RoadSimulator/Form1.cs =================================================================== --- trunk/FreeTrain/experiments/RoadSimulator/Form1.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/experiments/RoadSimulator/Form1.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -126,7 +126,7 @@ this.rb_HStation.Name = "rb_HStation"; this.rb_HStation.Size = new System.Drawing.Size(40, 24); this.rb_HStation.TabIndex = 5; - this.rb_HStation.Text = "Station-"; + this.rb_HStation.Text = "Station -"; //! this.rb_HStation.Text = "駅 −"; this.rb_HStation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.toolTip1.SetToolTip(this.rb_HStation, "Place station (horizontally)");; @@ -159,7 +159,7 @@ this.rb_Remover.Text = "Remove"; //! this.rb_Remover.Text = "撤去"; this.rb_Remover.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.toolTip1.SetToolTip(this.rb_Remover, "Remover mode"); + this.toolTip1.SetToolTip(this.rb_Remover, "Remove mode"); //! this.toolTip1.SetToolTip(this.rb_Remover, "撤去モード"); this.rb_Remover.CheckedChanged += new System.EventHandler(this.rb_Remover_CheckedChanged); // @@ -251,7 +251,7 @@ this.label1.TabIndex = 8; this.label1.Text = "level:"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; - this.toolTip1.SetToolTip(this.label1, "Station and road scale (higher value means larger scale)"); + this.toolTip1.SetToolTip(this.label1, "Station and road scale (lower value means larger scale)"); //! this.toolTip1.SetToolTip(this.label1, "駅や道路の規模(小さい値ほど規模大)"); // // numLevel @@ -265,7 +265,7 @@ this.numLevel.Name = "numLevel"; this.numLevel.Size = new System.Drawing.Size(32, 19); this.numLevel.TabIndex = 7; - this.toolTip1.SetToolTip(this.numLevel, "Station and road scale (higher value means larger scale)"); + this.toolTip1.SetToolTip(this.numLevel, "Station and road scale (lower value means larger scale)"); //! this.toolTip1.SetToolTip(this.numLevel, "駅や道路の規模(小さい値ほど規模大)"); this.numLevel.ValueChanged += new System.EventHandler(this.numLevel_ValueChanged); // Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.rc =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.rc 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.rc 2007-04-08 04:30:09 UTC (rev 22) @@ -29,19 +29,19 @@ 1 TEXTINCLUDE BEGIN - "resource.h¥0" + "resource.h\0" END 2 TEXTINCLUDE BEGIN - "#include ""winres.h""¥r¥n" - "¥0" + "#include ""winres.h""\r\n" + "\0" END 3 TEXTINCLUDE BEGIN - "1 TYPELIB ""DirectDraw.AlphaBlend.tlb""¥r¥n" - "¥0" + "1 TYPELIB ""DirectDraw.AlphaBlend.tlb""\r\n" + "\0" END #endif // APSTUDIO_INVOKED Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlend.vcproj 2007-04-08 04:30:09 UTC (rev 22) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="shift_jis"?> +<?xml version="1.0" encoding="UTF-8"?> <VisualStudioProject ProjectType="Visual C++" Version="7.10" @@ -12,7 +12,7 @@ <Configurations> <Configuration Name="Debug|Win32" - OutputDirectory="..¥..¥bin¥Debug" + OutputDirectory="..\..\bin\Debug" IntermediateDirectory="Debug" ConfigurationType="2" UseOfMFC="0" @@ -37,7 +37,7 @@ IgnoreImportLibrary="TRUE" OutputFile="$(OutDir)/DirectDraw.AlphaBlend.dll" LinkIncremental="2" - ModuleDefinitionFile=".¥DirectDraw.AlphaBlend.def" + ModuleDefinitionFile=".\DirectDraw.AlphaBlend.def" GenerateDebugInformation="TRUE" SubSystem="2" ImportLibrary="$(OutDir)/DirectDraw.AlphaBlend.lib" @@ -79,7 +79,7 @@ </Configuration> <Configuration Name="Release|Win32" - OutputDirectory="..¥..¥bin¥Release" + OutputDirectory="..\..\bin\Release" IntermediateDirectory="Release" ConfigurationType="2" UseOfMFC="0" @@ -106,7 +106,7 @@ IgnoreImportLibrary="TRUE" OutputFile="$(OutDir)/DirectDraw.AlphaBlend.dll" LinkIncremental="1" - ModuleDefinitionFile=".¥DirectDraw.AlphaBlend.def" + ModuleDefinitionFile=".\DirectDraw.AlphaBlend.def" GenerateDebugInformation="TRUE" SubSystem="2" OptimizeReferences="2" Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlendPS.vcproj =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlendPS.vcproj 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/DirectDraw.AlphaBlendPS.vcproj 2007-04-08 04:30:09 UTC (rev 22) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding = "shift_jis"?> +<?xml version="1.0" encoding = "UTF-8"?> <VisualStudioProject ProjectType="Visual C++" Version="7.00" Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/ReadMe.txt =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/ReadMe.txt 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/ReadMe.txt 2007-04-08 04:30:09 UTC (rev 22) @@ -58,7 +58,7 @@ このファイルは必要に応じてプロキシ/スタブのビルドに使用されるプロジェクト ファイルです。 主なプロジェクトの IDL ファイルには少なくともインターフェイスを 1 つ含み、 プロキシ/スタブ DLL をビルドする前に IDL ファイルをコンパイルする必要があります。 この過程で -¥プロキシ/スタブ DLL をビルドするのに必要な tdlldata.c、DirectDraw.AlphaBlend_i.c および DirectDraw.AlphaBlend_p.c が +\プロキシ/スタブ DLL をビルドするのに必要な tdlldata.c、DirectDraw.AlphaBlend_i.c および DirectDraw.AlphaBlend_p.c が 生成されます。 DirectDraw.AlphaBlendps.def Modified: trunk/FreeTrain/lib/DirectDraw.AlphaBlend/Stdafx.h =================================================================== --- trunk/FreeTrain/lib/DirectDraw.AlphaBlend/Stdafx.h 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/lib/DirectDraw.AlphaBlend/Stdafx.h 2007-04-08 04:30:09 UTC (rev 22) @@ -44,29 +44,29 @@ using namespace std; -#import <dx7vb.dll> ¥ - rename("GetClassName","_GetClassName"), ¥ - rename("CreateEvent","_CreateEvent"), ¥ - rename("DrawText","_DrawText"), ¥ - rename("SetPort","_SetPort"), ¥ - rename("max","_max"), ¥ - rename("min","_min"), ¥ - rename("E_PENDING","_E_PENDING"), ¥ - rename("PC_EXPLICIT","_PC_EXPLICIT"), ¥ - rename("PC_RESERVED","_PC_RESERVED"), ¥ - rename("PC_NOCOLLAPSE","_PC_NOCOLLAPSE"), ¥ - rename("WAVE_FORMAT_1M08","_WAVE_FORMAT_1M08"), ¥ - rename("WAVE_FORMAT_1M16","_WAVE_FORMAT_1M16"), ¥ - rename("WAVE_FORMAT_1S08","_WAVE_FORMAT_1S08"), ¥ - rename("WAVE_FORMAT_1S16","_WAVE_FORMAT_1S16"), ¥ - rename("WAVE_FORMAT_2M08","_WAVE_FORMAT_2M08"), ¥ - rename("WAVE_FORMAT_2M16","_WAVE_FORMAT_2M16"), ¥ - rename("WAVE_FORMAT_2S08","_WAVE_FORMAT_2S08"), ¥ - rename("WAVE_FORMAT_2S16","_WAVE_FORMAT_2S16"), ¥ - rename("WAVE_FORMAT_4M08","_WAVE_FORMAT_4M08"), ¥ - rename("WAVE_FORMAT_4M16","_WAVE_FORMAT_4M16"), ¥ - rename("WAVE_FORMAT_4S08","_WAVE_FORMAT_4S08"), ¥ - rename("WAVE_FORMAT_4S16","_WAVE_FORMAT_4S16"), ¥ +#import <dx7vb.dll> \ + rename("GetClassName","_GetClassName"), \ + rename("CreateEvent","_CreateEvent"), \ + rename("DrawText","_DrawText"), \ + rename("SetPort","_SetPort"), \ + rename("max","_max"), \ + rename("min","_min"), \ + rename("E_PENDING","_E_PENDING"), \ + rename("PC_EXPLICIT","_PC_EXPLICIT"), \ + rename("PC_RESERVED","_PC_RESERVED"), \ + rename("PC_NOCOLLAPSE","_PC_NOCOLLAPSE"), \ + rename("WAVE_FORMAT_1M08","_WAVE_FORMAT_1M08"), \ + rename("WAVE_FORMAT_1M16","_WAVE_FORMAT_1M16"), \ + rename("WAVE_FORMAT_1S08","_WAVE_FORMAT_1S08"), \ + rename("WAVE_FORMAT_1S16","_WAVE_FORMAT_1S16"), \ + rename("WAVE_FORMAT_2M08","_WAVE_FORMAT_2M08"), \ + rename("WAVE_FORMAT_2M16","_WAVE_FORMAT_2M16"), \ + rename("WAVE_FORMAT_2S08","_WAVE_FORMAT_2S08"), \ + rename("WAVE_FORMAT_2S16","_WAVE_FORMAT_2S16"), \ + rename("WAVE_FORMAT_4M08","_WAVE_FORMAT_4M08"), \ + rename("WAVE_FORMAT_4M16","_WAVE_FORMAT_4M16"), \ + rename("WAVE_FORMAT_4S08","_WAVE_FORMAT_4S08"), \ + rename("WAVE_FORMAT_4S16","_WAVE_FORMAT_4S16"), \ rename("WAVE_FORMAT_PCM" ,"_WAVE_FORMAT_PCM") using namespace DxVBLib; \ No newline at end of file Modified: trunk/FreeTrain/lib/DirectShow.TypeLib/DirectShow.idl =================================================================== --- trunk/FreeTrain/lib/DirectShow.TypeLib/DirectShow.idl 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/lib/DirectShow.TypeLib/DirectShow.idl 2007-04-08 04:30:09 UTC (rev 22) @@ -5,7 +5,7 @@ [ uuid(24BC6711-3881-420f-8299-34DA1026D31E), version(1.0), - helpstring("IDLTest 1.0 \xC0\xB2\xCC\xDF ײ\xCC\xDE\xD7\xD8") + helpstring("IDLTest 1.0 タイプ ライブラリ") ] library DirectShowLib { Modified: trunk/FreeTrain/lib/DirectShow.VideoRecorder/PushSource.rc =================================================================== --- trunk/FreeTrain/lib/DirectShow.VideoRecorder/PushSource.rc 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/lib/DirectShow.VideoRecorder/PushSource.rc 2007-04-08 04:30:09 UTC (rev 22) @@ -15,7 +15,7 @@ #undef APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// -// \x93\xFA\x96{\x8C\xEA resources +// 日本語 resources #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_JPN) #ifdef _WIN32 @@ -51,7 +51,7 @@ #endif // APSTUDIO_INVOKED -#endif // \x93\xFA\x96{\x8C\xEA resources +#endif // 日本語 resources ///////////////////////////////////////////////////////////////////////////// Modified: trunk/FreeTrain/tools/Driver/AssemblyInfo.cs =================================================================== --- trunk/FreeTrain/tools/Driver/AssemblyInfo.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/Driver/AssemblyInfo.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -2,9 +2,9 @@ using System.Runtime.CompilerServices; // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋւ\xB7\x82\xE9\x88\xEA\x94ʏ\xEE\x95\xF1\x82͈ȉ\xBA\x82\xCC -// \x91\xAE\x90\xAB\x83Z\x83b\x83g\x82\xF0\x92ʂ\xB5\x82Đ\xA7\x8C䂳\x82\xEA\x82܂\xB7\x81B\x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋ֘A\x95t\x82\xAF\x82\xE7\x82\xEA\x82Ă\xA2\x82\xE9 -// \x8F\xEE\x95\xF1\x82\xF0\x95ύX\x82\xB7\x82\xE9\x82ɂ́A\x82\xB1\x82\xEA\x82\xE7\x82̑\xAE\x90\xAB\x92l\x82\xF0\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに関する一般情報は以下の +// 属性セットを通して制御されます。アセンブリに関連付けられている +// 情報を変更するには、これらの属性値を変更してください。 // [assembly: AssemblyTitle("FreeTrain driver")] [assembly: AssemblyDescription("FreeTrain loader program")] @@ -16,42 +16,42 @@ [assembly: AssemblyCulture("")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82̃o\x81[\x83W\x83\x87\x83\x93\x8F\xEE\x95\xF1\x82́A\x88ȉ\xBA\x82\xCC 4 \x82̑\xAE\x90\xAB\x82ō\\x90\xAC\x82\xB3\x82\xEA\x82܂\xB7 : +// アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : // -// \x83\x81\x83W\x83\x83\x81[ \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83}\x83C\x83i \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83r\x83\x8B\x83h\x94ԍ\x86 -// \x83\x8A\x83r\x83W\x83\x87\x83\x93 +// メジャー バージョン +// マイナ バージョン +// ビルド番号 +// リビジョン // -// \x89\xBA\x82ɂ\xA0\x82\xE9\x82悤\x82ɁA'*' \x82\xF0\x8Eg\x82\xC1\x82āA\x82\xB7\x82ׂĂ̒l\x82\xF0\x8Ew\x92肷\x82邩\x81A -// \x83r\x83\x8B\x83h\x82\xA8\x82\xE6\x82у\x8A\x83r\x83W\x83\x87\x83\x93\x94ԍ\x86\x82\xF0\x8A\xF9\x92\xE8\x92l\x82ɂ\xB7\x82邱\x82Ƃ\xAA\x82ł\xAB\x82܂\xB7 : +// 下にあるように、'*' を使って、すべての値を指定するか、 +// ビルドおよびリビジョン番号を既定値にすることができます : [assembly: AssemblyVersion("1.0.*")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82ɏ\x90\x96\xBC\x82\xB7\x82\xE9\x82ɂ́A\x8Eg\x97p\x82\xB7\x82\xE9\x83L\x81[\x82\xF0\x8Ew\x92肵\x82Ȃ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x8F\x90\x96\xBC\x82Ɋւ\xB7\x82\xE9\x8Fڍׂɂ\xA2\x82ẮAMicrosoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに署名するには、使用するキーを指定しなければなりません。 +// アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 // -// \x89\xBA\x8BL\x82̑\xAE\x90\xAB\x82\xF0\x8Eg\x82\xC1\x82āA\x8F\x90\x96\xBC\x82Ɏg\x82\xA4\x83L\x81[\x82𐧌䂵\x82܂\xB7\x81B +// 下記の属性を使って、署名に使うキーを制御します。 // -// \x83\x81\x83\x82 : -// (*) \x83L\x81[\x82\xAA\x8Ew\x92肳\x82\xEA\x82Ȃ\xA2\x82ƁA\x83A\x83Z\x83\x93\x83u\x83\x8A\x82͏\x90\x96\xBC\x82\xB3\x82\xEA\x82܂\xB9\x82\xF1\x81B -// (*) KeyName \x82́A\x83R\x83\x93\x83s\x83\x85\x81[\x83^\x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9 -// \x88Í\x86\x83T\x81[\x83r\x83X \x83v\x83\x8D\x83o\x83C\x83_ (CSP) \x82̃L\x81[\x82\xF0\x95\\x82\xB5\x82܂\xB7\x81BKeyFile \x82́A -// \x83L\x81[\x82\xF0\x8A܂ރt\x83@\x83C\x83\x8B\x82ł\xB7\x81B -// (*) KeyFile \x82\xA8\x82\xE6\x82\xD1 KeyName \x82̒l\x82\xAA\x8B\xA4\x82Ɏw\x92肳\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82́A -// \x88ȉ\xBA\x82̏\x88\x97\x9D\x82\xAA\x8Ds\x82\xED\x82\xEA\x82܂\xB7 : -// (1) KeyName \x82\xAA CSP \x82Ɍ\xA9\x82\xA9\x82\xC1\x82\xBD\x8Fꍇ\x81A\x82\xBB\x82̃L\x81[\x82\xAA\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (2) KeyName \x82\xAA\x91\xB6\x8D݂\xB9\x82\xB8\x81AKeyFile \x82\xAA\x91\xB6\x8D݂\xB7\x82\xE9\x8Fꍇ\x81A -// KeyFile \x82ɂ\xA0\x82\xE9\x83L\x81[\x82\xAA CSP \x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x81A\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (*) KeyFile \x82\xF0\x8D쐬\x82\xB7\x82\xE9\x82ɂ́Asn.exe (\x8C\xB5\x96\xA7\x82Ȗ\xBC\x91O) \x83\x86\x81[\x83e\x83B\x83\x8A\x83e\x83B\x82\xF0\x8Eg\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B -// KeyFile \x82\xF0\x8Ew\x92肷\x82\xE9\x82Ƃ\xAB\x81AKeyFile \x82̏ꏊ\x82́A -// \x83v\x83\x8D\x83W\x83F\x83N\x83g\x8Fo\x97\xCD \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ւ̑\x8A\x91p\x83X\x82łȂ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83p\x83X\x82́A%Project Directory%\obj\<configuration> \x82ł\xB7\x81B\x82\xBD\x82Ƃ\xA6\x82AKeyFile \x82\xAA\x83v\x83\x8D\x83W\x83F\x83N\x83g \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ɂ\xA0\x82\xE9\x8Fꍇ\x81A -// AssemblyKeyFile \x91\xAE\x90\xAB\x82\xF0 -// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] \x82Ƃ\xB5\x82Ďw\x92肵\x82܂\xB7\x81B -// (*) \x92x\x89\x84\x8F\x90\x96\xBC\x82͍\x82\x93x\x82ȃI\x83v\x83V\x83\x87\x83\x93\x82ł\xB7\x81B -// \x8Fڍׂɂ\xA2\x82Ă\xCD Microsoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// メモ : +// (*) キーが指定されないと、アセンブリは署名されません。 +// (*) KeyName は、コンピュータにインストールされている +// 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 +// キーを含むファイルです。 +// (*) KeyFile および KeyName の値が共に指定されている場合は、 +// 以下の処理が行われます : +// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 +// (2) KeyName が存在せず、KeyFile が存在する場合、 +// KeyFile にあるキーが CSP にインストールされ、使われます。 +// (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 +// KeyFile を指定するとき、KeyFile の場所は、 +// プロジェクト出力 ディレクトリへの相対パスでなければなりません。 +// パスは、%Project Directory%¥obj¥<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 +// AssemblyKeyFile 属性を +// [assembly: AssemblyKeyFile("..¥¥..¥¥mykey.snk")] として指定します。 +// (*) 遅延署名は高度なオプションです。 +// 詳細については Microsoft .NET Framework ドキュメントを参照してください。 // [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] Modified: trunk/FreeTrain/tools/Driver/Driver.cs =================================================================== --- trunk/FreeTrain/tools/Driver/Driver.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/Driver/Driver.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -25,7 +25,8 @@ try { run(args); } catch( Exception e ) { - ErrorMessageBox.show(null,"\x83G\x83\x89\x81[\x82\xAA\x94\xAD\x90\xB6\x82\xB5\x82܂\xB5\x82\xBD",e); + ErrorMessageBox.show(null,"An error has occurred",e); + //! ErrorMessageBox.show(null,"エラーが発生しました",e); } } Modified: trunk/FreeTrain/tools/GUIDGen/AssemblyInfo.cs =================================================================== --- trunk/FreeTrain/tools/GUIDGen/AssemblyInfo.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/GUIDGen/AssemblyInfo.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -2,9 +2,9 @@ using System.Runtime.CompilerServices; // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋւ\xB7\x82\xE9\x88\xEA\x94ʏ\xEE\x95\xF1\x82͈ȉ\xBA\x82\xCC -// \x91\xAE\x90\xAB\x83Z\x83b\x83g\x82\xF0\x92ʂ\xB5\x82Đ\xA7\x8C䂳\x82\xEA\x82܂\xB7\x81B\x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋ֘A\x95t\x82\xAF\x82\xE7\x82\xEA\x82Ă\xA2\x82\xE9 -// \x8F\xEE\x95\xF1\x82\xF0\x95ύX\x82\xB7\x82\xE9\x82ɂ́A\x82\xB1\x82\xEA\x82\xE7\x82̑\xAE\x90\xAB\x92l\x82\xF0\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに関する一般情報は以下の +// 属性セットを通して制御されます。アセンブリに関連付けられている +// 情報を変更するには、これらの属性値を変更してください。 // [assembly: AssemblyTitle("")] [assembly: AssemblyDescription("")] @@ -16,42 +16,42 @@ [assembly: AssemblyCulture("")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82̃o\x81[\x83W\x83\x87\x83\x93\x8F\xEE\x95\xF1\x82́A\x88ȉ\xBA\x82\xCC 4 \x82̑\xAE\x90\xAB\x82ō\\x90\xAC\x82\xB3\x82\xEA\x82܂\xB7 : +// アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : // -// \x83\x81\x83W\x83\x83\x81[ \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83}\x83C\x83i \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83r\x83\x8B\x83h\x94ԍ\x86 -// \x83\x8A\x83r\x83W\x83\x87\x83\x93 +// メジャー バージョン +// マイナ バージョン +// ビルド番号 +// リビジョン // -// \x89\xBA\x82ɂ\xA0\x82\xE9\x82悤\x82ɁA'*' \x82\xF0\x8Eg\x82\xC1\x82āA\x82\xB7\x82ׂĂ̒l\x82\xF0\x8Ew\x92肷\x82邩\x81A -// \x83r\x83\x8B\x83h\x82\xA8\x82\xE6\x82у\x8A\x83r\x83W\x83\x87\x83\x93\x94ԍ\x86\x82\xF0\x8A\xF9\x92\xE8\x92l\x82ɂ\xB7\x82邱\x82Ƃ\xAA\x82ł\xAB\x82܂\xB7 : +// 下にあるように、'*' を使って、すべての値を指定するか、 +// ビルドおよびリビジョン番号を既定値にすることができます : [assembly: AssemblyVersion("1.0.*")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82ɏ\x90\x96\xBC\x82\xB7\x82\xE9\x82ɂ́A\x8Eg\x97p\x82\xB7\x82\xE9\x83L\x81[\x82\xF0\x8Ew\x92肵\x82Ȃ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x8F\x90\x96\xBC\x82Ɋւ\xB7\x82\xE9\x8Fڍׂɂ\xA2\x82ẮAMicrosoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに署名するには、使用するキーを指定しなければなりません。 +// アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 // -// \x89\xBA\x8BL\x82̑\xAE\x90\xAB\x82\xF0\x8Eg\x82\xC1\x82āA\x8F\x90\x96\xBC\x82Ɏg\x82\xA4\x83L\x81[\x82𐧌䂵\x82܂\xB7\x81B +// 下記の属性を使って、署名に使うキーを制御します。 // -// \x83\x81\x83\x82 : -// (*) \x83L\x81[\x82\xAA\x8Ew\x92肳\x82\xEA\x82Ȃ\xA2\x82ƁA\x83A\x83Z\x83\x93\x83u\x83\x8A\x82͏\x90\x96\xBC\x82\xB3\x82\xEA\x82܂\xB9\x82\xF1\x81B -// (*) KeyName \x82́A\x83R\x83\x93\x83s\x83\x85\x81[\x83^\x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9 -// \x88Í\x86\x83T\x81[\x83r\x83X \x83v\x83\x8D\x83o\x83C\x83_ (CSP) \x82̃L\x81[\x82\xF0\x95\\x82\xB5\x82܂\xB7\x81BKeyFile \x82́A -// \x83L\x81[\x82\xF0\x8A܂ރt\x83@\x83C\x83\x8B\x82ł\xB7\x81B -// (*) KeyFile \x82\xA8\x82\xE6\x82\xD1 KeyName \x82̒l\x82\xAA\x8B\xA4\x82Ɏw\x92肳\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82́A -// \x88ȉ\xBA\x82̏\x88\x97\x9D\x82\xAA\x8Ds\x82\xED\x82\xEA\x82܂\xB7 : -// (1) KeyName \x82\xAA CSP \x82Ɍ\xA9\x82\xA9\x82\xC1\x82\xBD\x8Fꍇ\x81A\x82\xBB\x82̃L\x81[\x82\xAA\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (2) KeyName \x82\xAA\x91\xB6\x8D݂\xB9\x82\xB8\x81AKeyFile \x82\xAA\x91\xB6\x8D݂\xB7\x82\xE9\x8Fꍇ\x81A -// KeyFile \x82ɂ\xA0\x82\xE9\x83L\x81[\x82\xAA CSP \x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x81A\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (*) KeyFile \x82\xF0\x8D쐬\x82\xB7\x82\xE9\x82ɂ́Asn.exe (\x8C\xB5\x96\xA7\x82Ȗ\xBC\x91O) \x83\x86\x81[\x83e\x83B\x83\x8A\x83e\x83B\x82\xF0\x8Eg\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B -// KeyFile \x82\xF0\x8Ew\x92肷\x82\xE9\x82Ƃ\xAB\x81AKeyFile \x82̏ꏊ\x82́A -// \x83v\x83\x8D\x83W\x83F\x83N\x83g\x8Fo\x97\xCD \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ւ̑\x8A\x91p\x83X\x82łȂ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83p\x83X\x82́A%Project Directory%\obj\<configuration> \x82ł\xB7\x81B\x82\xBD\x82Ƃ\xA6\x82AKeyFile \x82\xAA\x83v\x83\x8D\x83W\x83F\x83N\x83g \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ɂ\xA0\x82\xE9\x8Fꍇ\x81A -// AssemblyKeyFile \x91\xAE\x90\xAB\x82\xF0 -// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] \x82Ƃ\xB5\x82Ďw\x92肵\x82܂\xB7\x81B -// (*) \x92x\x89\x84\x8F\x90\x96\xBC\x82͍\x82\x93x\x82ȃI\x83v\x83V\x83\x87\x83\x93\x82ł\xB7\x81B -// \x8Fڍׂɂ\xA2\x82Ă\xCD Microsoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// メモ : +// (*) キーが指定されないと、アセンブリは署名されません。 +// (*) KeyName は、コンピュータにインストールされている +// 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 +// キーを含むファイルです。 +// (*) KeyFile および KeyName の値が共に指定されている場合は、 +// 以下の処理が行われます : +// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 +// (2) KeyName が存在せず、KeyFile が存在する場合、 +// KeyFile にあるキーが CSP にインストールされ、使われます。 +// (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 +// KeyFile を指定するとき、KeyFile の場所は、 +// プロジェクト出力 ディレクトリへの相対パスでなければなりません。 +// パスは、%Project Directory%¥obj¥<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 +// AssemblyKeyFile 属性を +// [assembly: AssemblyKeyFile("..¥¥..¥¥mykey.snk")] として指定します。 +// (*) 遅延署名は高度なオプションです。 +// 詳細については Microsoft .NET Framework ドキュメントを参照してください。 // [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] Modified: trunk/FreeTrain/tools/GUIDGen/GUIDGen.cs =================================================================== --- trunk/FreeTrain/tools/GUIDGen/GUIDGen.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/GUIDGen/GUIDGen.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -27,8 +27,8 @@ #region Windows Form Designer generated code /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -50,7 +50,8 @@ this.buttonNew.Name = "buttonNew"; this.buttonNew.Size = new System.Drawing.Size(128, 24); this.buttonNew.TabIndex = 2; - this.buttonNew.Text = "\x90V\x82\xB5\x82\xA2ID\x81\x95\x83R\x83s\x81[(&N)"; + this.buttonNew.Text = "&New ID and copy"; + //! this.buttonNew.Text = "新しいID&コピー(&N)"; this.buttonNew.Click += new System.EventHandler(this.buttonNew_Click); // // buttonCopy @@ -59,7 +60,8 @@ this.buttonCopy.Name = "buttonCopy"; this.buttonCopy.Size = new System.Drawing.Size(80, 24); this.buttonCopy.TabIndex = 1; - this.buttonCopy.Text = "\x83R\x83s\x81[(&C)"; + this.buttonCopy.Text = "&Copy"; + //! this.buttonCopy.Text = "コピー(&C)"; this.buttonCopy.Click += new System.EventHandler(this.buttonCopy_Click); // // GUIDGen @@ -74,14 +76,15 @@ this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "GUIDGen"; - this.Text = "ID\x82̍쐬"; + this.Text = "Create ID"; + //! this.Text = "IDの作成"; this.ResumeLayout(false); } #endregion /// <summary> - /// \x83A\x83v\x83\x8A\x83P\x81[\x83V\x83\x87\x83\x93\x82̃\x81\x83C\x83\x93 \x83G\x83\x93\x83g\x83\x8A \x83|\x83C\x83\x93\x83g\x82ł\xB7\x81B + /// アプリケーションのメイン エントリ ポイントです。 /// </summary> [STAThread] static void Main() { Modified: trunk/FreeTrain/tools/GUIDGen/readme.txt =================================================================== --- trunk/FreeTrain/tools/GUIDGen/readme.txt 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/GUIDGen/readme.txt 2007-04-08 04:30:09 UTC (rev 22) @@ -1,13 +1,13 @@ -FreeTrain\x82ł͑S\x82Ă\xCCcontribution\x82̓\x86\x83j\x81[\x83N\x82\xC8ID\x82\xF0\x8E\x9D\x82K\x97v\x82\xAA\x82\xA0\x82\xE8\x82܂\xB7\x81B -GUIDGen.exe\x82͂\xB1\x82̂\xBD\x82߂\xCCID\x82\xAC\x82\xB7\x82\xE9\x83c\x81[\x83\x8B\x82ł\xB7\x81B.NET\x8E\xC0\x8Ds\x8A\xAB\x82\xAA\x95K\x97v -\x82ł\xB7\x81BFreeTrain\x82\xAA\x93\xAE\x8D삵\x82Ă\xA2\x82\xEA\x82Ώ\\x95\xAA\x82Ȃ͂\xB8\x82ł\xB7\x81B +FreeTrainでは全てのcontributionはユニークなIDを持つ必要があります。 +GUIDGen.exeはこのためのIDを生成するツールです。.NET実行環境が必要 +です。FreeTrainが動作していれば十分なはずです。 -\x8BN\x93\xAE\x82\xB3\x82ꂽ\x8E\x9E\x93_\x82ŐV\x82\xB5\x82\xA2ID\x82\xAA\x8D쐬\x82\xB3\x82\xEA\x83N\x83\x8A\x83b\x83v\x83{\x81[\x83h\x82ɃR\x83s\x81[\x82\xB3\x82\xEA\x82܂\xB7\x81B -ID\x82\xAA\x82P\x82\xB5\x82\xA9\x97v\x82\xE7\x82Ȃ\xA2\x82Ȃ\xE7\x81A\x83R\x83s\x81[\x83{\x83^\x83\x93\x82\xF0\x89\x9F\x82\xB7\x95K\x97v\x82͂\xA0\x82\xE8\x82܂\xB9\x82\xF1\x81B +起動された時点で新しいIDが作成されクリップボードにコピーされます。 +IDが1つしか要らないなら、コピーボタンを押す必要はありません。 -\x83v\x83\x8D\x83O\x83\x89\x83~\x83\x93\x83O\x82\xF0\x82\xB5\x82Ă\xA2\x82\xE9\x90l\x82Ȃ\xE7\x82킩\x82\xE9\x82Ǝv\x82\xA2\x82܂\xB7\x82\xAA\x81A\x82\xB1\x82̃c\x81[\x83\x8B\x82͒P\x82\xC9 -GUID\x82\xF0\x8D쐬\x82\xB5\x82Ă\xA2\x82邾\x82\xAF\x82ł\xB7\x81B +プログラミングをしている人ならわかると思いますが、このツールは単に +GUIDを作成しているだけです。 Modified: trunk/FreeTrain/tools/MapConstructionDriver/AssemblyInfo.cs =================================================================== --- trunk/FreeTrain/tools/MapConstructionDriver/AssemblyInfo.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/MapConstructionDriver/AssemblyInfo.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -2,9 +2,9 @@ using System.Runtime.CompilerServices; // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋւ\xB7\x82\xE9\x88\xEA\x94ʏ\xEE\x95\xF1\x82͈ȉ\xBA\x82\xCC -// \x91\xAE\x90\xAB\x83Z\x83b\x83g\x82\xF0\x92ʂ\xB5\x82Đ\xA7\x8C䂳\x82\xEA\x82܂\xB7\x81B\x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋ֘A\x95t\x82\xAF\x82\xE7\x82\xEA\x82Ă\xA2\x82\xE9 -// \x8F\xEE\x95\xF1\x82\xF0\x95ύX\x82\xB7\x82\xE9\x82ɂ́A\x82\xB1\x82\xEA\x82\xE7\x82̑\xAE\x90\xAB\x92l\x82\xF0\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに関する一般情報は以下の +// 属性セットを通して制御されます。アセンブリに関連付けられている +// 情報を変更するには、これらの属性値を変更してください。 // [assembly: AssemblyTitle("FreeTrain Map Construction Driver")] [assembly: AssemblyDescription("FreeTrain loader program")] @@ -16,42 +16,42 @@ [assembly: AssemblyCulture("")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82̃o\x81[\x83W\x83\x87\x83\x93\x8F\xEE\x95\xF1\x82́A\x88ȉ\xBA\x82\xCC 4 \x82̑\xAE\x90\xAB\x82ō\\x90\xAC\x82\xB3\x82\xEA\x82܂\xB7 : +// アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : // -// \x83\x81\x83W\x83\x83\x81[ \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83}\x83C\x83i \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83r\x83\x8B\x83h\x94ԍ\x86 -// \x83\x8A\x83r\x83W\x83\x87\x83\x93 +// メジャー バージョン +// マイナ バージョン +// ビルド番号 +// リビジョン // -// \x89\xBA\x82ɂ\xA0\x82\xE9\x82悤\x82ɁA'*' \x82\xF0\x8Eg\x82\xC1\x82āA\x82\xB7\x82ׂĂ̒l\x82\xF0\x8Ew\x92肷\x82邩\x81A -// \x83r\x83\x8B\x83h\x82\xA8\x82\xE6\x82у\x8A\x83r\x83W\x83\x87\x83\x93\x94ԍ\x86\x82\xF0\x8A\xF9\x92\xE8\x92l\x82ɂ\xB7\x82邱\x82Ƃ\xAA\x82ł\xAB\x82܂\xB7 : +// 下にあるように、'*' を使って、すべての値を指定するか、 +// ビルドおよびリビジョン番号を既定値にすることができます : [assembly: AssemblyVersion("1.0.*")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82ɏ\x90\x96\xBC\x82\xB7\x82\xE9\x82ɂ́A\x8Eg\x97p\x82\xB7\x82\xE9\x83L\x81[\x82\xF0\x8Ew\x92肵\x82Ȃ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x8F\x90\x96\xBC\x82Ɋւ\xB7\x82\xE9\x8Fڍׂɂ\xA2\x82ẮAMicrosoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに署名するには、使用するキーを指定しなければなりません。 +// アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 // -// \x89\xBA\x8BL\x82̑\xAE\x90\xAB\x82\xF0\x8Eg\x82\xC1\x82āA\x8F\x90\x96\xBC\x82Ɏg\x82\xA4\x83L\x81[\x82𐧌䂵\x82܂\xB7\x81B +// 下記の属性を使って、署名に使うキーを制御します。 // -// \x83\x81\x83\x82 : -// (*) \x83L\x81[\x82\xAA\x8Ew\x92肳\x82\xEA\x82Ȃ\xA2\x82ƁA\x83A\x83Z\x83\x93\x83u\x83\x8A\x82͏\x90\x96\xBC\x82\xB3\x82\xEA\x82܂\xB9\x82\xF1\x81B -// (*) KeyName \x82́A\x83R\x83\x93\x83s\x83\x85\x81[\x83^\x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9 -// \x88Í\x86\x83T\x81[\x83r\x83X \x83v\x83\x8D\x83o\x83C\x83_ (CSP) \x82̃L\x81[\x82\xF0\x95\\x82\xB5\x82܂\xB7\x81BKeyFile \x82́A -// \x83L\x81[\x82\xF0\x8A܂ރt\x83@\x83C\x83\x8B\x82ł\xB7\x81B -// (*) KeyFile \x82\xA8\x82\xE6\x82\xD1 KeyName \x82̒l\x82\xAA\x8B\xA4\x82Ɏw\x92肳\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82́A -// \x88ȉ\xBA\x82̏\x88\x97\x9D\x82\xAA\x8Ds\x82\xED\x82\xEA\x82܂\xB7 : -// (1) KeyName \x82\xAA CSP \x82Ɍ\xA9\x82\xA9\x82\xC1\x82\xBD\x8Fꍇ\x81A\x82\xBB\x82̃L\x81[\x82\xAA\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (2) KeyName \x82\xAA\x91\xB6\x8D݂\xB9\x82\xB8\x81AKeyFile \x82\xAA\x91\xB6\x8D݂\xB7\x82\xE9\x8Fꍇ\x81A -// KeyFile \x82ɂ\xA0\x82\xE9\x83L\x81[\x82\xAA CSP \x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x81A\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (*) KeyFile \x82\xF0\x8D쐬\x82\xB7\x82\xE9\x82ɂ́Asn.exe (\x8C\xB5\x96\xA7\x82Ȗ\xBC\x91O) \x83\x86\x81[\x83e\x83B\x83\x8A\x83e\x83B\x82\xF0\x8Eg\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B -// KeyFile \x82\xF0\x8Ew\x92肷\x82\xE9\x82Ƃ\xAB\x81AKeyFile \x82̏ꏊ\x82́A -// \x83v\x83\x8D\x83W\x83F\x83N\x83g\x8Fo\x97\xCD \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ւ̑\x8A\x91p\x83X\x82łȂ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83p\x83X\x82́A%Project Directory%\obj\<configuration> \x82ł\xB7\x81B\x82\xBD\x82Ƃ\xA6\x82AKeyFile \x82\xAA\x83v\x83\x8D\x83W\x83F\x83N\x83g \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ɂ\xA0\x82\xE9\x8Fꍇ\x81A -// AssemblyKeyFile \x91\xAE\x90\xAB\x82\xF0 -// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] \x82Ƃ\xB5\x82Ďw\x92肵\x82܂\xB7\x81B -// (*) \x92x\x89\x84\x8F\x90\x96\xBC\x82͍\x82\x93x\x82ȃI\x83v\x83V\x83\x87\x83\x93\x82ł\xB7\x81B -// \x8Fڍׂɂ\xA2\x82Ă\xCD Microsoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// メモ : +// (*) キーが指定されないと、アセンブリは署名されません。 +// (*) KeyName は、コンピュータにインストールされている +// 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 +// キーを含むファイルです。 +// (*) KeyFile および KeyName の値が共に指定されている場合は、 +// 以下の処理が行われます : +// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 +// (2) KeyName が存在せず、KeyFile が存在する場合、 +// KeyFile にあるキーが CSP にインストールされ、使われます。 +// (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 +// KeyFile を指定するとき、KeyFile の場所は、 +// プロジェクト出力 ディレクトリへの相対パスでなければなりません。 +// パスは、%Project Directory%\obj\<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 +// AssemblyKeyFile 属性を +// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] として指定します。 +// (*) 遅延署名は高度なオプションです。 +// 詳細については Microsoft .NET Framework ドキュメントを参照してください。 // [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] Modified: trunk/FreeTrain/tools/MapConstructionDriver/Driver.cs =================================================================== --- trunk/FreeTrain/tools/MapConstructionDriver/Driver.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/MapConstructionDriver/Driver.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -25,7 +25,8 @@ try { run(args); } catch( Exception e ) { - ErrorMessageBox.show(null,"\x83G\x83\x89\x81[\x82\xAA\x94\xAD\x90\xB6\x82\xB5\x82܂\xB5\x82\xBD",e); + ErrorMessageBox.show(null,"An error has occurred",e); + //! ErrorMessageBox.show(null,"エラーが発生しました",e); } } Modified: trunk/FreeTrain/tools/XmlPP.readme.txt =================================================================== --- trunk/FreeTrain/tools/XmlPP.readme.txt 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/XmlPP.readme.txt 2007-04-08 04:30:09 UTC (rev 22) @@ -1,5 +1,5 @@ XML Pretty Printer - (C)Copyright by Kohsuke Kawaughic, 2002 + (C)Copyright by Kohsuke Kawaguchi, 2002 Read an XML document from stdin and pretty-print it to stdout. Licensed for use in the FreeTrain project only. Modified: trunk/FreeTrain/tools/doc/plugin.rnc =================================================================== --- trunk/FreeTrain/tools/doc/plugin.rnc 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/doc/plugin.rnc 2007-04-08 04:30:09 UTC (rev 22) @@ -5,28 +5,28 @@ ## dockingContentContrib = attribute type {"dockingContent"}, - # \x83E\x83B\x83\x93\x83h\x83E\x83^\x83u\x82ɕ\\x8E\xA6\x82\xB3\x82\xEA\x82\xE9\x92Z\x82\xA2\x96\xBC\x91O + # ウィンドウタブに表示される短い名前 element shortName {text}, element menu { - # \x83\x81\x83j\x83\x85\x81[\x82Ɏg\x97p\x82\xB3\x82\xEA\x82閼\x91O + # メニューに使用される名前 attribute name {text}, - # \x94z\x92u\x82\xB7\x82郁\x83j\x83\x85\x81[\x8D\x80\x96\xDA + # 配置するメニュー項目 attribute location {menuLocation}, - # \x95\\x8E\xA6\x88ʒu + # 表示位置 attribute pos{integer}? }, - # \x95\\x8E\xA6\x82\xB3\x82\xEA\x82\xE9\x83E\x83B\x83\x93\x83h\x83E\x82̌^ + # 表示されるウィンドウの型 element class {class} ## -## \x83N\x83\x89\x83X\x8F\xEE\x95\xF1 +## クラス情報 ## ## class = - # \x8C^\x96\xBC + # 型名 attribute name {text}, - # \x95\xFB\x82\xF0\x8A܂ރA\x83Z\x83\x93\x83u\x83\x8A\x81B\x8Fȗ\xAA\x8E\x9E\x82\xCDFreeTrain.Core.dll + # 方を含むアセンブリ。省略時はFreeTrain.Core.dll attribute codebase {text}? Modified: trunk/FreeTrain/tools/doc/readme.txt =================================================================== --- trunk/FreeTrain/tools/doc/readme.txt 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/doc/readme.txt 2007-04-08 04:30:09 UTC (rev 22) @@ -6,45 +6,46 @@ by Kohsuke Kawaguchi (kk...@ko...) -FreeTrain\x82͂`\x82S\x95\x97\x82̃Q\x81[\x83\x80\x82ł\xB7\x81BFreeTrain.exe\x82\xF0\x8BN\x93\xAE\x82\xB7\x82\xE9\x82ƃQ\x81[\x83\x80(?)\x82\xAA\x8En\x82܂\xE8 -\x82܂\xB7\x81B\x93\xAE\x8D\xEC\x8A\xAB\x82Ȃǂ̏ڍׂ́Ahttp://www.kohsuke.org/freetrain/\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD -\x82\xBE\x82\xB3\x82\xA2\x81B - - - -\x81\x9D\x8Eӎ\xAB - -\x82\xB1\x82̃Q\x81[\x83\x80\x82́A2ch\x81u\x82`\x97\xF1\x8EԂōs\x82\xB1\x82\xA4\x81v\x83X\x83\x8C\x83b\x83h\x82̊F\x82\xB3\x82\xF1\x82ƈꏏ\x82ɍ\xEC\x82\xC1\x82\xBD\x83Q\x81[\x83\x80\x82\xC5 -\x82\xB7\x81B477\x82\xB3\x82\xF1\x81A\x89ɂ\xB3\x82\xF1\x81A915\x82\xB3\x82\xF1\x81A\x8AG\x8Et\x8C\xA9\x8FK\x82\xA2\x82\xB3\x82\xF1\x81A\x97\xB7\x8Ds\x82̗F\x82\xB3\x82\xF1\x81A\x8F\xE0\x90\xBA\x82\xB3\x82\xF1\x81A -\x8C㉇\x8E҂`\x82\xB3\x82\xF1\x81A\x83~\x83n\x82\xB3\x82\xF1\x81Aima\x82\xB3\x82\xF1\x81AMin\x82\xB3\x82\xF1\x81A\x88\xBB\x90\xA3\x82\xB3\x82\xF1\x82\xF0\x8En\x82߂Ƃ\xB5\x82āA\x89摜\x82\xE2 -\x89\xB9\x8Ay\x82\xE2\x88ӌ\xA9\x82\xF0\x8Fo\x82\xB5\x82Ă\xAD\x82ꂽ\x8AF\x82\xB3\x82\xF1\x95\xFB\x82Ɋ\xB4\x8Eӂ\xB5\x82܂\xB7\x81B - - - -\x81\x9D\x83\x89\x83C\x83Z\x83\x93\x83X - -FreeTrain\x96{\x91̂\xCDLGPL\x82ɂ\xE6\x82\xC1\x82ă\x89\x83C\x83Z\x83\x93\x83X\x82\xB3\x82\xEA\x82Ă\xA2\x82܂\xB7\x81B\x8DĔz\x95z\x81E\x97\x98\x97p\x93\x99\x82͂\xB1\x82\xCC -\x83\x89\x83C\x83Z\x83\x93\x83X\x82ɏ]\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B\x8CX\x82̃v\x83\x89\x83O\x83C\x83\x93\x82͂\xBB\x82ꂼ\x82\xEA\x82̍\xEC\x8E҂ɂ\xE6\x82\xC1\x82ă\x89\x83C -\x83Z\x83\x93\x83X\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82\xAA\x82\xA0\x82\xE8\x82܂\xB7\x82\xAA\x81A\x92f\x82\xE8\x82̂Ȃ\xA2\x8FꍇLGPL\x82Ƃ\xB5\x82Ĉ\xB5\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B - - FreeTrain - Copyright (C) 2002, Kohsuke Kawaguchi et al. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - -FreeTrain\x82\xCDDotNet Magic UI Library (http://www.dotnetmagic.com/)\x82𗘗p\x82\xB5\x82\xC4 -\x82\xA2\x82܂\xB7\x81B\x82\xB1\x82̃\x89\x83C\x83u\x83\x89\x83\x8A\x82\xCDLGPL\x82ł͂Ȃ\xA2\x82̂ōė\x98\x97p\x82ɂ͒\x8D\x88ӂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B\x8DĔz\x95z -\x82͖\xE2\x91肠\x82\xE8\x82܂\xB9\x82\xF1\x81B +FreeTrain is a game in "A-Train 4" style. When you run FreeTrain.exe, a +game (?) will start. For details about the runtime environment, refer to +http://www.kohsuke.org/freetrain/ + + + +* Acknowledgments + +This game was created by the members of the "A-Train" community at 2ch. +First I'd like to thank 477-san, Hima-san, 915-san, Esiminarai-san, +Ryokounotomo-san, Syosei-san, Kouensya A-san, Miha-san, ima-san, Min-san, +and Ayase-san. Also, a big thanks to our artist, musicians, and all other +contributors. + + + +* License + +FreeTrain itself is licensed under the LGPL. All use and redistribution are +subject to this license. Individual plugins may have different licensing +agreements, but unless specifically noted, please assume LGPL. + + FreeTrain + Copyright (C) 2002, Kohsuke Kawaguchi et al. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +FreeTrain uses the DotNet Magic UI Library (http://www.dotnetmagic.com/). +This library is not licensed under the LGPL, so please be careful when +reusing the code. It does not however pose a problem for redistribution. Modified: trunk/FreeTrain/tools/experiments/Heat/AssemblyInfo.cs =================================================================== --- trunk/FreeTrain/tools/experiments/Heat/AssemblyInfo.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/experiments/Heat/AssemblyInfo.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -2,9 +2,9 @@ using System.Runtime.CompilerServices; // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋւ\xB7\x82\xE9\x88\xEA\x94ʏ\xEE\x95\xF1\x82͈ȉ\xBA\x82\xCC -// \x91\xAE\x90\xAB\x83Z\x83b\x83g\x82\xF0\x92ʂ\xB5\x82Đ\xA7\x8C䂳\x82\xEA\x82܂\xB7\x81B\x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋ֘A\x95t\x82\xAF\x82\xE7\x82\xEA\x82Ă\xA2\x82\xE9 -// \x8F\xEE\x95\xF1\x82\xF0\x95ύX\x82\xB7\x82\xE9\x82ɂ́A\x82\xB1\x82\xEA\x82\xE7\x82̑\xAE\x90\xAB\x92l\x82\xF0\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに関する一般情報は以下の +// 属性セットを通して制御されます。アセンブリに関連付けられている +// 情報を変更するには、これらの属性値を変更してください。 // [assembly: AssemblyTitle("")] [assembly: AssemblyDescription("")] @@ -16,42 +16,42 @@ [assembly: AssemblyCulture("")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82̃o\x81[\x83W\x83\x87\x83\x93\x8F\xEE\x95\xF1\x82́A\x88ȉ\xBA\x82\xCC 4 \x82̑\xAE\x90\xAB\x82ō\\x90\xAC\x82\xB3\x82\xEA\x82܂\xB7 : +// アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : // -// \x83\x81\x83W\x83\x83\x81[ \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83}\x83C\x83i \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83r\x83\x8B\x83h\x94ԍ\x86 -// \x83\x8A\x83r\x83W\x83\x87\x83\x93 +// メジャー バージョン +// マイナ バージョン +// ビルド番号 +// リビジョン // -// \x89\xBA\x82ɂ\xA0\x82\xE9\x82悤\x82ɁA'*' \x82\xF0\x8Eg\x82\xC1\x82āA\x82\xB7\x82ׂĂ̒l\x82\xF0\x8Ew\x92肷\x82邩\x81A -// \x83r\x83\x8B\x83h\x82\xA8\x82\xE6\x82у\x8A\x83r\x83W\x83\x87\x83\x93\x94ԍ\x86\x82\xF0\x8A\xF9\x92\xE8\x92l\x82ɂ\xB7\x82邱\x82Ƃ\xAA\x82ł\xAB\x82܂\xB7 : +// 下にあるように、'*' を使って、すべての値を指定するか、 +// ビルドおよびリビジョン番号を既定値にすることができます : [assembly: AssemblyVersion("1.0.*")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82ɏ\x90\x96\xBC\x82\xB7\x82\xE9\x82ɂ́A\x8Eg\x97p\x82\xB7\x82\xE9\x83L\x81[\x82\xF0\x8Ew\x92肵\x82Ȃ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x8F\x90\x96\xBC\x82Ɋւ\xB7\x82\xE9\x8Fڍׂɂ\xA2\x82ẮAMicrosoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに署名するには、使用するキーを指定しなければなりません。 +// アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 // -// \x89\xBA\x8BL\x82̑\xAE\x90\xAB\x82\xF0\x8Eg\x82\xC1\x82āA\x8F\x90\x96\xBC\x82Ɏg\x82\xA4\x83L\x81[\x82𐧌䂵\x82܂\xB7\x81B +// 下記の属性を使って、署名に使うキーを制御します。 // -// \x83\x81\x83\x82 : -// (*) \x83L\x81[\x82\xAA\x8Ew\x92肳\x82\xEA\x82Ȃ\xA2\x82ƁA\x83A\x83Z\x83\x93\x83u\x83\x8A\x82͏\x90\x96\xBC\x82\xB3\x82\xEA\x82܂\xB9\x82\xF1\x81B -// (*) KeyName \x82́A\x83R\x83\x93\x83s\x83\x85\x81[\x83^\x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9 -// \x88Í\x86\x83T\x81[\x83r\x83X \x83v\x83\x8D\x83o\x83C\x83_ (CSP) \x82̃L\x81[\x82\xF0\x95\\x82\xB5\x82܂\xB7\x81BKeyFile \x82́A -// \x83L\x81[\x82\xF0\x8A܂ރt\x83@\x83C\x83\x8B\x82ł\xB7\x81B -// (*) KeyFile \x82\xA8\x82\xE6\x82\xD1 KeyName \x82̒l\x82\xAA\x8B\xA4\x82Ɏw\x92肳\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82́A -// \x88ȉ\xBA\x82̏\x88\x97\x9D\x82\xAA\x8Ds\x82\xED\x82\xEA\x82܂\xB7 : -// (1) KeyName \x82\xAA CSP \x82Ɍ\xA9\x82\xA9\x82\xC1\x82\xBD\x8Fꍇ\x81A\x82\xBB\x82̃L\x81[\x82\xAA\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (2) KeyName \x82\xAA\x91\xB6\x8D݂\xB9\x82\xB8\x81AKeyFile \x82\xAA\x91\xB6\x8D݂\xB7\x82\xE9\x8Fꍇ\x81A -// KeyFile \x82ɂ\xA0\x82\xE9\x83L\x81[\x82\xAA CSP \x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x81A\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (*) KeyFile \x82\xF0\x8D쐬\x82\xB7\x82\xE9\x82ɂ́Asn.exe (\x8C\xB5\x96\xA7\x82Ȗ\xBC\x91O) \x83\x86\x81[\x83e\x83B\x83\x8A\x83e\x83B\x82\xF0\x8Eg\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B -// KeyFile \x82\xF0\x8Ew\x92肷\x82\xE9\x82Ƃ\xAB\x81AKeyFile \x82̏ꏊ\x82́A -// \x83v\x83\x8D\x83W\x83F\x83N\x83g\x8Fo\x97\xCD \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ւ̑\x8A\x91p\x83X\x82łȂ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83p\x83X\x82́A%Project Directory%\obj\<configuration> \x82ł\xB7\x81B\x82\xBD\x82Ƃ\xA6\x82AKeyFile \x82\xAA\x83v\x83\x8D\x83W\x83F\x83N\x83g \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ɂ\xA0\x82\xE9\x8Fꍇ\x81A -// AssemblyKeyFile \x91\xAE\x90\xAB\x82\xF0 -// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] \x82Ƃ\xB5\x82Ďw\x92肵\x82܂\xB7\x81B -// (*) \x92x\x89\x84\x8F\x90\x96\xBC\x82͍\x82\x93x\x82ȃI\x83v\x83V\x83\x87\x83\x93\x82ł\xB7\x81B -// \x8Fڍׂɂ\xA2\x82Ă\xCD Microsoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// メモ : +// (*) キーが指定されないと、アセンブリは署名されません。 +// (*) KeyName は、コンピュータにインストールされている +// 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 +// キーを含むファイルです。 +// (*) KeyFile および KeyName の値が共に指定されている場合は、 +// 以下の処理が行われます : +// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 +// (2) KeyName が存在せず、KeyFile が存在する場合、 +// KeyFile にあるキーが CSP にインストールされ、使われます。 +// (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 +// KeyFile を指定するとき、KeyFile の場所は、 +// プロジェクト出力 ディレクトリへの相対パスでなければなりません。 +// パスは、%Project Directory%¥obj¥<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 +// AssemblyKeyFile 属性を +// [assembly: AssemblyKeyFile("..¥¥..¥¥mykey.snk")] として指定します。 +// (*) 遅延署名は高度なオプションです。 +// 詳細については Microsoft .NET Framework ドキュメントを参照してください。 // [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] Modified: trunk/FreeTrain/tools/experiments/Heat/Heat.cs =================================================================== --- trunk/FreeTrain/tools/experiments/Heat/Heat.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/experiments/Heat/Heat.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -50,8 +50,8 @@ #region Windows Form Designer generated code /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -93,8 +93,9 @@ this.Controls.AddRange(new System.Windows.Forms.Control[] { this.statusBar}); this.Menu = this.mainMenu1; - this.Name = "Heat"; - this.Text = "\x94M\x93`\x93\xB1\x8E\xC0\x8C\xB1"; + this.Name = "Heat"; + this.Text = "Heat propagation experiment"; + //! this.Text = "熱伝導実験"; this.ResumeLayout(false); } @@ -128,7 +129,8 @@ private void timer_Tick(object sender, System.EventArgs e) { for( int i=0; i<8; i++ ) m.next(); float r = m.next(); - this.Text = "\x94M\x93`\x93\xB1\x83\x82\x83f\x83\x8B "+(++tick)+":"+r; + this.Text = "Heat propagation model "+(++tick)+":"+r; + //! this.Text = "熱伝導モデル "+(++tick)+":"+r; for( int x=99; x>=0; x-- ) for( int y=99; y>=0; y-- ) { int t = Math.Max(0,Math.Min((int)f(m.temp[x,y]),255)); @@ -160,7 +162,7 @@ private const int ZOOM = 4; private void writeSnapshot(object sender, System.EventArgs e) { - FileStream o = new FileStream(@"c:\heat.txt",FileMode.Create); + FileStream o = new FileStream(@"c:¥heat.txt",FileMode.Create); TextWriter w = new StreamWriter(o); for(int i=0;i<100;i++) w.WriteLine(m.temp[i,50]); Modified: trunk/FreeTrain/tools/experiments/RoadSimulator/AssemblyInfo.cs =================================================================== --- trunk/FreeTrain/tools/experiments/RoadSimulator/AssemblyInfo.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/experiments/RoadSimulator/AssemblyInfo.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -2,9 +2,9 @@ using System.Runtime.CompilerServices; // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋւ\xB7\x82\xE9\x88\xEA\x94ʏ\xEE\x95\xF1\x82͈ȉ\xBA\x82\xCC -// \x91\xAE\x90\xAB\x83Z\x83b\x83g\x82\xF0\x92ʂ\xB5\x82Đ\xA7\x8C䂳\x82\xEA\x82܂\xB7\x81B\x83A\x83Z\x83\x93\x83u\x83\x8A\x82Ɋ֘A\x95t\x82\xAF\x82\xE7\x82\xEA\x82Ă\xA2\x82\xE9 -// \x8F\xEE\x95\xF1\x82\xF0\x95ύX\x82\xB7\x82\xE9\x82ɂ́A\x82\xB1\x82\xEA\x82\xE7\x82̑\xAE\x90\xAB\x92l\x82\xF0\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに関する一般情報は以下の +// 属性セットを通して制御されます。アセンブリに関連付けられている +// 情報を変更するには、これらの属性値を変更してください。 // [assembly: AssemblyTitle("")] [assembly: AssemblyDescription("")] @@ -16,42 +16,42 @@ [assembly: AssemblyCulture("")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82̃o\x81[\x83W\x83\x87\x83\x93\x8F\xEE\x95\xF1\x82́A\x88ȉ\xBA\x82\xCC 4 \x82̑\xAE\x90\xAB\x82ō\\x90\xAC\x82\xB3\x82\xEA\x82܂\xB7 : +// アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : // -// \x83\x81\x83W\x83\x83\x81[ \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83}\x83C\x83i \x83o\x81[\x83W\x83\x87\x83\x93 -// \x83r\x83\x8B\x83h\x94ԍ\x86 -// \x83\x8A\x83r\x83W\x83\x87\x83\x93 +// メジャー バージョン +// マイナ バージョン +// ビルド番号 +// リビジョン // -// \x89\xBA\x82ɂ\xA0\x82\xE9\x82悤\x82ɁA'*' \x82\xF0\x8Eg\x82\xC1\x82āA\x82\xB7\x82ׂĂ̒l\x82\xF0\x8Ew\x92肷\x82邩\x81A -// \x83r\x83\x8B\x83h\x82\xA8\x82\xE6\x82у\x8A\x83r\x83W\x83\x87\x83\x93\x94ԍ\x86\x82\xF0\x8A\xF9\x92\xE8\x92l\x82ɂ\xB7\x82邱\x82Ƃ\xAA\x82ł\xAB\x82܂\xB7 : +// 下にあるように、'*' を使って、すべての値を指定するか、 +// ビルドおよびリビジョン番号を既定値にすることができます : [assembly: AssemblyVersion("1.0.*")] // -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x82ɏ\x90\x96\xBC\x82\xB7\x82\xE9\x82ɂ́A\x8Eg\x97p\x82\xB7\x82\xE9\x83L\x81[\x82\xF0\x8Ew\x92肵\x82Ȃ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83A\x83Z\x83\x93\x83u\x83\x8A\x8F\x90\x96\xBC\x82Ɋւ\xB7\x82\xE9\x8Fڍׂɂ\xA2\x82ẮAMicrosoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// アセンブリに署名するには、使用するキーを指定しなければなりません。 +// アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 // -// \x89\xBA\x8BL\x82̑\xAE\x90\xAB\x82\xF0\x8Eg\x82\xC1\x82āA\x8F\x90\x96\xBC\x82Ɏg\x82\xA4\x83L\x81[\x82𐧌䂵\x82܂\xB7\x81B +// 下記の属性を使って、署名に使うキーを制御します。 // -// \x83\x81\x83\x82 : -// (*) \x83L\x81[\x82\xAA\x8Ew\x92肳\x82\xEA\x82Ȃ\xA2\x82ƁA\x83A\x83Z\x83\x93\x83u\x83\x8A\x82͏\x90\x96\xBC\x82\xB3\x82\xEA\x82܂\xB9\x82\xF1\x81B -// (*) KeyName \x82́A\x83R\x83\x93\x83s\x83\x85\x81[\x83^\x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9 -// \x88Í\x86\x83T\x81[\x83r\x83X \x83v\x83\x8D\x83o\x83C\x83_ (CSP) \x82̃L\x81[\x82\xF0\x95\\x82\xB5\x82܂\xB7\x81BKeyFile \x82́A -// \x83L\x81[\x82\xF0\x8A܂ރt\x83@\x83C\x83\x8B\x82ł\xB7\x81B -// (*) KeyFile \x82\xA8\x82\xE6\x82\xD1 KeyName \x82̒l\x82\xAA\x8B\xA4\x82Ɏw\x92肳\x82\xEA\x82Ă\xA2\x82\xE9\x8Fꍇ\x82́A -// \x88ȉ\xBA\x82̏\x88\x97\x9D\x82\xAA\x8Ds\x82\xED\x82\xEA\x82܂\xB7 : -// (1) KeyName \x82\xAA CSP \x82Ɍ\xA9\x82\xA9\x82\xC1\x82\xBD\x8Fꍇ\x81A\x82\xBB\x82̃L\x81[\x82\xAA\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (2) KeyName \x82\xAA\x91\xB6\x8D݂\xB9\x82\xB8\x81AKeyFile \x82\xAA\x91\xB6\x8D݂\xB7\x82\xE9\x8Fꍇ\x81A -// KeyFile \x82ɂ\xA0\x82\xE9\x83L\x81[\x82\xAA CSP \x82ɃC\x83\x93\x83X\x83g\x81[\x83\x8B\x82\xB3\x82\xEA\x81A\x8Eg\x82\xED\x82\xEA\x82܂\xB7\x81B -// (*) KeyFile \x82\xF0\x8D쐬\x82\xB7\x82\xE9\x82ɂ́Asn.exe (\x8C\xB5\x96\xA7\x82Ȗ\xBC\x91O) \x83\x86\x81[\x83e\x83B\x83\x8A\x83e\x83B\x82\xF0\x8Eg\x82\xC1\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B -// KeyFile \x82\xF0\x8Ew\x92肷\x82\xE9\x82Ƃ\xAB\x81AKeyFile \x82̏ꏊ\x82́A -// \x83v\x83\x8D\x83W\x83F\x83N\x83g\x8Fo\x97\xCD \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ւ̑\x8A\x91p\x83X\x82łȂ\xAF\x82\xEA\x82Ȃ\xE8\x82܂\xB9\x82\xF1\x81B -// \x83p\x83X\x82́A%Project Directory%\obj\<configuration> \x82ł\xB7\x81B\x82\xBD\x82Ƃ\xA6\x82AKeyFile \x82\xAA\x83v\x83\x8D\x83W\x83F\x83N\x83g \x83f\x83B\x83\x8C\x83N\x83g\x83\x8A\x82ɂ\xA0\x82\xE9\x8Fꍇ\x81A -// AssemblyKeyFile \x91\xAE\x90\xAB\x82\xF0 -// [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] \x82Ƃ\xB5\x82Ďw\x92肵\x82܂\xB7\x81B -// (*) \x92x\x89\x84\x8F\x90\x96\xBC\x82͍\x82\x93x\x82ȃI\x83v\x83V\x83\x87\x83\x93\x82ł\xB7\x81B -// \x8Fڍׂɂ\xA2\x82Ă\xCD Microsoft .NET Framework \x83h\x83L\x83\x85\x83\x81\x83\x93\x83g\x82\xF0\x8EQ\x8FƂ\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B +// メモ : +// (*) キーが指定されないと、アセンブリは署名されません。 +// (*) KeyName は、コンピュータにインストールされている +// 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 +// キーを含むファイルです。 +// (*) KeyFile および KeyName の値が共に指定されている場合は、 +// 以下の処理が行われます : +// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 +// (2) KeyName が存在せず、KeyFile が存在する場合、 +// KeyFile にあるキーが CSP にインストールされ、使われます。 +// (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 +// KeyFile を指定するとき、KeyFile の場所は、 +// プロジェクト出力 ディレクトリへの相対パスでなければなりません。 +// パスは、%Project Directory%¥obj¥<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 +// AssemblyKeyFile 属性を +// [assembly: AssemblyKeyFile("..¥¥..¥¥mykey.snk")] として指定します。 +// (*) 遅延署名は高度なオプションです。 +// 詳細については Microsoft .NET Framework ドキュメントを参照してください。 // [assembly: AssemblyDelaySign(false)] [assembly: AssemblyKeyFile("")] Modified: trunk/FreeTrain/tools/experiments/RoadSimulator/Configure.cs =================================================================== --- trunk/FreeTrain/tools/experiments/RoadSimulator/Configure.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/experiments/RoadSimulator/Configure.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -3,20 +3,20 @@ namespace RoadSimulator { /// <summary> - /// \x8A\xAB\x90ݒ\xE8 + /// 環境設定 /// </summary> public class Configure { - //\x93\xB9\x98H\x82̃\x8C\x83x\x83\x8B\x81B\x82\xBD\x82\xBE\x82\xB5\x81A0\x82\xAA\x88\xEA\x94ԑ\xBE\x82\xA2\x93\xB9\x98H\x81B + //道路のレベル。ただし、0が一番太い道路。 static public readonly int RoadLevelMax = 4; - //\x89w\x91O\x93\xB9\x98H\x82̉w\x82\xA9\x82\xE7\x82̕\xBD\x8Bϋ\x97\x97\xA3\x81B + //駅前道路の駅からの平均距離。 static public readonly int MeanDistanceFromStation = 4; - //\x98A\x91\xB1\x8E\xC0\x8Ds\x82̃E\x83F\x83C\x83g\x81B + //連続実行のウェイト。 static public readonly int TimerInterval = 4; - //\x8E}\x82\xF0\x82\xAD\x82\xE9\x8Dő哹\x98H\x83\x8C\x83x\x83\x8B(\x82\xB1\x82\xEA\x88ȍ~\x82̃\x8C\x83x\x83\x8B\x82̓\xB9\x98H\x82͎}\x95\xAA\x8A\xF2\x82\xF0\x82\xB5\x82Ȃ\xA2) + //枝をつくる最大道路レベル(これ以降のレベルの道路は枝分岐をしない) static public readonly int noTrunkLevel = 4; - //\x89w\x82̃\x8C\x83x\x83\x8B\x81\x81\x89w\x82̐\xB3\x96ʂɂł\xAB\x82铹\x98H\x82̃\x8C\x83x\x83\x8B\x81B + //駅のレベル=駅の正面にできる道路のレベル。 static private int stationLv = 1; static public int stationLevel { @@ -27,7 +27,7 @@ private Configure() { // - // TODO: \x83R\x83\x93\x83X\x83g\x83\x89\x83N\x83^ \x83\x8D\x83W\x83b\x83N\x82\xF0\x82\xB1\x82\xB1\x82ɒlj\xC1\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + // TODO: コンストラクタ ロジックをここに追加してください。 // } } Modified: trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs =================================================================== --- trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs 2007-04-07 13:12:07 UTC (rev 21) +++ trunk/FreeTrain/tools/experiments/RoadSimulator/Form1.cs 2007-04-08 04:30:09 UTC (rev 22) @@ -8,7 +8,7 @@ namespace RoadSimulator { /// <summary> - /// Form1 \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// Form1 の概要の説明です。 /// </summary> public class Form1 : System.Windows.Forms.Form { @@ -39,7 +39,7 @@ public Form1() { // - // Windows \x83t\x83H\x81[\x83\x80 \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ł\xB7\x81B + // Windows フォーム デザイナ サポートに必要です。 // InitializeComponent(); mapView.boxMode = cbBoxMod.Checked; @@ -50,7 +50,7 @@ } /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { @@ -66,8 +66,8 @@ #region Windows Form Designer generated code /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -103,7 +103,7 @@ this.btnStep.Name = "btnStep"; this.btnStep.Size = new System.Drawing.Size(40, 23); this.btnStep.TabIndex = 1; - this.btnStep.Text = "\x81\x84|"; + this.btnStep.Text = ">|"; this.toolTip1.SetToolTip(this.btnStep, "NEXT STEP"); this.btnStep.Click += new System.EventHandler(this.btnStep_Click); // @@ -126,9 +126,11 @@ this.rb_HStation.Name = "rb_HStation"; this.rb_HStation.Size = new System.Drawing.Size(40, 24); this.rb_HStation.TabIndex = 5; - this.rb_HStation.Text = "\x89w\x81|"; + this.rb_HStation.Text = "Station −"; + ... [truncated message content] |
From: <him...@us...> - 2007-04-07 13:12:06
|
Revision: 21 http://freetrain.svn.sourceforge.net/freetrain/?rev=21&view=rev Author: himasaram Date: 2007-04-07 06:12:07 -0700 (Sat, 07 Apr 2007) Log Message: ----------- Finished translating tools/core/ plus loads of translation tweaks elsewhere Modified Paths: -------------- trunk/FreeTrain/core/framework/BGMManager.cs trunk/FreeTrain/core/framework/ConfigDialog.cs trunk/FreeTrain/core/framework/MainWindow.cs trunk/FreeTrain/core/util/controls/ToolBarCustomizerUI.cs trunk/FreeTrain/core/views/map/MapView.cs trunk/FreeTrain/core/world/Time.cs trunk/FreeTrain/core/world/World.cs trunk/FreeTrain/core/world/accounting/AccountSummaryWindow.cs trunk/FreeTrain/core/world/rail/TrainGroup.cs trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs trunk/FreeTrain/tools/core/framework/BGMManager.cs trunk/FreeTrain/tools/core/framework/ConfigDialog.cs trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs trunk/FreeTrain/tools/core/framework/MainWindow.cs trunk/FreeTrain/tools/core/util/controls/ToolBarCustomizerUI.cs trunk/FreeTrain/tools/core/util/docking/ContentEx.cs trunk/FreeTrain/tools/core/views/AbstractView.cs trunk/FreeTrain/tools/core/views/NullWeatherOverlay.cs trunk/FreeTrain/tools/core/views/QuarterViewDrawer.cs trunk/FreeTrain/tools/core/views/WeatherOverlayImpl.cs trunk/FreeTrain/tools/core/views/map/MapView.cs trunk/FreeTrain/tools/core/world/Car.cs trunk/FreeTrain/tools/core/world/Direction.cs trunk/FreeTrain/tools/core/world/Location.cs trunk/FreeTrain/tools/core/world/Time.cs trunk/FreeTrain/tools/core/world/Traffic.cs trunk/FreeTrain/tools/core/world/World.cs trunk/FreeTrain/tools/core/world/accounting/AccountManager.cs trunk/FreeTrain/tools/core/world/accounting/AccountSummaryWindow.cs trunk/FreeTrain/tools/core/world/accounting/GenreSelectorDialog.cs trunk/FreeTrain/tools/core/world/development/CommercialStructurePlan.cs trunk/FreeTrain/tools/core/world/development/LandValueInspector.cs trunk/FreeTrain/tools/core/world/development/LandValueInspectorPlugin.cs trunk/FreeTrain/tools/core/world/development/VarHeightBuildingPlan.cs trunk/FreeTrain/tools/core/world/rail/BridgeRail.cs trunk/FreeTrain/tools/core/world/rail/DelegationTrainControllerImpl.cs trunk/FreeTrain/tools/core/world/rail/Platform.cs trunk/FreeTrain/tools/core/world/rail/RailPattern.cs trunk/FreeTrain/tools/core/world/rail/RailRoad.cs trunk/FreeTrain/tools/core/world/rail/RailStationaryStructure.cs trunk/FreeTrain/tools/core/world/rail/SimpleTrainControllerImpl.cs trunk/FreeTrain/tools/core/world/rail/SingleRailRoad.cs trunk/FreeTrain/tools/core/world/rail/SpecialPurposeRailRoad.cs trunk/FreeTrain/tools/core/world/rail/StealSupportedRailContributionImpl.cs trunk/FreeTrain/tools/core/world/rail/Train.cs trunk/FreeTrain/tools/core/world/rail/TrainGroup.cs trunk/FreeTrain/tools/core/world/rail/TunnelRail.cs trunk/FreeTrain/tools/core/world/structs/ConstructionSite.cs trunk/FreeTrain/tools/core/world/subsidiaries/MarketWindow.cs Modified: trunk/FreeTrain/core/framework/BGMManager.cs =================================================================== --- trunk/FreeTrain/core/framework/BGMManager.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/framework/BGMManager.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -106,7 +106,7 @@ public SelectMenuItem() : base() {} // for some reason Windows Forms need this constructor internal SelectMenuItem( BGMManager owner ) { this.owner = owner; - this.Text = "&Select file..."; + this.Text = "&Select from file..."; //! this.Text = "ファイルから選択(&S)..."; } Modified: trunk/FreeTrain/core/framework/ConfigDialog.cs =================================================================== --- trunk/FreeTrain/core/framework/ConfigDialog.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/framework/ConfigDialog.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -197,7 +197,7 @@ this.comboSurfaceAlloc.Name = "comboSurfaceAlloc"; this.comboSurfaceAlloc.Size = new System.Drawing.Size(200, 20); this.comboSurfaceAlloc.TabIndex = 5; - this.toolTip.SetToolTip(this.comboSurfaceAlloc, "Refresh if drawing is slow and about to cause errors."); + this.toolTip.SetToolTip(this.comboSurfaceAlloc, "Change if drawing is slow and causing errors."); //! this.toolTip.SetToolTip(this.comboSurfaceAlloc, "描画が遅かったりエラーがでるようなら変更してください。"); // // label2 @@ -206,10 +206,10 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(160, 16); this.label2.TabIndex = 6; - this.label2.Text = "Save offscreen surfaces:"; + this.label2.Text = "Cache offscreen surfaces:"; //! this.label2.Text = "オフスクリーンサーフェスの確保:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.toolTip.SetToolTip(this.label2, "Refresh if drawing is slow and about to cause errors."); + this.toolTip.SetToolTip(this.label2, "Change if drawing is slow and causing errors."); //! this.toolTip.SetToolTip(this.label2, "描画が遅かったりエラーがでるようなら変更してください。"); // // ConfigDialog Modified: trunk/FreeTrain/core/framework/MainWindow.cs =================================================================== --- trunk/FreeTrain/core/framework/MainWindow.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/framework/MainWindow.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -557,26 +557,26 @@ this.menuItem_TrainTrading, this.menuItem4}); this.menuItem_rail.MergeOrder = 2; - this.menuItem_rail.Text = "&Rails"; + this.menuItem_rail.Text = "&Rail"; //! this.menuItem_rail.Text = "鉄道(&R)"; // // menuItem_RailRoadConstruction // this.menuItem_RailRoadConstruction.Index = 0; - this.menuItem_RailRoadConstruction.Text = "&Rail construction..."; + this.menuItem_RailRoadConstruction.Text = "Lay &rail..."; //! this.menuItem_RailRoadConstruction.Text = "線路工事(&R)..."; // // menuItem_SlopeRailRoad // this.menuItem_SlopeRailRoad.Index = 1; - this.menuItem_SlopeRailRoad.Text = "&Sloping rail construction..."; + this.menuItem_SlopeRailRoad.Text = "Lay &slope..."; //! this.menuItem_SlopeRailRoad.Text = "勾配工事(&S)..."; // // menuItem_Platform // this.menuItem_Platform.Index = 2; - this.menuItem_Platform.Text = "駅工事(&A)..."; - //! this.menuItem_Platform.Text = "St&ation construction..."; + this.menuItem_Platform.Text = "Build st&ation..."; + //! this.menuItem_Platform.Text = "駅工事(&A)..."; // // menuItem_stationPassageway // @@ -598,7 +598,7 @@ // menuItem_TrainPlacement // this.menuItem_TrainPlacement.Index = 6; - this.menuItem_TrainPlacement.Text = "&Train placement..."; + this.menuItem_TrainPlacement.Text = "Place &train..."; //! this.menuItem_TrainPlacement.Text = "車両配置(&T)..."; // // menuItem_TrainTrading @@ -635,25 +635,25 @@ // menuItem_struct // this.menuItem_struct.Index = 0; - this.menuItem_struct.Text = "Building construction (tentative)..."; + this.menuItem_struct.Text = "Building construction..."; //! this.menuItem_struct.Text = "建物の工事(仮)..."; // // menuItem_terrain // this.menuItem_terrain.Index = 1; - this.menuItem_terrain.Text = "Level terrain (tentative)(&M)..."; + this.menuItem_terrain.Text = "&Modify terrain..."; //! this.menuItem_terrain.Text = "整地(仮)(&M)..."; // // menuItem_varHeightBldg // this.menuItem_varHeightBldg.Index = 2; - this.menuItem_varHeightBldg.Text = "Rent &building..."; + this.menuItem_varHeightBldg.Text = "Rental &building..."; //! this.menuItem_varHeightBldg.Text = "貸しビル(&B)..."; // // menuItem_land // this.menuItem_land.Index = 3; - this.menuItem_land.Text = "&Surface..."; + this.menuItem_land.Text = "Terrain object&s..."; //! this.menuItem_land.Text = "地表(&S)..."; // // menuItem_landProperty @@ -692,13 +692,13 @@ // menuItem_enableSoundEffect // this.menuItem_enableSoundEffect.Index = 0; - this.menuItem_enableSoundEffect.Text = "E&nable"; + this.menuItem_enableSoundEffect.Text = "O&n"; //! this.menuItem_enableSoundEffect.Text = "あり(&N)"; // // menuItem_disableSoundEffect // this.menuItem_disableSoundEffect.Index = 1; - this.menuItem_disableSoundEffect.Text = "Disable(&F)"; + this.menuItem_disableSoundEffect.Text = "O&ff"; //! this.menuItem_disableSoundEffect.Text = "なし(&F)"; // // menuItem_option @@ -771,7 +771,7 @@ // menuItem_ClockStop // this.menuItem_ClockStop.Index = 0; - this.menuItem_ClockStop.Text = "&Stop"; + this.menuItem_ClockStop.Text = "&Pause"; //! this.menuItem_ClockStop.Text = "一時停止(&S)"; this.menuItem_ClockStop.Click += new System.EventHandler(this.menuItem_ClockStop_Click); // @@ -1384,7 +1384,7 @@ return; } - DialogResult res = MessageBox.Show(this,"Do you want to save the game and quit?", + DialogResult res = MessageBox.Show(this,"Do you want to quit without saving?", //! DialogResult res = MessageBox.Show(this,"ゲームを保存しないで終了しますか?", Application.ProductName, MessageBoxButtons.YesNo, Modified: trunk/FreeTrain/core/util/controls/ToolBarCustomizerUI.cs =================================================================== --- trunk/FreeTrain/core/util/controls/ToolBarCustomizerUI.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/util/controls/ToolBarCustomizerUI.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -31,8 +31,8 @@ } private ContextMenu createMenu() { - menuItems[0] = new MenuItem( "Dock to the left", new EventHandler(dockLeft) ); - menuItems[1] = new MenuItem( "Dock to the right", new EventHandler(dockRight) ); + menuItems[0] = new MenuItem( "Dock left", new EventHandler(dockLeft) ); + menuItems[1] = new MenuItem( "Dock right", new EventHandler(dockRight) ); menuItems[2] = new MenuItem( "Dock up", new EventHandler(dockTop) ); menuItems[3] = new MenuItem( "Dock down", new EventHandler(dockBottom) ); //! menuItems[0] = new MenuItem( "左にドッキング", new EventHandler(dockLeft) ); Modified: trunk/FreeTrain/core/views/map/MapView.cs =================================================================== --- trunk/FreeTrain/core/views/map/MapView.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/views/map/MapView.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -179,7 +179,7 @@ // menuItem_heightCut // this.menuItem_heightCut.Index = 1; - this.menuItem_heightCut.Text = "&Height cut"; + this.menuItem_heightCut.Text = "&Height cutting"; //! this.menuItem_heightCut.Text = "ヘイトカット(&H)"; this.menuItem_heightCut.Popup += new System.EventHandler(this.menuItem_heightCut_Popup); // @@ -417,7 +417,7 @@ //! this.Text = "なし"; } else { int h = height - World.world.waterLevel; - if( h==0 ) this.Text = "Land"; + if( h==0 ) this.Text = "Water level"; //! if( h==0 ) this.Text = "地表"; else this.Text = h.ToString(); } Modified: trunk/FreeTrain/core/world/Time.cs =================================================================== --- trunk/FreeTrain/core/world/Time.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/world/Time.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -32,7 +32,7 @@ /// <summary> Returns a string formatter for the display. </summary> public string displayString { get { - return string.Format("{0}-{1}-{2} ({3}) {4,2:d}:{5,1:d}0", + return string.Format("Year {0} Month {1} Day {2} ({3}) {4,2:d}:{5,1:d}0", //! return string.Format("{0}年{1}月{2}日({3}) {4,2:d}時{5,1:d}0分", year, month, day, dayOfWeekChar(dayOfWeek), Modified: trunk/FreeTrain/core/world/World.cs =================================================================== --- trunk/FreeTrain/core/world/World.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/world/World.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -63,15 +63,15 @@ TimeLength.fromHours(1) ); // for test - new Train( rootTrainGroup, "3 cars high-speed formation",3, + new Train( rootTrainGroup, "3 car high-speed formation",3, //! new Train( rootTrainGroup, "3両高速編成",3, (TrainContribution)Core.plugins.getContribution("{3983B298-ADB1-4905-94E5-03B7AAE5A221}"), SimpleTrainControllerImpl.theInstance ); - new Train( rootTrainGroup, "5 cars medium-speed formation",5, + new Train( rootTrainGroup, "5 car medium-speed formation",5, //! new Train( rootTrainGroup, "5両中速編成",5, (TrainContribution)Core.plugins.getContribution("{2C6F6C72-FA4B-4941-84C1-57553C8A5C2A}"), SimpleTrainControllerImpl.theInstance ); - new Train( rootTrainGroup, "7 cars low-speed formation",7, + new Train( rootTrainGroup, "7 car low-speed formation",7, //! new Train( rootTrainGroup, "7両低速編成",7, (TrainContribution)Core.plugins.getContribution("{F7134C8E-6B63-4780-AF16-90D33131CD07}"), SimpleTrainControllerImpl.theInstance ); Modified: trunk/FreeTrain/core/world/accounting/AccountSummaryWindow.cs =================================================================== --- trunk/FreeTrain/core/world/accounting/AccountSummaryWindow.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/world/accounting/AccountSummaryWindow.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -265,7 +265,7 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 24); this.label2.TabIndex = 2; - this.label2.Text = "Rent:"; + this.label2.Text = "Loans:"; //! this.label2.Text = "借入:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // Modified: trunk/FreeTrain/core/world/rail/TrainGroup.cs =================================================================== --- trunk/FreeTrain/core/world/rail/TrainGroup.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/world/rail/TrainGroup.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -10,7 +10,7 @@ public class TrainGroup : TrainItem { public TrainGroup(TrainGroup group,string name) : base(group,name) {} - public TrainGroup(TrainGroup group) : this(group,string.Format("Group{0}",iota++)) { + public TrainGroup(TrainGroup group) : this(group,string.Format("Group {0}",iota++)) { //! public TrainGroup(TrainGroup group) : this(group,string.Format("グループ{0}",iota++)) { controller = DelegationTrainControllerImpl.theInstance; } Modified: trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs =================================================================== --- trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/core/world/subsidiaries/MarketWindow.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -199,7 +199,7 @@ // tbGo // this.tbGo.ImageIndex = 2; - this.tbGo.Text = "Move"; + this.tbGo.Text = "Go"; //! this.tbGo.Text = "移動"; // // imageList @@ -232,7 +232,7 @@ // // columnHeader2 // - this.columnHeader2.Text = "Valuation"; + this.columnHeader2.Text = "Value"; //! this.columnHeader2.Text = "評価額"; this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.columnHeader2.Width = 100; Modified: trunk/FreeTrain/tools/core/framework/BGMManager.cs =================================================================== --- trunk/FreeTrain/tools/core/framework/BGMManager.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/framework/BGMManager.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -60,7 +60,8 @@ bgm.run(); } catch( Exception e ) { MessageBox.Show( MainWindow.mainWindow, - "\x8DĐ\xB6\x82ł\xAB\x82܂\xB9\x82\xF1\n"+e.StackTrace, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error ); + "Can not play back\n"+e.StackTrace, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error ); + \\! "再生できません¥n"+e.StackTrace, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error ); } } } @@ -81,7 +82,8 @@ this.contrib = contrib; this.owner = owner; if( contrib==null) - this.Text = "\x82Ȃ\xB5"; + this.Text = "Nothing"; + //! this.Text = "なし"; else this.Text = contrib.name; } @@ -104,7 +106,8 @@ public SelectMenuItem() : base() {} // for some reason Windows Forms need this constructor internal SelectMenuItem( BGMManager owner ) { this.owner = owner; - this.Text = "\x83t\x83@\x83C\x83\x8B\x82\xA9\x82\xE7\x91I\x91\xF0(&S)..."; + this.Text = "&Select from file..."; + //! this.Text = "ファイルから選択(&S)..."; } protected override void OnClick(EventArgs e) { Modified: trunk/FreeTrain/tools/core/framework/ConfigDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/framework/ConfigDialog.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/framework/ConfigDialog.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -9,7 +9,7 @@ namespace freetrain.framework { /// <summary> - /// ConfigDialog \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// ConfigDialog の概要の説明です。 /// </summary> public class ConfigDialog : System.Windows.Forms.Form { @@ -55,8 +55,8 @@ #region Windows Form Designer generated code /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -96,7 +96,8 @@ this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(80, 24); this.buttonCancel.TabIndex = 1; - this.buttonCancel.Text = "\xB7\xACݾ\xD9(&C)"; + this.buttonCancel.Text = "&Cancel"; + //! this.buttonCancel.Text = "キャンセル(&C)"; // // groupBox1 // @@ -109,7 +110,8 @@ this.groupBox1.Size = new System.Drawing.Size(392, 80); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; - this.groupBox1.Text = "\x83G\x83\x89\x81[\x83\x81\x83b\x83Z\x81[\x83W\x82̕\\x8E\xA6"; + this.groupBox1.Text = "Display error messages"; + //! this.groupBox1.Text = "エラーメッセージの表示"; // // label1 // @@ -117,7 +119,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(96, 16); this.label1.TabIndex = 3; - this.label1.Text = "\x95\\x8E\xA6\x8E\x9E\x8AԁF"; + this.label1.Text = "Display time:"; + //! this.label1.Text = "表示時間:"; // // msgStatusLength // @@ -135,7 +138,8 @@ this.radioStatus.Name = "radioStatus"; this.radioStatus.Size = new System.Drawing.Size(144, 16); this.radioStatus.TabIndex = 1; - this.radioStatus.Text = "\x83X\x83e\x81[\x83^\x83X\x83o\x81[\x82ɕ\\x8E\xA6"; + this.radioStatus.Text = "Display in status bar"; + //! this.radioStatus.Text = "ステータスバーに表示"; this.radioStatus.CheckedChanged += new System.EventHandler(this.onRadioMsgStyle); // // radioMsgBox @@ -145,7 +149,8 @@ this.radioMsgBox.Name = "radioMsgBox"; this.radioMsgBox.Size = new System.Drawing.Size(144, 16); this.radioMsgBox.TabIndex = 0; - this.radioMsgBox.Text = "\x83\x81\x83b\x83Z\x81[\x83W\x83{\x83b\x83N\x83X\x82\xF0\x95\\x8E\xA6"; + this.radioMsgBox.Text = "Display message box"; + //! this.radioMsgBox.Text = "メッセージボックスを表示"; this.radioMsgBox.CheckedChanged += new System.EventHandler(this.onRadioMsgStyle); // // drawStationNames @@ -155,7 +160,8 @@ this.drawStationNames.Name = "drawStationNames"; this.drawStationNames.Size = new System.Drawing.Size(168, 16); this.drawStationNames.TabIndex = 3; - this.drawStationNames.Text = "\x89w\x82̖\xBC\x91O\x82\xF0\x89\xE6\x96ʂɕ\\x8E\xA6"; + this.drawStationNames.Text = "Display station names"; + //! this.drawStationNames.Text = "駅の名前を画面に表示"; // // showBoundingBox // @@ -164,7 +170,8 @@ this.showBoundingBox.Name = "showBoundingBox"; this.showBoundingBox.Size = new System.Drawing.Size(168, 16); this.showBoundingBox.TabIndex = 4; - this.showBoundingBox.Text = "\x95`\x89\xE6\x94͈͂\xF0\x95\\x8E\xA6(\x83f\x83o\x83b\x83O)"; + this.showBoundingBox.Text = "Display drawing range (debug)"; + //! this.showBoundingBox.Text = "描画範囲を表示(デバッグ)"; // // hideTrees // @@ -173,20 +180,25 @@ this.hideTrees.Name = "hideTrees"; this.hideTrees.Size = new System.Drawing.Size(168, 16); this.hideTrees.TabIndex = 4; - this.hideTrees.Text = "\x8E\xF7\x96̕`\x89\xE6\x82\xF0\x8Fȗ\xAA"; + this.hideTrees.Text = "Do not display trees"; + //! this.hideTrees.Text = "樹木の描画を省略"; // // comboSurfaceAlloc // this.comboSurfaceAlloc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSurfaceAlloc.Items.AddRange(new object[] { - "\x8E\xA9\x93\xAE\x93I\x82ɔ\xBB\x92f\x82\xB7\x82\xE9", - "\x83r\x83f\x83I\x83\x81\x83\x82\x83\x8A\x82Ɍ\xC0\x92肷\x82\xE9", - "\x83V\x83X\x83e\x83\x80\x83\x81\x83\x82\x83\x8A\x82Ɍ\xC0\x92肷\x82\xE9"}); + "Decide automatically", + "Limit to VRAM", + "Limit to system RAM"}); + //! "自動的に判断する", + //! "ビデオメモリに限定する", + //! "システムメモリに限定する"}); this.comboSurfaceAlloc.Location = new System.Drawing.Point(184, 182); this.comboSurfaceAlloc.Name = "comboSurfaceAlloc"; this.comboSurfaceAlloc.Size = new System.Drawing.Size(200, 20); this.comboSurfaceAlloc.TabIndex = 5; - this.toolTip.SetToolTip(this.comboSurfaceAlloc, "\x95`\x89悪\x92x\x82\xA9\x82\xC1\x82\xBD\x82\xE8\x83G\x83\x89\x81[\x82\xAA\x82ł\xE9\x82悤\x82Ȃ\xE7\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B"); + this.toolTip.SetToolTip(this.comboSurfaceAlloc, "Change if drawing is slow and causing errors."); + //! this.toolTip.SetToolTip(this.comboSurfaceAlloc, "描画が遅かったりエラーがでるようなら変更してください。"); // // label2 // @@ -194,9 +206,11 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(160, 16); this.label2.TabIndex = 6; - this.label2.Text = "\x83I\x83t\x83X\x83N\x83\x8A\x81[\x83\x93\x83T\x81[\x83t\x83F\x83X\x82̊m\x95ہF"; + this.label2.Text = "Cache offscreen surfaces"; + //! this.label2.Text = "オフスクリーンサーフェスの確保:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.toolTip.SetToolTip(this.label2, "\x95`\x89悪\x92x\x82\xA9\x82\xC1\x82\xBD\x82\xE8\x83G\x83\x89\x81[\x82\xAA\x82ł\xE9\x82悤\x82Ȃ\xE7\x95ύX\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B"); + this.toolTip.SetToolTip(this.label2, "Change if drawing is slow and causing errors."); + //! this.toolTip.SetToolTip(this.label2, "描画が遅かったりエラーがでるようなら変更してください。"); // // ConfigDialog // @@ -218,7 +232,8 @@ this.Name = "ConfigDialog"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "FreeTrain\x82̐ݒ\xE8"; + this.Text = "FreeTrain settings"; + //! this.Text = "FreeTrainの設定"; this.groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.msgStatusLength)).EndInit(); this.ResumeLayout(false); Modified: trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs =================================================================== --- trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -37,13 +37,13 @@ base.Icon = SystemIcons.Error; icon.Image = SystemIcons.Error.ToBitmap(); - detail.Text = e.Message + "\x81_n" + e.StackTrace; + detail.Text = e.Message + "\n" + e.StackTrace; while(true) { e = e.InnerException; if(e==null) break; - detail.Text = detail.Text + "\x81_n" + e.Message + "\x81_n" + e.StackTrace; + detail.Text = detail.Text + "\n" + e.Message + "\n" + e.StackTrace; } detail.Select(0,0); @@ -112,7 +112,8 @@ this.msg.Name = "msg"; this.msg.Size = new System.Drawing.Size(312, 16); this.msg.TabIndex = 1; - this.msg.Text = "\x83G\x83\x89\x81[\x82\xAA\x94\xAD\x90\xB6\x82\xB5\x82܂\xB5\x82\xBD"; + this.msg.Text = "An error has occurred"; + //! this.msg.Text = "エラーが発生しました"; // // linkLabel1 // @@ -125,7 +126,8 @@ this.linkLabel1.TabStop = true; this.linkLabel1.TargetUrl = "http://www.kohsuke.org/freetrain/wiki/pukiwiki.php?%A5%D0%A5%B0%CA%F3%B9%F0%A4%CE" + "%BC%EA%BD%E7"; - this.linkLabel1.Text = "\x83o\x83O\x82\xF0\x95\xB7\x82\xE9"; + this.linkLabel1.Text = "Report a bug"; + //! this.linkLabel1.Text = "バグを報告する"; this.linkLabel1.TextAlign = System.Drawing.ContentAlignment.TopRight; // // ErrorMessageBox @@ -141,7 +143,8 @@ this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ErrorMessageBox"; - this.Text = "\x83G\x83\x89\x81["; + this.Text = "Error"; + //! this.Text = "エラー"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/tools/core/framework/MainWindow.cs =================================================================== --- trunk/FreeTrain/tools/core/framework/MainWindow.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/framework/MainWindow.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -325,8 +325,8 @@ #region Windows Form Designer generated code /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -427,14 +427,16 @@ this.statusBar_Controller.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents; this.statusBar_Controller.MinWidth = 0; this.statusBar_Controller.Text = "-"; - this.statusBar_Controller.ToolTipText = "\x8C\xBB\x8D݂̃\x82\x81[\x83h"; + this.statusBar_Controller.ToolTipText = "Current mode"; + //! this.statusBar_Controller.ToolTipText = "現在のモード"; this.statusBar_Controller.Width = 21; // // statusBar_Time // this.statusBar_Time.Alignment = System.Windows.Forms.HorizontalAlignment.Center; this.statusBar_Time.Text = "date/time"; - this.statusBar_Time.ToolTipText = "\x8C\xBB\x8D݂̎\x9E\x8D\x8F"; + this.statusBar_Time.ToolTipText = "Current time"; + //! this.statusBar_Time.ToolTipText = "現在の時刻"; this.statusBar_Time.Width = 160; // // MainMenu @@ -461,22 +463,26 @@ this.mruMenuItem, this.menuItem1, this.menuQuit}); - this.menuItem_file.Text = "\x83t\x83@\x83C\x83\x8B(&F)"; + this.menuItem_file.Text = "&File"; + //! this.menuItem_file.Text = "ファイル(&F)"; // // menuItem_File_New // this.menuItem_File_New.Index = 0; - this.menuItem_File_New.Text = "\x90V\x8BK\x8D쐬&(N)..."; + this.menuItem_File_New.Text = "&New..."; + //! this.menuItem_File_New.Text = "新規作成&(N)..."; // // MenuItem_File_Open // this.MenuItem_File_Open.Index = 1; - this.MenuItem_File_Open.Text = "\x8AJ\x82\xAD(&O)..."; + this.MenuItem_File_Open.Text = "&Open..."; + //! this.MenuItem_File_Open.Text = "開く(&O)..."; // // MenuItem_File_Save // this.MenuItem_File_Save.Index = 2; - this.MenuItem_File_Save.Text = "\x95ۑ\xB6(&S)..."; + this.MenuItem_File_Save.Text = "&Save..."; + //! this.MenuItem_File_Save.Text = "保存(&S)..."; // // menuItem2 // @@ -486,7 +492,8 @@ // menuItem_listPlugins // this.menuItem_listPlugins.Index = 4; - this.menuItem_listPlugins.Text = "\x83v\x83\x89\x83O\x83C\x83\x93\x88ꗗ(&P)..."; + this.menuItem_listPlugins.Text = "&Plugin list..."; + //! this.menuItem_listPlugins.Text = "プラグイン一覧(&P)..."; // // menuItem3 // @@ -496,7 +503,8 @@ // mruMenuItem // this.mruMenuItem.Index = 6; - this.mruMenuItem.Text = "(\x8Dŋߎg\x82\xED\x82ꂽ\x83t\x83@\x83C\x83\x8B)"; + this.mruMenuItem.Text = "(Recently used files)"; + //! this.mruMenuItem.Text = "(最近使われたファイル)"; // // menuItem1 // @@ -507,7 +515,8 @@ // this.menuQuit.Index = 8; this.menuQuit.Shortcut = System.Windows.Forms.Shortcut.CtrlQ; - this.menuQuit.Text = "\x8FI\x97\xB9(&Q)"; + this.menuQuit.Text = "&Quit"; + //! this.menuQuit.Text = "終了(&Q)"; // // menuItem_view // @@ -517,19 +526,22 @@ this.menuItem_balanceSheet}); this.menuItem_view.MergeOrder = 1; this.menuItem_view.MergeType = System.Windows.Forms.MenuMerge.MergeItems; - this.menuItem_view.Text = "\x95\\x8E\xA6(&V)"; + this.menuItem_view.Text = "&View"; + //! this.menuItem_view.Text = "表示(&V)"; // // MenuItem_OpenMap // this.MenuItem_OpenMap.Index = 0; this.MenuItem_OpenMap.Shortcut = System.Windows.Forms.Shortcut.CtrlM; - this.MenuItem_OpenMap.Text = "\x83}\x83b\x83v(&M)"; + this.MenuItem_OpenMap.Text = "&Map"; + //! this.MenuItem_OpenMap.Text = "マップ(&M)"; this.MenuItem_OpenMap.Click += new System.EventHandler(this.MenuItem_OpenMap_Click); // // menuItem_balanceSheet // this.menuItem_balanceSheet.Index = 1; - this.menuItem_balanceSheet.Text = "\x83o\x83\x89\x83\x93\x83X\x83V\x81[\x83g(&B)"; + this.menuItem_balanceSheet.Text = "&Balance sheet"; + //! this.menuItem_balanceSheet.Text = "バランスシート(&B)"; // // menuItem_rail // @@ -545,32 +557,38 @@ this.menuItem_TrainTrading, this.menuItem4}); this.menuItem_rail.MergeOrder = 2; - this.menuItem_rail.Text = "\x93S\x93\xB9(&R)"; + this.menuItem_rail.Text = "&Rail"; + //! this.menuItem_rail.Text = "鉄道(&R)"; // // menuItem_RailRoadConstruction // this.menuItem_RailRoadConstruction.Index = 0; - this.menuItem_RailRoadConstruction.Text = "\x90\xFC\x98H\x8DH\x8E\x96(&R)..."; + this.menuItem_RailRoadConstruction.Text = "Lay &rail..."; + //! this.menuItem_RailRoadConstruction.Text = "線路工事(&R)..."; // // menuItem_SlopeRailRoad // this.menuItem_SlopeRailRoad.Index = 1; - this.menuItem_SlopeRailRoad.Text = "\x8C\xF9\x94z\x8DH\x8E\x96(&S)..."; + this.menuItem_SlopeRailRoad.Text = "Lay &slope..."; + //! this.menuItem_SlopeRailRoad.Text = "勾配工事(&S)..."; // // menuItem_Platform // this.menuItem_Platform.Index = 2; - this.menuItem_Platform.Text = "\x89w\x8DH\x8E\x96(&A)..."; + this.menuItem_Platform.Text = "Build st&ation..."; + //! this.menuItem_Platform.Text = "駅工事(&A)..."; // // menuItem_stationPassageway // this.menuItem_stationPassageway.Index = 3; - this.menuItem_stationPassageway.Text = "\x8Cא\xFC\x8B\xB4(&P)..."; + this.menuItem_stationPassageway.Text = "Over&pass..."; + //! this.menuItem_stationPassageway.Text = "跨線橋(&P)..."; // // menuItem_railStationary // this.menuItem_railStationary.Index = 4; - this.menuItem_railStationary.Text = "\x83A\x83N\x83Z\x83T\x83\x8A(&C)..."; + this.menuItem_railStationary.Text = "A&ccesories..."; + //! this.menuItem_railStationary.Text = "アクセサリ(&C)..."; // // menuItem5 // @@ -580,12 +598,14 @@ // menuItem_TrainPlacement // this.menuItem_TrainPlacement.Index = 6; - this.menuItem_TrainPlacement.Text = "\x8Eԗ\xBC\x94z\x92u(&T)..."; + this.menuItem_TrainPlacement.Text = "Place &train..."; + //! this.menuItem_TrainPlacement.Text = "車両配置(&T)..."; // // menuItem_TrainTrading // this.menuItem_TrainTrading.Index = 7; - this.menuItem_TrainTrading.Text = "\x8Eԗ\xBC\x8Dw\x93\xFC(&B)..."; + this.menuItem_TrainTrading.Text = "&Buy trains..."; + //! this.menuItem_TrainTrading.Text = "車両購入(&B)..."; // // menuItem4 // @@ -596,7 +616,8 @@ // this.menuItem_road.Index = 3; this.menuItem_road.MergeOrder = 3; - this.menuItem_road.Text = "\x93\xB9\x98H(&O)"; + this.menuItem_road.Text = "R&oad"; + //! this.menuItem_road.Text = "道路(&O)"; // // menuItem_construction // @@ -608,32 +629,38 @@ this.menuItem_land, this.menuItem_landProperty}); this.menuItem_construction.MergeOrder = 4; - this.menuItem_construction.Text = "\x8DH\x8E\x96(&C)"; + this.menuItem_construction.Text = "&Construction"; + //! this.menuItem_construction.Text = "工事(&C)"; // // menuItem_struct // this.menuItem_struct.Index = 0; - this.menuItem_struct.Text = "\x8C\x9A\x95\xA8\x82̍H\x8E\x96(\x89\xBC)..."; + this.menuItem_struct.Text = "Building construction..."; + //! this.menuItem_struct.Text = "建物の工事(仮)..."; // // menuItem_terrain // this.menuItem_terrain.Index = 1; - this.menuItem_terrain.Text = "\x90\xAE\x92n(\x89\xBC)(&M)..."; + this.menuItem_terrain.Text = "&Modify terrain..."; + //! this.menuItem_terrain.Text = "整地(仮)(&M)..."; // // menuItem_varHeightBldg // this.menuItem_varHeightBldg.Index = 2; - this.menuItem_varHeightBldg.Text = "\x91݂\xB5\x83r\x83\x8B(&B)..."; + this.menuItem_varHeightBldg.Text = "Rental &buildings..."; + //! this.menuItem_varHeightBldg.Text = "貸しビル(&B)..."; // // menuItem_land // this.menuItem_land.Index = 3; - this.menuItem_land.Text = "\x92n\x95\(&S)..."; + this.menuItem_land.Text = "Terrain object&s..."; + //! this.menuItem_land.Text = "地表(&S)..."; // // menuItem_landProperty // this.menuItem_landProperty.Index = 4; - this.menuItem_landProperty.Text = "\x93y\x92n\x94\x84\x94\x83(&L)..."; + this.menuItem_landProperty.Text = "Trade &land..."; + //! this.menuItem_landProperty.Text = "土地売買(&L)..."; // // menuItem_config // @@ -643,12 +670,14 @@ this.menuItem_soundEffect, this.menuItem_option}); this.menuItem_config.MergeOrder = 5; - this.menuItem_config.Text = "\x90ݒ\xE8(&C)"; + this.menuItem_config.Text = "&Configure"; + //! this.menuItem_config.Text = "設定(&C)"; // // menuItem_music // this.menuItem_music.Index = 0; - this.menuItem_music.Text = "\x89\xB9\x8Ay(&M)"; + this.menuItem_music.Text = "&Music"; + //! this.menuItem_music.Text = "音楽(&M)"; // // menuItem_soundEffect // @@ -656,23 +685,27 @@ this.menuItem_soundEffect.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem_enableSoundEffect, this.menuItem_disableSoundEffect}); - this.menuItem_soundEffect.Text = "\x8C\xF8\x89ʉ\xB9(&S)"; + this.menuItem_soundEffect.Text = "&Sound effects"; + //! this.menuItem_soundEffect.Text = "効果音(&S)"; this.menuItem_soundEffect.Popup += new System.EventHandler(this.onMenuPopup); // // menuItem_enableSoundEffect // this.menuItem_enableSoundEffect.Index = 0; - this.menuItem_enableSoundEffect.Text = "\x82\xA0\x82\xE8(&N)"; + this.menuItem_enableSoundEffect.Text = "O&n"; + //! this.menuItem_enableSoundEffect.Text = "あり(&N)"; // // menuItem_disableSoundEffect // this.menuItem_disableSoundEffect.Index = 1; - this.menuItem_disableSoundEffect.Text = "\x82Ȃ\xB5(&F)"; + this.menuItem_disableSoundEffect.Text = "O&ff"; + //! this.menuItem_disableSoundEffect.Text = "なし(&F)"; // // menuItem_option // this.menuItem_option.Index = 2; - this.menuItem_option.Text = "\x83I\x83v\x83V\x83\x87\x83\x93(&O)..."; + this.menuItem_option.Text = "&Options..."; + //! this.menuItem_option.Text = "オプション(&O)..."; // // menuItem_help // @@ -681,17 +714,20 @@ this.menuItem_onlineHelp, this.menuItem_About}); this.menuItem_help.MergeOrder = 6; - this.menuItem_help.Text = "\x83w\x83\x8B\x83v(&H)"; + this.menuItem_help.Text = "&Help"; + //! this.menuItem_help.Text = "ヘルプ(&H)"; // // menuItem_onlineHelp // this.menuItem_onlineHelp.Index = 0; - this.menuItem_onlineHelp.Text = "\x83I\x83\x93\x83\x89\x83C\x83\x93\x83w\x83\x8B\x83v(&O)"; + this.menuItem_onlineHelp.Text = "&Online help"; + //! this.menuItem_onlineHelp.Text = "オンラインヘルプ(&O)"; // // menuItem_About // this.menuItem_About.Index = 1; - this.menuItem_About.Text = "FreeTrain\x82ɂ\xA2\x82\xC4(&A)..."; + this.menuItem_About.Text = "&About FreeTrain..."; + //! this.menuItem_About.Text = "FreeTrainについて(&A)..."; // // toolBar1 // @@ -720,7 +756,8 @@ // this.tbTimer.DropDownMenu = this.clockMenu; this.tbTimer.Style = System.Windows.Forms.ToolBarButtonStyle.DropDownButton; - this.tbTimer.Text = "\x8E\x9E\x8A\xD4"; + this.tbTimer.Text = "Timer"; + //! this.tbTimer.Text = "時間"; // // clockMenu // @@ -734,31 +771,36 @@ // menuItem_ClockStop // this.menuItem_ClockStop.Index = 0; - this.menuItem_ClockStop.Text = "\x88ꎞ\x92\xE2\x8E~(&S)"; + this.menuItem_ClockStop.Text = "&Pause"; + //! this.menuItem_ClockStop.Text = "一時停止(&S)"; this.menuItem_ClockStop.Click += new System.EventHandler(this.menuItem_ClockStop_Click); // // menuItem_ClockGo1 // this.menuItem_ClockGo1.Index = 1; - this.menuItem_ClockGo1.Text = "\x82\xE4\x82\xC1\x82\xAD\x82\xE8(&S)"; + this.menuItem_ClockGo1.Text = "&Slow"; + //! this.menuItem_ClockGo1.Text = "ゆっくり(&S)"; this.menuItem_ClockGo1.Click += new System.EventHandler(this.menuItem_ClockGo1_Click); // // menuItem_ClockGo2 // this.menuItem_ClockGo2.Index = 2; - this.menuItem_ClockGo2.Text = "\x95\x81\x92\xCA(&N)"; + this.menuItem_ClockGo2.Text = "&Normal"; + //! this.menuItem_ClockGo2.Text = "普通(&N)"; this.menuItem_ClockGo2.Click += new System.EventHandler(this.menuItem_ClockGo2_Click); // // menuItem_ClockGo3 // this.menuItem_ClockGo3.Index = 3; - this.menuItem_ClockGo3.Text = "\x8D\x82\x91\xAC(&F)"; + this.menuItem_ClockGo3.Text = "&Fast"; + //! this.menuItem_ClockGo3.Text = "高速(&F)"; this.menuItem_ClockGo3.Click += new System.EventHandler(this.menuItem_ClockGo3_Click); // // menuItem_ClockGo4 // this.menuItem_ClockGo4.Index = 4; - this.menuItem_ClockGo4.Text = "\x8Dō\x82\x91\xAC(&U)"; + this.menuItem_ClockGo4.Text = "&Ultra"; + //! this.menuItem_ClockGo4.Text = "最高速(&U)"; this.menuItem_ClockGo4.Click += new System.EventHandler(this.menuItem_ClockGo4_Click); // // tbRailRoad @@ -833,7 +875,7 @@ #endregion /// <summary> - /// \x83A\x83v\x83\x8A\x83P\x81[\x83V\x83\x87\x83\x93\x82̃\x81\x83C\x83\x93 \x83G\x83\x93\x83g\x83\x8A \x83|\x83C\x83\x93\x83g\x82ł\xB7\x81B + /// アプリケーションのメイン エントリ ポイントです。 /// </summary> [STAThread] static void Main() { @@ -1009,7 +1051,8 @@ /// <returns>true if the current world can be safely destroyed.</returns> public bool saveIfNecessary() { if(World.world!=null) { - switch(MessageBox.Show(this,"\x8C\xBB\x8D݂̃Q\x81[\x83\x80\x82\xF0\x95ۑ\xB6\x82\xB5\x82܂\xB7\x82\xA9\x81H","FreeTrain",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question )) { + switch(MessageBox.Show(this,"Do you want to save the current game?","FreeTrain",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question )) { + //! switch(MessageBox.Show(this,"現在のゲームを保存しますか?","FreeTrain",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question )) { case DialogResult.Yes: if(saveGame()!=DialogResult.OK) return false; // if the user didn't save the game, abort. @@ -1024,7 +1067,8 @@ return true; // OK to proceed } - private const string filterString = "\x83Q\x81[\x83\x80\x83f\x81[\x83^ (*.ftgd)|*.ftgd|\x83Q\x81[\x83\x80\x83f\x81[\x83^(\x8C݊\xB7\x8C`\x8E\xAE) (*.ftgt)|*.ftgt"; + private const string filterString = "Game data (*.ftgd)|*.ftgd|Game data (compatibility format) (*.ftgt)|*.ftgt"; + //! private const string filterString = "ゲームデータ (*.ftgd)|*.ftgd|ゲームデータ(互換形式) (*.ftgt)|*.ftgt"; /// <summary> /// Saves the current game. /// </summary> @@ -1112,7 +1156,8 @@ setWorld( World.load(f,stream) ); stream.Close(); } catch( Exception e ) { - ErrorMessageBox.show(this,"\x83\x8D\x81[\x83h\x83G\x83\x89\x81[",e); + ErrorMessageBox.show(this,"Loading error",e); + //! ErrorMessageBox.show(this,"ロードエラー",e); } stream.Close(); } @@ -1339,7 +1384,8 @@ return; } - DialogResult res = MessageBox.Show(this,"\x83Q\x81[\x83\x80\x82\xF0\x95ۑ\xB6\x82\xB5\x82Ȃ\xA2\x82ŏI\x97\xB9\x82\xB5\x82܂\xB7\x82\xA9\x81H", + DialogResult res = MessageBox.Show(this,"Do you want to quit without saving?", + //! DialogResult res = MessageBox.Show(this,"ゲームを保存しないで終了しますか?", Application.ProductName, MessageBoxButtons.YesNo, MessageBoxIcon.Question, Modified: trunk/FreeTrain/tools/core/util/controls/ToolBarCustomizerUI.cs =================================================================== --- trunk/FreeTrain/tools/core/util/controls/ToolBarCustomizerUI.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/util/controls/ToolBarCustomizerUI.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -31,10 +31,14 @@ } private ContextMenu createMenu() { - menuItems[0] = new MenuItem( "\x8D\xB6\x82Ƀh\x83b\x83L\x83\x93\x83O", new EventHandler(dockLeft) ); - menuItems[1] = new MenuItem( "\x89E\x82Ƀh\x83b\x83L\x83\x93\x83O", new EventHandler(dockRight) ); - menuItems[2] = new MenuItem( "\x8F\xE3\x82Ƀh\x83b\x83L\x83\x93\x83O", new EventHandler(dockTop) ); - menuItems[3] = new MenuItem( "\x89\xBA\x82Ƀh\x83b\x83L\x83\x93\x83O", new EventHandler(dockBottom) ); + menuItems[0] = new MenuItem( "Dock left", new EventHandler(dockLeft) ); + menuItems[1] = new MenuItem( "Dock right", new EventHandler(dockRight) ); + menuItems[2] = new MenuItem( "Dock up", new EventHandler(dockTop) ); + menuItems[3] = new MenuItem( "Dock down", new EventHandler(dockBottom) ); + //! menuItems[0] = new MenuItem( "左にドッキング", new EventHandler(dockLeft) ); + //! menuItems[1] = new MenuItem( "右にドッキング", new EventHandler(dockRight) ); + //! menuItems[2] = new MenuItem( "上にドッキング", new EventHandler(dockTop) ); + //! menuItems[3] = new MenuItem( "下にドッキング", new EventHandler(dockBottom) ); foreach( MenuItem mi in menuItems ) mi.RadioCheck = true; Modified: trunk/FreeTrain/tools/core/util/docking/ContentEx.cs =================================================================== --- trunk/FreeTrain/tools/core/util/docking/ContentEx.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/util/docking/ContentEx.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -4,7 +4,7 @@ namespace freetrain.util.docking { /// <summary> - /// ContentEx \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// ContentEx の概要の説明です。 /// </summary> public class ContentEx : Content { Modified: trunk/FreeTrain/tools/core/views/AbstractView.cs =================================================================== --- trunk/FreeTrain/tools/core/views/AbstractView.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/views/AbstractView.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -6,7 +6,7 @@ namespace freetrain.views { /// <summary> - /// View\x82\xA9\x82\xE7\x83R\x83\x93\x83e\x83i\x82ɑ\xB7\x82\xE9\x83C\x83\x93\x83^\x81[\x83t\x83F\x81[\x83X + /// Viewからコンテナに対するインターフェース /// </summary> public interface IView { Modified: trunk/FreeTrain/tools/core/views/NullWeatherOverlay.cs =================================================================== --- trunk/FreeTrain/tools/core/views/NullWeatherOverlay.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/views/NullWeatherOverlay.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -5,7 +5,7 @@ namespace freetrain.views { /// <summary> - /// NullWeatherOverlay \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// NullWeatherOverlay の概要の説明です。 /// </summary> public sealed class NullWeatherOverlay : WeatherOverlay { Modified: trunk/FreeTrain/tools/core/views/QuarterViewDrawer.cs =================================================================== --- trunk/FreeTrain/tools/core/views/QuarterViewDrawer.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/views/QuarterViewDrawer.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -468,7 +468,8 @@ private static Color waterSurfaceDayColor = Color.FromArgb(0,114,188); - private static Font drawFont = new Font("\x82l\x82r \x82o\x83S\x83V\x83b\x83N", 10); + private static Font drawFont = new Font("MS PGothic", 10); + //! private static Font drawFont = new Font("MS Pゴシック", 10); private static SolidBrush drawBrush1 = new SolidBrush(Color.Black); private static SolidBrush drawBrush2 = new SolidBrush(Color.White); Modified: trunk/FreeTrain/tools/core/views/WeatherOverlayImpl.cs =================================================================== --- trunk/FreeTrain/tools/core/views/WeatherOverlayImpl.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/views/WeatherOverlayImpl.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -7,7 +7,7 @@ namespace freetrain.views { /// <summary> - /// WeatherOverlayImpl \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// WeatherOverlayImpl の概要の説明です。 /// </summary> public class WeatherOverlayImpl : WeatherOverlay { Modified: trunk/FreeTrain/tools/core/views/map/MapView.cs =================================================================== --- trunk/FreeTrain/tools/core/views/map/MapView.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/views/map/MapView.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -141,8 +141,8 @@ private System.ComponentModel.IContainer components; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -168,7 +168,8 @@ this.menuItem_heightCutWnd}); this.menuItem1.MergeOrder = 1; this.menuItem1.MergeType = System.Windows.Forms.MenuMerge.MergeItems; - this.menuItem1.Text = "\x95\\x8E\xA6(&V)"; + this.menuItem1.Text = "&View"; + //! this.menuItem1.Text = "表示(&V)"; // // menuItem4 // @@ -178,13 +179,15 @@ // menuItem_heightCut // this.menuItem_heightCut.Index = 1; - this.menuItem_heightCut.Text = "\x83w\x83C\x83g\x83J\x83b\x83g(&H)"; + this.menuItem_heightCut.Text = "&Height cut"; + //! this.menuItem_heightCut.Text = "ヘイトカット(&H)"; this.menuItem_heightCut.Popup += new System.EventHandler(this.menuItem_heightCut_Popup); // // menuItem_heightCutWnd // this.menuItem_heightCutWnd.Index = 2; - this.menuItem_heightCutWnd.Text = "\x83w\x83C\x83g\x83J\x83b\x83g\x83E\x83B\x83\x93\x83h\x83E"; + this.menuItem_heightCutWnd.Text = "Height cut window"; + //! this.menuItem_heightCutWnd.Text = "ヘイトカットウィンドウ"; this.menuItem_heightCutWnd.Click += new System.EventHandler(this.menuItem_heightCutWnd_Click); // // weatherTimer @@ -198,7 +201,8 @@ this.ClientSize = new System.Drawing.Size(432, 427); this.Menu = this.mainMenu; this.Name = "MapViewWindow"; - this.Text = "\x83}\x83b\x83v"; + this.Text = "Map"; + //! this.Text = "マップ"; } #endregion @@ -409,10 +413,12 @@ // this.Checked = ( height==owner.drawer.heightCutHeight ); if( height==World.world.size.z-1 ) { - this.Text = "\x82Ȃ\xB5"; + this.Text = "None"; + //! this.Text = "なし"; } else { int h = height - World.world.waterLevel; - if( h==0 ) this.Text = "\x92n\x95\"; + if( h==0 ) this.Text = "Water level"; + //! if( h==0 ) this.Text = "地表"; else this.Text = h.ToString(); } } Modified: trunk/FreeTrain/tools/core/world/Car.cs =================================================================== --- trunk/FreeTrain/tools/core/world/Car.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/world/Car.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -51,7 +51,7 @@ public CarState state { get { return _state; } } /// <summary> - /// \x8Eԗ\xBC\x82\xF0\x94z\x92u\x82\xB7\x82\xE9 + /// 車両を配置する /// </summary> public void place( Location loc, Direction dir ) { Debug.Assert(state.isUnplaced); @@ -59,7 +59,7 @@ } /// <summary> - /// \x8Eԗ\xBC\x82\xF0\x8C\xBB\x8D݈ʒu\x82\xA9\x82\xE7\x93P\x8B\x8E\x82\xB7\x82\xE9 + /// 車両を現在位置から撤去する /// </summary> public void remove() { Debug.Assert(!state.isUnplaced); Modified: trunk/FreeTrain/tools/core/world/Direction.cs =================================================================== --- trunk/FreeTrain/tools/core/world/Direction.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/world/Direction.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -8,13 +8,13 @@ namespace freetrain.world { /// <summary> - /// \x95\xFB\x8C\xFC\x81i\x82W\x95\xFB\x8C\xFC\x81B\x91\xAC\x93x\x82\xED\x82Ȃ\xA2\x81j + /// 方向(8方向。速度を伴わない) /// </summary> [Serializable] public sealed class Direction : ISerializable { /// <summary> - /// \x95\xFB\x8C\xFC\x83x\x83N\x83g\x83\x8B\x82\xA9\x82\xE7\x83I\x83u\x83W\x83F\x83N\x83g\x82\xE9 + /// 方向ベクトルからオブジェクトを得る /// </summary> public static Direction get( int x, int y ) { for( int i=0; i<directions.Length; i++ ) @@ -26,7 +26,7 @@ } /// <summary> - /// \x83C\x83\x93\x83f\x83b\x83N\x83X\x82\xA9\x82\xE7\x83I\x83u\x83W\x83F\x83N\x83g\x82\xE9 + /// インデックスからオブジェクトを得る /// </summary> public static Direction get( int idx ) { return directions[idx]; @@ -43,12 +43,12 @@ /// <summary> - /// \x83I\x83t\x83Z\x83b\x83g + /// オフセット /// </summary> public readonly int offsetX,offsetY; /// <summary> - /// \x95\\x8E\xA6\x97p\x82̖\xBC\x8F\xCC + /// 表示用の名称 /// </summary> public readonly string displayName; @@ -68,18 +68,18 @@ public bool isParallelToY { get { return (index%4)==0; } } /// <summary> - /// [0,8)\x82̃C\x83\x93\x83f\x83b\x83N\x83X\x81B + /// [0,8)のインデックス。 /// </summary> public readonly int index; /// <summary> - /// \x94\xBD\x8E\x9E\x8Cv\x89\xF1\x82\xE8\x82ɂS\x82T\x93x\x89\xF1\x93]\x82\xB5\x82\xBDDirection\x82\xE9 + /// 反時計回りに45度回転したDirectionを得る /// </summary> public Direction left { get { return directions[(index+7)%8]; } } public Direction left90 { get { return directions[(index+6)%8]; } } /// <summary> - /// \x8E\x9E\x8Cv\x89\xF1\x82\xE8\x82ɂS\x82T\x93x\x89\xF1\x93]\x82\xB5\x82\xBDDirection\x82\xE9 + /// 時計回りに45度回転したDirectionを得る /// </summary> public Direction right { get { return directions[(index+1)%8]; } } public Direction right90 { get { return directions[(index+2)%8]; } } @@ -88,8 +88,8 @@ public Direction opposite { get { return directions[(index+4)%8]; } } /// <summary> - /// \x82Q\x82\xCCDirection\x82̌\xF0\x8D\xB7\x8Ap\x82\xF0\x82S\x82T\x93x\x82̔{\x90\x94\x82œ\xBE\x82\xE9\x81B - /// \x96߂\xE8\x92l\x82\xCD[0,4]\x81B1\x82Ȃ\xE7\x82S\x82T\x93x\x82Ō\xF0\x8D\xB7\x81B + /// 2つのDirectionの交差角を45度の倍数で得る。 + /// 戻り値は[0,4]。1なら45度で交差。 /// </summary> public static int angle( Direction a, Direction b ) { int d = a.index - b.index; @@ -137,17 +137,25 @@ } /// <summary> - /// \x91\xB6\x8D݂\xB7\x82\xE9\x91S\x82ẴI\x83u\x83W\x83F\x83N\x83g\x81B\x96k\x82\xA9\x82玞\x8Cv\x89\xF1\x82\xE8 + /// 存在する全てのオブジェクト。北から時計回り /// </summary> public static readonly Direction[] directions = { - new Direction( 0,-1,"\x96k" ,0), - new Direction( 1,-1,"\x96k\x93\x8C",1), - new Direction( 1, 0, "\x93\x8C",2), - new Direction( 1, 1,"\x93쓌",3), - new Direction( 0, 1,"\x93\xEC" ,4), - new Direction(-1, 1,"\x93쐼",5), - new Direction(-1, 0, "\x90\xBC",6), - new Direction(-1,-1,"\x96k\x90\xBC",7) }; + new Direction( 0,-1,"North" ,0), + new Direction( 1,-1,"Northeast",1), + new Direction( 1, 0, "East",2), + new Direction( 1, 1,"Southeast",3), + new Direction( 0, 1,"South" ,4), + new Direction(-1, 1,"Southwest",5), + new Direction(-1, 0, "West",6), + new Direction(-1,-1,"Northwest",7) }; + //! new Direction( 0,-1,"北" ,0), + //! new Direction( 1,-1,"北東",1), + //! new Direction( 1, 0, "東",2), + //! new Direction( 1, 1,"南東",3), + //! new Direction( 0, 1,"南" ,4), + //! new Direction(-1, 1,"南西",5), + //! new Direction(-1, 0, "西",6), + //! new Direction(-1,-1,"北西",7) }; Modified: trunk/FreeTrain/tools/core/world/Location.cs =================================================================== --- trunk/FreeTrain/tools/core/world/Location.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/world/Location.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -9,7 +9,7 @@ namespace freetrain.world { /// <summary> - /// \x90\xA2\x8AE\x82ł̈ʒu\x82\xF0\x8E\xA6\x82\xB7\x83I\x83u\x83W\x83F\x83N\x83g + /// 世界での位置を示すオブジェクト /// </summary> [Serializable] public struct Location @@ -141,13 +141,13 @@ } /// <summary> - /// \x88ʒu\x82\xF0\x8E\x9D\x82\xBD\x82Ȃ\xA2\x82\xB1\x82Ƃ\xF0\x8E\xA6\x82\xB7\x93\xC1\x8E\xEA\x82Ȓl + /// 位置を持たないことを示す特殊な値 /// </summary> public static readonly Location UNPLACED = new Location( int.MinValue, int.MinValue, int.MinValue ); } /// <summary> - /// Location\x93\xAF\x8Em\x82̍\xB7\x95\xAA + /// Location同士の差分 /// </summary> [Serializable] public struct Distance Modified: trunk/FreeTrain/tools/core/world/Time.cs =================================================================== --- trunk/FreeTrain/tools/core/world/Time.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/world/Time.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -32,7 +32,8 @@ /// <summary> Returns a string formatter for the display. </summary> public string displayString { get { - return string.Format("{0}\x94N{1}\x8C\x8E{2}\x93\xFA({3}) {4,2:d}\x8E\x9E{5,1:d}0\x95\xAA", + return string.Format("Year {0} Month {1} Day {2} ({3}) {4,2:d}:{5,1:d}0", + //! return string.Format("{0}年{1}月{2}日({3}) {4,2:d}時{5,1:d}0分", year, month, day, dayOfWeekChar(dayOfWeek), hour, minutes/10 ); @@ -124,7 +125,8 @@ public static char dayOfWeekChar( int dow ) { - return "\x93\xFA\x8C\x8E\x89ΐ\x85\x96؋\xE0\x93y"[dow]; + return "Sun Mon Tue Wed Thu Fri Sat"[dow]; + //! return "日月火水木金土"[dow]; } public static TimeLength operator - ( Time ta, Time tb ) { Modified: trunk/FreeTrain/tools/core/world/Traffic.cs =================================================================== --- trunk/FreeTrain/tools/core/world/Traffic.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/world/Traffic.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -10,9 +10,9 @@ public delegate void TrafficVoxelHandler( TrafficVoxel v ); /// <summary> - /// \x90\xFC\x98H\x82⓹\x98H\x82Ȃǂɂ\xE6\x82\xC1\x82Đ\xE8\x97L\x82\xB3\x82\xEA\x82Ă\xA2\x82\xE9\x83u\x83\x8D\x83b\x83N + /// 線路や道路などによって占有されているブロック /// </summary> - /// TrafficOccupant\x82ɂ͐\xFC\x98H\x81E\x93\xB9\x98H\x81E\x82\xA8\x82\xE6\x82юԁi\x93d\x8EԂ\xE0\x82\xB5\x82\xAD\x82͎\xA9\x93\xAE\x8Eԁj\x82\xAA\x93\xFC\x82\xEA\x82\xE9 + /// TrafficOccupantには線路・道路・および車(電車もしくは自動車)が入れる [Serializable] public sealed class TrafficVoxel : AbstractVoxelImpl, Entity { Modified: trunk/FreeTrain/tools/core/world/World.cs =================================================================== --- trunk/FreeTrain/tools/core/world/World.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/world/World.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -18,19 +18,19 @@ namespace freetrain.world { /// <summary> - /// \x83Q\x81[\x83\x80\x83f\x81[\x83^\x82̃\x8B\x81[\x83g + /// ゲームデータのルート /// </summary> [Serializable] public sealed class World : IDeserializationCallback { /// <summary> - /// \x8C\xBB\x8D݃Q\x81[\x83\x80\x92\x86\x82̐\xA2\x8AE + /// 現在ゲーム中の世界 /// </summary> public static World world; /// <summary> - /// \x90\xA2\x8AE\x82̑傫\x82\xB3 (H,V,D) + /// 世界の大きさ (H,V,D) /// </summary> public readonly Distance size; @@ -40,11 +40,12 @@ public static event EventHandler onNewWorld; /// <summary> - /// \x8B\xF3\x82̐\xA2\x8AE\x82\xF0\x8D쐬 + /// 空の世界を作成 /// </summary> - /// <param name="sz">\x90\xA2\x8AE\x82̑傫\x82\xB3 (H,V,D)</param> + /// <param name="sz">世界の大きさ (H,V,D)</param> public World(Distance sz, int waterLevel) { - name = "\x82ȂȂ\xB5\x82\xB3\x82\xF1"; + name = "Nanashi-san"; + //! name = "ななしさん"; this.size = sz; this.waterLevel = (byte)waterLevel; voxels = new SparseVoxelArray(sz.x,sz.y,sz.z); @@ -62,13 +63,16 @@ TimeLength.fromHours(1) ); // for test - new Train( rootTrainGroup, "\x82R\x97\xBC\x8D\x82\x91\xAC\x95Ґ\xAC",3, + new Train( rootTrainGroup, "3 car high-speed formation",3, + //! new Train( rootTrainGroup, "3両高速編成",3, (TrainContribution)Core.plugins.getContribution("{3983B298-ADB1-4905-94E5-03B7AAE5A221}"), SimpleTrainControllerImpl.theInstance ); - new Train( rootTrainGroup, "\x82T\x97\xBC\x92\x86\x91\xAC\x95Ґ\xAC",5, + new Train( rootTrainGroup, "5 car medium-speed formation",5, + //! new Train( rootTrainGroup, "5両中速編成",5, (TrainContribution)Core.plugins.getContribution("{2C6F6C72-FA4B-4941-84C1-57553C8A5C2A}"), SimpleTrainControllerImpl.theInstance ); - new Train( rootTrainGroup, "\x82V\x97\xBC\x92ᑬ\x95Ґ\xAC",7, + new Train( rootTrainGroup, "7 car low-speed formation",7, + //! new Train( rootTrainGroup, "7両低速編成",7, (TrainContribution)Core.plugins.getContribution("{F7134C8E-6B63-4780-AF16-90D33131CD07}"), SimpleTrainControllerImpl.theInstance ); @@ -79,7 +83,7 @@ landValue = new development.LandValue(this); } - /// <summary>\x83Q\x81[\x83\x80\x82̖\xBC\x91O</summary> + /// <summary>ゲームの名前</summary> public string name; /// <summary>Clock object that controls the time of this world.</summary> @@ -189,11 +193,11 @@ /// <summary> - /// \x8Ew\x92肳\x82ꂽ\x88ʒu\x82ɂ\xA0\x82\xE9Voxel\x82\xF0\x8E擾 + /// 指定された位置にあるVoxelを取得 /// </summary> public Voxel this [ int x, int y, int z ] { get { - int xx = x-(size.y-1)/2; // x\x82̊\x8E\xB2\x82\xF0\x88ړ\xAE + int xx = x-(size.y-1)/2; // xの基準軸を移動 int h = (xx+y)>>1; int v = y-xx; @@ -350,7 +354,7 @@ // deprecated? public void remove( int x, int y, int z ) { - int xx = x-(size.y-1)/2; // x\x82̊\x8E\xB2\x82\xF0\x88ړ\xAE + int xx = x-(size.y-1)/2; // xの基準軸を移動 int h = (xx+y)/2; int v = y-xx; @@ -362,7 +366,7 @@ } /// <summary> - /// \x8Ew\x92肳\x82ꂽ\x88ʒu\x82ɂ\xA0\x82\xE9Voxel\x82\xF0\x8E擾 + /// 指定された位置にあるVoxelを取得 /// </summary> public Voxel this[ Location loc ] { get { @@ -374,7 +378,7 @@ } /// <summary> - /// HVD\x92P\x88ʌn\x82ł\xCCVoxel\x82\xF0\x8E擾 + /// HVD単位系でのVoxelを取得 /// </summary> public Voxel voxelHVD( int h, int v, int d ) { return voxels[h,v,d]; @@ -429,7 +433,7 @@ /// <summary> Root train group that holds all the trains in its descendants. </summary> - public readonly TrainGroup rootTrainGroup = new TrainGroup(null,"\x95ۗL\x82\xB7\x82\xE9\x97\xF1\x8E\xD4"); + public readonly TrainGroup rootTrainGroup = new TrainGroup(null,"保有する列車"); [Serializable] @@ -478,7 +482,7 @@ voxelOutlookListeners = new ArrayList(); } - // \x8Ew\x92肳\x82ꂽ\x83X\x83g\x83\x8A\x81[\x83\x80\x82\xA9\x82琢\x8AE\x82\xB3 + // 指定されたストリームから世界を復元 public static World load( IFormatter f, Stream stream ) { using( new util.LongTask() ) { // SoapFormatter f = new SoapFormatter(); @@ -489,7 +493,7 @@ } } - // \x8Ew\x92肳\x82ꂽ\x83X\x83g\x83\x8A\x81[\x83\x80\x82Ɏ\xA9\x95\xAA\x8E\xA9\x90g\x82\xF0\x8F\x91\x82\xAB\x8D\x9E\x82\xDE + // 指定されたストリームに自分自身を書き込む public void save( IFormatter f, Stream stream ) { using( new util.LongTask() ) { // currentBGM can be null, so serialize as an array Modified: trunk/FreeTrain/tools/core/world/accounting/AccountManager.cs =================================================================== --- trunk/FreeTrain/tools/core/world/accounting/AccountManager.cs 2007-04-07 05:32:10 UTC (rev 20) +++ trunk/FreeTrain/tools/core/world/accounting/AccountManager.cs 2007-04-07 13:12:07 UTC (rev 21) @@ -66,7 +66,8 @@ _liquidAssets -= delta; if( _liquidAssets <... [truncated message content] |
From: <him...@us...> - 2007-04-07 05:32:09
|
Revision: 20 http://freetrain.svn.sourceforge.net/freetrain/?rev=20&view=rev Author: himasaram Date: 2007-04-06 22:32:10 -0700 (Fri, 06 Apr 2007) Log Message: ----------- Partially translated tools/ Modified Paths: -------------- trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs trunk/FreeTrain/tools/core/controllers/rail/PlatformPropertyDialog.cs trunk/FreeTrain/tools/core/controllers/rail/RailRoadController.cs trunk/FreeTrain/tools/core/controllers/rail/SlopeRailRoadController.cs trunk/FreeTrain/tools/core/controllers/rail/StationPassagewayController.cs trunk/FreeTrain/tools/core/controllers/rail/StationPropertyDialog.cs trunk/FreeTrain/tools/core/controllers/rail/TrainControllerDialog.cs trunk/FreeTrain/tools/core/controllers/rail/TrainPlacementController.cs trunk/FreeTrain/tools/core/controllers/rail/TrainTrackingWindow.cs trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs trunk/FreeTrain/tools/core/controllers/structs/CommercialStructPlacementController.cs trunk/FreeTrain/tools/core/controllers/structs/FixedSizeStructController.cs trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs trunk/FreeTrain/tools/core/controllers/terrain/MountainController.cs trunk/FreeTrain/tools/core/framework/AboutDialog.cs Modified: trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/core/controllers/rail/PlatformPropertyDialog.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -309,7 +309,7 @@ } private void onRemove(object sender, System.EventArgs e) { - if(MessageBox.Show(this,"Will you remove this station?","Remove station",MessageBoxButtons.YesNo,MessageBoxIcon.Question) + if(MessageBox.Show(this,"Do you want to remove this station?","Remove station",MessageBoxButtons.YesNo,MessageBoxIcon.Question) //! if(MessageBox.Show(this,"このホームを撤去しますか?","ホームの撤去",MessageBoxButtons.YesNo,MessageBoxIcon.Question) == DialogResult.Yes) { platform.remove(); Modified: trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/core/controllers/rail/TrainTradingDialog.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -244,7 +244,7 @@ this.speed.Name = "speed"; this.speed.Size = new System.Drawing.Size(184, 16); this.speed.TabIndex = 11; - this.speed.Text = "Speed"; + this.speed.Text = "Rapid"; // this.speed.Text = "高速"; this.speed.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // @@ -365,7 +365,7 @@ this.name.Name = "name"; this.name.Size = new System.Drawing.Size(184, 16); this.name.TabIndex = 25; - this.name.Text = "123-kei ABCDEF"; + this.name.Text = "123 system ABCDEF"; //! this.name.Text = "123系 ABCDEF"; this.name.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // Modified: trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs =================================================================== --- trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/core/controllers/structs/StructPlacementController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -137,7 +137,7 @@ this.structType, this.preview}); this.Name = "StructPlacementController"; - this.Text = "Building construction (tentative) "; + this.Text = "Building construction (temporary) "; //! this.Text = "建物の工事(仮)"; this.ResumeLayout(false); Modified: trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs =================================================================== --- trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/core/controllers/structs/VarHeightBuildingController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -112,7 +112,7 @@ this.heightBox, this.label1}); this.Name = "VarHeightBuildingController"; - this.Text = "Building construction (tentative)"; + this.Text = "Building construction (temporary)"; //! this.Text = "建物の工事(仮)"; ((System.ComponentModel.ISupportInitialize)(this.heightBox)).EndInit(); this.ResumeLayout(false); Modified: trunk/FreeTrain/tools/core/controllers/rail/PlatformPropertyDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/PlatformPropertyDialog.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/PlatformPropertyDialog.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -10,7 +10,7 @@ namespace freetrain.world.rail { /// <summary> - /// PlatformPropertyDialog \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// PlatformPropertyDialog の概要の説明です。 /// </summary> public class PlatformPropertyDialog : Form { @@ -48,7 +48,7 @@ } /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing && components != null) @@ -71,13 +71,13 @@ private System.Windows.Forms.ComboBox hostList; private System.Windows.Forms.TextBox nameBox; /// <summary> - /// \x95K\x97v\x82ȃf\x83U\x83C\x83i\x95ϐ\x94\x82ł\xB7\x81B + /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -105,7 +105,8 @@ this.left.Name = "left"; this.left.Size = new System.Drawing.Size(96, 24); this.left.TabIndex = 7; - this.left.Text = "\x8D\xB6\x82ɐڑ\xB1(&L)"; + this.left.Text = "&Left connect"; + //! this.left.Text = "左に接続(&L)"; this.left.Click += new System.EventHandler(this.onLeft); // // right @@ -115,7 +116,8 @@ this.right.Name = "right"; this.right.Size = new System.Drawing.Size(96, 24); this.right.TabIndex = 8; - this.right.Text = "\x89E\x82ɐڑ\xB1(&R)"; + this.right.Text = "&Right connect"; + //! this.right.Text = "右に接続(&R)"; this.right.Click += new System.EventHandler(this.onRight); // // label1 @@ -124,7 +126,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(48, 16); this.label1.TabIndex = 1; - this.label1.Text = "\x96\xBC\x91O(&N):"; + this.label1.Text = "&Name:"; + //! this.label1.Text = "名前(&N):"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // nameBox @@ -145,7 +148,8 @@ this.groupFat.Size = new System.Drawing.Size(280, 48); this.groupFat.TabIndex = 999; this.groupFat.TabStop = false; - this.groupFat.Text = "\x90\xFC\x98H\x82Ƃ̐ڑ\xB1\x8DH\x8E\x96"; + this.groupFat.Text = "Connect tracks"; + //! this.groupFat.Text = "線路との接続工事"; // // OKbutton // @@ -166,7 +170,8 @@ this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(88, 24); this.cancelButton.TabIndex = 11; - this.cancelButton.Text = "\x83L\x83\x83\x83\x93\x83Z\x83\x8B(&C)"; + this.cancelButton.Text = "&Cancel"; + //! this.cancelButton.Text = "キャンセル(&C)"; // // label2 // @@ -174,7 +179,8 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(40, 16); this.label2.TabIndex = 3; - this.label2.Text = "\x89w(&S):"; + this.label2.Text = "&Station:"; + //! this.label2.Text = "駅(&S):"; this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // hostList @@ -192,7 +198,8 @@ this.remove.Name = "remove"; this.remove.Size = new System.Drawing.Size(88, 24); this.remove.TabIndex = 9; - this.remove.Text = "\x93P\x8B\x8E(&E)"; + this.remove.Text = "R&emove"; + //! this.remove.Text = "撤去(&E)"; this.remove.Click += new System.EventHandler(this.onRemove); // // warning @@ -218,7 +225,8 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(48, 16); this.label3.TabIndex = 5; - this.label3.Text = "\x83x\x83\x8B(&B):"; + this.label3.Text = "&Bell:"; + //! this.label3.Text = "ベル(&B):"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // PlatformPropertyDialog @@ -245,7 +253,8 @@ this.MinimizeBox = false; this.Name = "PlatformPropertyDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "\x83z\x81[\x83\x80\x82̃v\x83\x8D\x83p\x83e\x83B"; + this.Text = "Platform properties"; + //! this.Text = "ホームのプロパティ"; this.groupFat.ResumeLayout(false); this.ResumeLayout(false); @@ -256,10 +265,14 @@ private void updateDialog() { if( platform is FatPlatform ) { FatPlatform fp = (FatPlatform)platform; - if(!fp.hasLane(lIdx)) left.Text = "\x8D\xB6\x82ɐڑ\xB1"; - else left.Text = "\x8D\xB6\x82\xF0\x89\xF0\x95\xFA"; - if(!fp.hasLane(rIdx)) right.Text = "\x89E\x82ɐڑ\xB1"; - else right.Text = "\x89E\x82\xF0\x89\xF0\x95\xFA"; + if(!fp.hasLane(lIdx)) left.Text = "Left connect"; + //! if(!fp.hasLane(lIdx)) left.Text = "左に接続"; + else left.Text = "Left release"; + //! else left.Text = "左を解放"; + if(!fp.hasLane(rIdx)) right.Text = "Right connect"; + //! if(!fp.hasLane(rIdx)) right.Text = "右に接続"; + else right.Text = "Right release"; + //! else right.Text = "右を解放"; } if( platform.host!=null ) warning.Hide(); @@ -277,12 +290,14 @@ if(fp.canRemoveLane(index)) fp.removeLane(index); else - MainWindow.showError("\x8F\xE1\x8AQ\x95\xA8\x82\xAA\x82\xA0\x82\xC1\x82ĉ\xF0\x95\xFA\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Could not be released due to an obstacle"); + //! MainWindow.showError("障害物があって解放できません"); } else { if(fp.canAddLane(index)) fp.addLane(index); else - MainWindow.showError("\x8F\xE1\x8AQ\x95\xA8\x82\xAA\x82\xA0\x82\xC1\x82Đڑ\xB1\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Could not be connected due to an obstacle"); + //! MainWindow.showError("障害物があって接続できません"); } updateDialog(); } @@ -294,7 +309,8 @@ } private void onRemove(object sender, System.EventArgs e) { - if(MessageBox.Show(this,"\x82\xB1\x82̃z\x81[\x83\x80\x82\xF0\x93P\x8B\x8E\x82\xB5\x82܂\xB7\x82\xA9\x81H","\x83z\x81[\x83\x80\x82̓P\x8B\x8E",MessageBoxButtons.YesNo,MessageBoxIcon.Question) + if(MessageBox.Show(this,"Do you want to remove this station?","Remove station",MessageBoxButtons.YesNo,MessageBoxIcon.Question) + //! if(MessageBox.Show(this,"このホームを撤去しますか?","ホームの撤去",MessageBoxButtons.YesNo,MessageBoxIcon.Question) == DialogResult.Yes) { platform.remove(); Close(); // close the dialog Modified: trunk/FreeTrain/tools/core/controllers/rail/RailRoadController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/RailRoadController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/RailRoadController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -64,7 +64,8 @@ /// </summary> private void updateDialog() { message.Text = anchor!=UNPLACED? - "\x8FI\x93_\x82\xF0\x91I\x82\xF1\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2":"\x8En\x93_\x82\xF0\x91I\x82\xF1\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2"; + "Select terminal point":"Select starting point"; + //! "終点を選んでください":"始点を選んでください"; } /// <summary> @@ -113,7 +114,8 @@ this.message.Name = "message"; this.message.Size = new System.Drawing.Size(96, 24); this.message.TabIndex = 1; - this.message.Text = "\x83}\x83b\x83v\x82̂Q\x93_\x82\xF0\x83N\x83\x8A\x83b\x83N\x82\xB5\x82ĕ~\x90\xDD"; + this.message.Text = "Click on two points on the map to place tracks"; + //! this.message.Text = "マップの2点をクリックして敷設"; // // buttonPlace // @@ -124,7 +126,8 @@ this.buttonPlace.Size = new System.Drawing.Size(48, 24); this.buttonPlace.TabIndex = 2; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x95~\x90\xDD"; + this.buttonPlace.Text = "Place"; + //! this.buttonPlace.Text = "敷設"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonPlace.CheckedChanged += new System.EventHandler(this.modeChanged); // @@ -135,14 +138,16 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(48, 24); this.buttonRemove.TabIndex = 3; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonRemove.CheckedChanged += new System.EventHandler(this.modeChanged); // // costBox // this.costBox.cost = 0; - this.costBox.label = "\x94\xEF\x97p\x81F"; + this.costBox.label = "Cost:"; + //! this.costBox.label = "費用:"; this.costBox.Location = new System.Drawing.Point(8, 112); this.costBox.Name = "costBox"; this.costBox.Size = new System.Drawing.Size(96, 32); @@ -159,7 +164,8 @@ this.message, this.picture}); this.Name = "RailRoadController"; - this.Text = "\x90\xFC\x98H\x8DH\x8E\x96"; + this.Text = "Track construction"; + //! this.Text = "線路工事"; this.ResumeLayout(false); } @@ -175,7 +181,8 @@ if(isPlacing) { // build new railroads. if(!SingleRailRoad.build( anchor, loc )) - MainWindow.showError("\x8F\xE1\x8AQ\x95\xA8\x82\xAA\x82\xA0\x82\xE8\x82܂\xB7"); + MainWindow.showError("There are obstacles"); + //! MainWindow.showError("障害物があります"); } else // remove existing ones SingleRailRoad.remove( anchor, loc ); Modified: trunk/FreeTrain/tools/core/controllers/rail/SlopeRailRoadController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/SlopeRailRoadController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/SlopeRailRoadController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -42,7 +42,7 @@ public SlopeRailRoadController() { - // Windows \x83t\x83H\x81[\x83\x80 \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ł\xB7\x81B + // Windows フォーム デザイナ サポートに必要です。 InitializeComponent(); pictureN.Tag = Direction.get(0); @@ -107,13 +107,13 @@ private System.Windows.Forms.RadioButton buttonPlace; private System.Windows.Forms.RadioButton buttonRemove; /// <summary> - /// \x95K\x97v\x82ȃf\x83U\x83C\x83i\x95ϐ\x94\x82ł\xB7\x81B + /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -175,7 +175,8 @@ this.buttonPlace.Size = new System.Drawing.Size(48, 24); this.buttonPlace.TabIndex = 4; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x95~\x90\xDD"; + this.buttonPlace.Text = "Place"; + //! this.buttonPlace.Text = "敷設"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonRemove @@ -185,13 +186,15 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(48, 24); this.buttonRemove.TabIndex = 5; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // costBox // this.costBox.cost = 0; - this.costBox.label = "\x94\xEF\x97p\x81F"; + this.costBox.label = "Cost:"; + //! this.costBox.label = "費用:"; this.costBox.Location = new System.Drawing.Point(8, 224); this.costBox.Name = "costBox"; this.costBox.Size = new System.Drawing.Size(96, 32); @@ -210,7 +213,8 @@ this.pictureE, this.pictureN}); this.Name = "SlopeRailRoadController"; - this.Text = "\x8C\xF9\x94z\x90\xFC\x98H"; + this.Text = "Slope tracks"; + //! this.Text = "勾配線路"; this.ResumeLayout(false); } @@ -248,7 +252,8 @@ if(SlopeRailRoad.canCreateSlope(loc,direction)) SlopeRailRoad.createSlope(loc,direction); else - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not place"); + //! MainWindow.showError("設置できません"); } else { SlopeRailRoad srr = SlopeRailRoad.get(loc); if(srr==null) { @@ -266,7 +271,8 @@ return; } } - MainWindow.showError("\x93P\x8B\x8E\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not remove"); + //! MainWindow.showError("撤去できません"); } } Modified: trunk/FreeTrain/tools/core/controllers/rail/StationPassagewayController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/StationPassagewayController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/StationPassagewayController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -13,7 +13,7 @@ namespace freetrain.controllers.rail { /// <summary> - /// StationBridgeController \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// StationBridgeController の概要の説明です。 /// </summary> public class StationPassagewayController : AbstractControllerImpl, MapOverlay, LocationDisambiguator { @@ -39,8 +39,10 @@ private StationPassagewayController() { InitializeComponent(); - typeCombo.Items.Add("\x83R\x83\x93\x83N\x83\x8A\x81[\x83g"); - typeCombo.Items.Add("\x97\xF9\x8A\xA2"); + typeCombo.Items.Add("Concrete"); + //! typeCombo.Items.Add("コンクリート"); + typeCombo.Items.Add("Brick"); + //! typeCombo.Items.Add("煉瓦"); } @@ -60,8 +62,8 @@ private System.Windows.Forms.RadioButton buttonRemove; private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -83,7 +85,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(120, 144); this.label1.TabIndex = 1; - this.label1.Text = "\x94\x96\x82\xA2\x83z\x81[\x83\x80\x90\xEA\x97p\x82ł\xB7\x81B\x92ʘH\x82\xF0\x83z\x81[\x83\x80\x82ƒ\xBC\x8Ap\x82ɐݒu\x82\xB5\x82Ă\xA9\x82\xE7\x8AK\x92i\x82\xF0\x90ݒu\x82\xB5\x82Ă\xAD\x82\xBE\x82\xB3\x82\xA2\x81B"; + this.label1.Text = "Only for thin platforms. If a passageway and a platform are connected at right angles, please build a staircase."; + //! this.label1.Text = "薄いホーム専用です。通路をホームと直角に設置してから階段を設置してください。"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonPlace @@ -95,7 +98,8 @@ this.buttonPlace.Size = new System.Drawing.Size(48, 24); this.buttonPlace.TabIndex = 1; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x90ݒu"; + this.buttonPlace.Text = "Build"; + //! this.buttonPlace.Text = "設置"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonRemove @@ -105,7 +109,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(48, 24); this.buttonRemove.TabIndex = 2; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // typeCombo @@ -126,7 +131,8 @@ this.groupBox1.Size = new System.Drawing.Size(104, 64); this.groupBox1.TabIndex = 4; this.groupBox1.TabStop = false; - this.groupBox1.Text = "\x95\x94\x95i"; + this.groupBox1.Text = "Section"; + //! this.groupBox1.Text = "部品"; // // radioStair // @@ -134,7 +140,8 @@ this.radioStair.Name = "radioStair"; this.radioStair.Size = new System.Drawing.Size(88, 16); this.radioStair.TabIndex = 1; - this.radioStair.Text = "\x8AK\x92i"; + this.radioStair.Text = "Staircase"; + //! this.radioStair.Text = "階段"; // // radioPassage // @@ -144,7 +151,8 @@ this.radioPassage.Size = new System.Drawing.Size(88, 16); this.radioPassage.TabIndex = 0; this.radioPassage.TabStop = true; - this.radioPassage.Text = "\x92ʘH"; + this.radioPassage.Text = "Passageway"; + //! this.radioPassage.Text = "通路"; // // StationBridgeController // @@ -158,7 +166,8 @@ this.buttonRemove}); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "StationBridgeController"; - this.Text = "\x89w\x98A\x97\x8D\x92ʘH"; + this.Text = "Station connecting passageway"; + //! this.Text = "駅連絡通路"; this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); @@ -207,7 +216,8 @@ if(isStair) { if( isPlacing ) { if( !createStair(loc,false) ) - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); } else removeStair(loc); } else { @@ -221,7 +231,8 @@ if( canBuildPassageway( anchor, loc ) ) buildPassageway( anchor, loc ); else - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); } else { removePassageway( anchor, loc ); } Modified: trunk/FreeTrain/tools/core/controllers/rail/StationPropertyDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/StationPropertyDialog.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/StationPropertyDialog.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -20,13 +20,13 @@ private System.Windows.Forms.TextBox nameBox; private System.Windows.Forms.Label label1; /// <summary> - /// \x95K\x97v\x82ȃf\x83U\x83C\x83i\x95ϐ\x94\x82ł\xB7\x81B + /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -44,7 +44,8 @@ this.remove.Name = "remove"; this.remove.Size = new System.Drawing.Size(88, 24); this.remove.TabIndex = 3; - this.remove.Text = "\x93P\x8B\x8E(&E)"; + this.remove.Text = "R&emove"; + //! this.remove.Text = "撤去(&E)"; this.remove.Click += new System.EventHandler(this.remove_Click); // // cancelButton @@ -55,7 +56,8 @@ this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(88, 24); this.cancelButton.TabIndex = 5; - this.cancelButton.Text = "\x83L\x83\x83\x83\x93\x83Z\x83\x8B(&C)"; + this.cancelButton.Text = "&Cancel"; + //! this.cancelButton.Text = "キャンセル(&C)"; // // OKbutton // @@ -82,7 +84,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(48, 16); this.label1.TabIndex = 1; - this.label1.Text = "\x96\xBC\x91O(&N):"; + this.label1.Text = "&Name:"; + //! this.label1.Text = "名前(&N):"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // StationPropertyDialog @@ -103,7 +106,8 @@ this.MinimizeBox = false; this.Name = "StationPropertyDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "\x89w\x82̃v\x83\x8D\x83p\x83e\x83B"; + this.Text = "Station properties"; + //! this.Text = "駅のプロパティ"; this.TopMost = true; this.ResumeLayout(false); @@ -123,7 +127,7 @@ private readonly Station station; /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing && components != null) @@ -133,7 +137,8 @@ private void remove_Click(object sender, EventArgs e) { - if(MessageBox.Show(this,"\x82\xB1\x82̉w\x8Eɂ\xF0\x93P\x8B\x8E\x82\xB5\x82܂\xB7\x82\xA9\x81H","\x89w\x8Eɂ̓P\x8B\x8E", + if(MessageBox.Show(this,"Do you want to remove this station?","Remove station", + //! if(MessageBox.Show(this,"この駅舎を撤去しますか?","駅舎の撤去", MessageBoxButtons.YesNo,MessageBoxIcon.Question) != DialogResult.Yes) return; Modified: trunk/FreeTrain/tools/core/controllers/rail/TrainControllerDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/TrainControllerDialog.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/TrainControllerDialog.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -94,7 +94,8 @@ this.rename.Name = "rename"; this.rename.Size = new System.Drawing.Size(88, 24); this.rename.TabIndex = 5; - this.rename.Text = "\x96\xBC\x91O\x95ύX(&R)"; + this.rename.Text = "&Rename"; + //! this.rename.Text = "名前変更(&R)"; this.rename.Click += new System.EventHandler(this.rename_Click); // // buttonDelete @@ -104,7 +105,8 @@ this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Size = new System.Drawing.Size(88, 24); this.buttonDelete.TabIndex = 4; - this.buttonDelete.Text = "\x8D폜(&D)"; + this.buttonDelete.Text = "&Delete"; + //! this.buttonDelete.Text = "削除(&D)"; this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click); // // buttonConfig @@ -114,7 +116,8 @@ this.buttonConfig.Name = "buttonConfig"; this.buttonConfig.Size = new System.Drawing.Size(88, 24); this.buttonConfig.TabIndex = 3; - this.buttonConfig.Text = "\x90ݒ\xE8(&C)"; + this.buttonConfig.Text = "&Configure"; + //! this.buttonConfig.Text = "設定(&C)"; this.buttonConfig.Click += new System.EventHandler(this.buttonConfig_Click); // // buttonNew @@ -124,7 +127,8 @@ this.buttonNew.Name = "buttonNew"; this.buttonNew.Size = new System.Drawing.Size(88, 24); this.buttonNew.TabIndex = 2; - this.buttonNew.Text = "\x90V\x8BK(&N)..."; + this.buttonNew.Text = "&New..."; + //! this.buttonNew.Text = "新規(&N)..."; this.buttonNew.Click += new System.EventHandler(this.buttonNew_Click); // // list @@ -147,12 +151,14 @@ // // columnName // - this.columnName.Text = "\x96\xBC\x91O"; + this.columnName.Text = "Name"; + //! this.columnName.Text = "名前"; this.columnName.Width = 200; // // columnType // - this.columnType.Text = "\x8E\xED\x97\xDE"; + this.columnType.Text = "Type"; + //! this.columnType.Text = "種類"; // // TrainControllerDialog // @@ -165,7 +171,8 @@ this.MinimumSize = new System.Drawing.Size(376, 160); this.Name = "TrainControllerDialog"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show; - this.Text = "\x83_\x83C\x83\x84\x83O\x83\x89\x83\x80"; + this.Text = "Diagram"; + //! this.Text = "ダイヤグラム"; this.panel1.ResumeLayout(false); this.ResumeLayout(false); @@ -217,7 +224,8 @@ private void createNewTrainController( TrainControllerContribution contrib ) { // update data structure TrainController tc = contrib.newController( - string.Format("\x90V\x82\xB5\x82\xA2\x83_\x83C\x83\x84\x83O\x83\x89\x83\x80{0}",iota++)); + string.Format("New diagram {0}",iota++)); + //! string.Format("新しいダイヤグラム{0}",iota++)); World.world.trainControllers.add(tc); // update GUI Modified: trunk/FreeTrain/tools/core/controllers/rail/TrainPlacementController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/TrainPlacementController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/TrainPlacementController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -49,7 +49,7 @@ public TrainPlacementController() { - // Windows \x83t\x83H\x81[\x83\x80 \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ł\xB7\x81B + // Windows フォーム デザイナ サポートに必要です。 InitializeComponent(); controllerCombo.DataSource = World.world.trainControllers; @@ -112,7 +112,7 @@ } /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing && components != null) @@ -137,8 +137,8 @@ private System.ComponentModel.IContainer components; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -171,7 +171,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(56, 24); this.buttonRemove.TabIndex = 5; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonRemove.CheckedChanged += new System.EventHandler(this.onModeChange); // @@ -185,7 +186,8 @@ this.buttonPlace.Size = new System.Drawing.Size(56, 24); this.buttonPlace.TabIndex = 4; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x94z\x92u"; + this.buttonPlace.Text = "Place"; + //! this.buttonPlace.Text = "配置"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonPlace.CheckedChanged += new System.EventHandler(this.onModeChange); // @@ -214,7 +216,8 @@ // miAddGroup // this.miAddGroup.Index = 0; - this.miAddGroup.Text = "\x90V\x82\xB5\x82\xA2\x83O\x83\x8B\x81[\x83v\x82̒lj\xC1(&A)"; + this.miAddGroup.Text = "&Add new group"; + //! this.miAddGroup.Text = "新しいグループの追加(&A)"; // // imageList // @@ -255,7 +258,8 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(56, 20); this.label3.TabIndex = 12; - this.label3.Text = "\x8E\xED\x97\xDE(&T)\x81F"; + this.label3.Text = "&Type:"; + //! this.label3.Text = "種類(&T):"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // controllerCombo @@ -274,7 +278,8 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 20); this.label2.TabIndex = 10; - this.label2.Text = "\x83_\x83C\x83\x84(&T)\x81F"; + this.label2.Text = "Diagram (&T):"; + //! this.label2.Text = "ダイヤ(&T):"; this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // nameBox @@ -293,7 +298,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 20); this.label1.TabIndex = 8; - this.label1.Text = "\x96\xBC\x91O(&N)\x81F"; + this.label1.Text = "&Name"; + //! this.label1.Text = "名前(&N):"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // panel1 @@ -308,7 +314,8 @@ // miSell // this.miSell.Index = 1; - this.miSell.Text = "\x94\x84\x8Bp(&S)..."; + this.miSell.Text = "&Sell..."; + //! this.miSell.Text = "売却(&S)..."; // // TrainPlacementController // @@ -319,7 +326,8 @@ this.panel2}); this.MinimumSize = new System.Drawing.Size(416, 180); this.Name = "TrainPlacementController"; - this.Text = "\x8Eԗ\xBC\x82̔z\x92u"; + this.Text = "Place car"; + //! this.Text = "車両の配置"; this.panel2.ResumeLayout(false); this.panel1.ResumeLayout(false); this.ResumeLayout(false); @@ -385,19 +393,22 @@ resetArrowLocation(); return; } else { - MainWindow.showError("\x94z\x92u\x8Dς݂ł\xB7"); + MainWindow.showError("Placement completed"); + //! MainWindow.showError("配置済みです"); return; } } RailRoad rr = RailRoad.get(loc); if(rr==null) { - MainWindow.showError("\x90\xFC\x98H\x82̂Ȃ\xA2\x82Ƃ\xB1\x82\xEB\x82ɂ͔z\x92u\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not place without tracks"); + //! MainWindow.showError("線路のないところには配置できません"); return; } if(!tr.place(loc)) { - MainWindow.showError("\x94z\x92u\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not place"); + //! MainWindow.showError("配置できません"); } else playSound(); @@ -405,11 +416,13 @@ // remove RailRoad rr = RailRoad.get(loc); if(rr==null) { - MainWindow.showError("\x90\xFC\x98H\x82\xAA\x82\xA0\x82\xE8\x82܂\xB9\x82\xF1"); + MainWindow.showError("There are no tracks"); + //! MainWindow.showError("線路がありません"); return; } if(!(rr.voxel.car is Train.TrainCar)) { - MainWindow.showError("\x8Eԗ\xBC\x82\xAA\x82\xA0\x82\xE8\x82܂\xB9\x82\xF1"); + MainWindow.showError("There are no cars"); + //! MainWindow.showError("車両がありません"); return; } ((Train.TrainCar)rr.voxel.car).parent.remove(); @@ -568,7 +581,8 @@ } private void executeSell() { - if( MessageBox.Show(this,"\x94\x84\x8Bp\x82\xB5\x82܂\xB7\x82\xA9\x81H",Application.ProductName, + if( MessageBox.Show(this,"Do you want to sell?",Application.ProductName, + //! if( MessageBox.Show(this,"売却しますか?",Application.ProductName, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { Modified: trunk/FreeTrain/tools/core/controllers/rail/TrainTrackingWindow.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/TrainTrackingWindow.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/TrainTrackingWindow.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -41,7 +41,7 @@ private System.Windows.Forms.Button buttonTrack; /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing && components != null) @@ -50,13 +50,13 @@ } /// <summary> - /// \x95K\x97v\x82ȃf\x83U\x83C\x83i\x95ϐ\x94\x82ł\xB7\x81B + /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -76,7 +76,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 16); this.label1.TabIndex = 0; - this.label1.Text = "\x97\xF1\x8EԖ\xBC\x81F"; + this.label1.Text = "Train name:"; + //! this.label1.Text = "列車名:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label2 @@ -85,7 +86,8 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 16); this.label2.TabIndex = 2; - this.label2.Text = "\x8F\xF3\x91ԁF"; + this.label2.Text = "Condition:"; + //! this.label2.Text = "状態:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // stateBox @@ -114,7 +116,8 @@ this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(56, 16); this.label5.TabIndex = 4; - this.label5.Text = "\x8F\xE6\x8Bq\x90\x94\x81F"; + this.label5.Text = "Number of passengers"; + //! this.label5.Text = "乗客数:"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // buttonTrack @@ -126,7 +129,8 @@ this.buttonTrack.Name = "buttonTrack"; this.buttonTrack.Size = new System.Drawing.Size(64, 24); this.buttonTrack.TabIndex = 6; - this.buttonTrack.Text = "\x88ړ\xAE(&M)"; + this.buttonTrack.Text = "&Move"; + //! this.buttonTrack.Text = "移動(&M)"; // // nameBox // @@ -168,7 +172,8 @@ this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(136, 136); this.Name = "TrainTrackingWindow"; - this.Text = "\x97\xF1\x8EԂ̏\xEE\x95\xF1"; + this.Text = "Train information"; + //! this.Text = "列車の情報"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/rail/TrainTradingDialog.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -65,7 +65,7 @@ } /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing && components != null) @@ -99,13 +99,13 @@ private System.Windows.Forms.Label name; private System.Windows.Forms.PictureBox preview; /// <summary> - /// \x95K\x97v\x82ȃf\x83U\x83C\x83i\x95ϐ\x94\x82ł\xB7\x81B + /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -142,7 +142,8 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(64, 20); this.label2.TabIndex = 2; - this.label2.Text = "\x8Eԗ\xBC\x90\x94(&L)\x81F"; + this.label2.Text = "&Length"; + //! this.label2.Text = "車両数(&L):"; this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // length @@ -170,7 +171,7 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(16, 20); this.label3.TabIndex = 5; - this.label3.Text = "\x81~"; + this.label3.Text = "×"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // count @@ -201,7 +202,8 @@ this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(32, 20); this.label4.TabIndex = 7; - this.label4.Text = "\x95Ґ\xAC"; + this.label4.Text = "Formation"; + //! this.label4.Text = "編成"; this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // buttonOK @@ -211,7 +213,8 @@ this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(80, 24); this.buttonOK.TabIndex = 8; - this.buttonOK.Text = "\x8Dw\x93\xFC(&O)"; + this.buttonOK.Text = "Buy (&O)"; + //! this.buttonOK.Text = "購入(&O)"; this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); // // buttonCancel @@ -222,7 +225,8 @@ this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(80, 24); this.buttonCancel.TabIndex = 9; - this.buttonCancel.Text = "\x95\xB6\x82\xE9(&C)"; + this.buttonCancel.Text = "&Close"; + //! this.buttonCancel.Text = "閉じる(&C)"; // // label5 // @@ -230,7 +234,8 @@ this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(64, 16); this.label5.TabIndex = 10; - this.label5.Text = "\x91\xAC\x93x\x81F"; + this.label5.Text = "Speed:"; + //! this.label5.Text = "速度:"; this.label5.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // speed @@ -239,7 +244,8 @@ this.speed.Name = "speed"; this.speed.Size = new System.Drawing.Size(184, 16); this.speed.TabIndex = 11; - this.speed.Text = "\x8D\x82\x91\xAC"; + this.speed.Text = "Rapid"; + //! this.speed.Text = "高速"; this.speed.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // totalPrice @@ -257,7 +263,8 @@ this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(64, 16); this.label8.TabIndex = 15; - this.label8.Text = "\x91\x8D\x94\xEF\x97p\x81F"; + this.label8.Text = "Total cost:"; + //! this.label8.Text = "総費用:"; this.label8.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // passenger @@ -275,7 +282,8 @@ this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(64, 16); this.label9.TabIndex = 16; - this.label9.Text = "\x92\xE8\x88\xF5\x81F"; + this.label9.Text = "Capacity:"; + //! this.label9.Text = "定員:"; this.label9.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // typeTree @@ -294,7 +302,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 16); this.label1.TabIndex = 19; - this.label1.Text = "\x8D\xEC\x8EҁF"; + this.label1.Text = "Author:"; + //! this.label1.Text = "作者:"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // label6 @@ -303,7 +312,8 @@ this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(64, 16); this.label6.TabIndex = 20; - this.label6.Text = "\x90\xE0\x96\xBE\x81F"; + this.label6.Text = "Description:"; + //! this.label6.Text = "説明:"; this.label6.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // description @@ -325,7 +335,8 @@ this.author.Name = "author"; this.author.Size = new System.Drawing.Size(184, 16); this.author.TabIndex = 22; - this.author.Text = "477\x82\xB3\x82\xF1"; + this.author.Text = "477-san"; + //! this.author.Text = "477さん"; this.author.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // label7 @@ -334,7 +345,8 @@ this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(16, 20); this.label7.TabIndex = 23; - this.label7.Text = "\x97\xBC"; + this.label7.Text = "Car"; + //! this.label7.Text = "両"; this.label7.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // label10 @@ -343,7 +355,8 @@ this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(64, 16); this.label10.TabIndex = 24; - this.label10.Text = "\x96\xBC\x8F́F"; + this.label10.Text = "Name:"; + //! this.label10.Text = "名称:"; this.label10.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // name @@ -352,7 +365,8 @@ this.name.Name = "name"; this.name.Size = new System.Drawing.Size(184, 16); this.name.TabIndex = 25; - this.name.Text = "123\x8Cn ABCDEF"; + this.name.Text = "123 system ABCDEF"; + //! this.name.Text = "123系 ABCDEF"; this.name.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // preview @@ -398,7 +412,8 @@ this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "TrainTradingDialog"; - this.Text = "\x8Eԗ\xBC\x82̍w\x93\xFC"; + this.Text = "Buy trains"; + //! this.Text = "車両の購入"; ((System.ComponentModel.ISupportInitialize)(this.length)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.count)).EndInit(); this.ResumeLayout(false); @@ -460,7 +475,8 @@ foreach( TrainCarContribution car in cars ) p += car.capacity; - passenger.Text = p.ToString()+" \x90l/\x95Ґ\xAC"; + passenger.Text = p.ToString()+" Passenger/Formation"; + //! passenger.Text = p.ToString()+" 人/編成"; return; } } Modified: trunk/FreeTrain/tools/core/controllers/structs/CommercialStructPlacementController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/structs/CommercialStructPlacementController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/structs/CommercialStructPlacementController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -9,7 +9,7 @@ namespace freetrain.controllers.structs { /// <summary> - /// CommercialStructPlacementController \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// CommercialStructPlacementController の概要の説明です。 /// </summary> public class CommercialStructPlacementController : FixedSizeStructController { @@ -53,7 +53,8 @@ if(c.isOwned) c.remove(); else - MainWindow.showError("\x93P\x8B\x8E\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not remove"); + //! MainWindow.showError("撤去できません"); } } Modified: trunk/FreeTrain/tools/core/controllers/structs/FixedSizeStructController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/structs/FixedSizeStructController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/structs/FixedSizeStructController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -14,7 +14,7 @@ namespace freetrain.controllers.structs { /// <summary> - /// FixedSizeStructController \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// FixedSizeStructController の概要の説明です。 /// </summary> public abstract class FixedSizeStructController : StructPlacementController { @@ -33,7 +33,8 @@ public override void onClick(MapViewWindow view, Location loc, Point ab ) { if( isPlacing ) { if(!selectedType.canBeBuilt(loc)) { - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); } else { CompletionHandler handler = new CompletionHandler(selectedType,loc,true); new ConstructionSite( loc, new EventHandler(handler.handle), selectedType.size ); Modified: trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/structs/StructPlacementController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -60,8 +60,8 @@ #region Designer generated code /// <summary> - /// Designer \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82\xC5 - /// \x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̃R\x83\x93\x83e\x83\x93\x83c\x82\xF0\x95ύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// Designer サポートに必要なメソッドです。コード エディタで + /// このメソッドのコンテンツを変更しないでください。 /// </summary> private void InitializeComponent() { @@ -98,7 +98,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(56, 24); this.buttonRemove.TabIndex = 1; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonPlace @@ -110,7 +111,8 @@ this.buttonPlace.Size = new System.Drawing.Size(56, 24); this.buttonPlace.TabIndex = 0; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x90ݒu"; + this.buttonPlace.Text = "Build"; + //! this.buttonPlace.Text = "設置"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // indexSelector @@ -135,7 +137,8 @@ this.structType, this.preview}); this.Name = "StructPlacementController"; - this.Text = "\x8C\x9A\x95\xA8\x82̍H\x8E\x96(\x89\xBC)"; + this.Text = "Building construction (temporary)"; + //! this.Text = "建物の工事(仮)"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/structs/VarHeightBuildingController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -54,8 +54,8 @@ private System.ComponentModel.IContainer components = null; /// <summary> - /// Designer \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82\xC5 - /// \x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̃R\x83\x93\x83e\x83\x93\x83c\x82\xF0\x95ύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// Designer サポートに必要なメソッドです。コード エディタで + /// このメソッドのコンテンツを変更しないでください。 /// </summary> private void InitializeComponent() { @@ -70,7 +70,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(48, 16); this.label1.TabIndex = 3; - this.label1.Text = "\x8D\x82\x82\xB3(&H)\x81F"; + this.label1.Text = "&Height"; + //! this.label1.Text = "高さ(&H):"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // heightBox @@ -111,7 +112,8 @@ this.heightBox, this.label1}); this.Name = "VarHeightBuildingController"; - this.Text = "\x8C\x9A\x95\xA8\x82̍H\x8E\x96(\x89\xBC)"; + this.Text = "Building construction (temporary)"; + //! this.Text = "建物の工事(仮)"; ((System.ComponentModel.ISupportInitialize)(this.heightBox)).EndInit(); this.ResumeLayout(false); @@ -127,7 +129,8 @@ public override void onClick(MapViewWindow view, Location loc, Point ab ) { if( isPlacing ) { if(!selectedType.canBeBuilt(loc,height)) { - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); } else { CompletionHandler handler = new CompletionHandler(selectedType,loc,height,true); new ConstructionSite( loc, new EventHandler(handler.handle), Modified: trunk/FreeTrain/tools/core/controllers/terrain/MountainController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/terrain/MountainController.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/controllers/terrain/MountainController.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -51,8 +51,8 @@ private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -70,7 +70,8 @@ this.buttonUp.Size = new System.Drawing.Size(56, 24); this.buttonUp.TabIndex = 2; this.buttonUp.TabStop = true; - this.buttonUp.Text = "\x97\xB2\x8BN"; + this.buttonUp.Text = "Raise"; + //! this.buttonUp.Text = "隆起"; this.buttonUp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonDown @@ -80,7 +81,8 @@ this.buttonDown.Name = "buttonDown"; this.buttonDown.Size = new System.Drawing.Size(56, 24); this.buttonDown.TabIndex = 4; - this.buttonDown.Text = "\x8C@\x8D\xED"; + this.buttonDown.Text = "Lower"; + //! this.buttonDown.Text = "掘削"; this.buttonDown.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // preview @@ -101,7 +103,8 @@ this.buttonDown, this.preview}); this.Name = "MountainController"; - this.Text = "\x92n\x8C`\x91\x80\x8D\xEC"; + this.Text = "Manipulate topography"; + //! this.Text = "地形操作"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/tools/core/framework/AboutDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/framework/AboutDialog.cs 2007-04-01 14:32:19 UTC (rev 19) +++ trunk/FreeTrain/tools/core/framework/AboutDialog.cs 2007-04-07 05:32:10 UTC (rev 20) @@ -10,7 +10,7 @@ namespace freetrain.framework { /// <summary> - /// AboutDialog \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// AboutDialog の概要の説明です。 /// </summary> public class AboutDialog : System.Windows.Forms.Form { @@ -59,8 +59,8 @@ private System.Windows.Forms.Panel panel1; private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -92,7 +92,8 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(96, 16); this.label3.TabIndex = 4; - this.label3.Text = "VRAM\x8Be\x97ʁF"; + this.label3.Text = "Available VRAM:"; + //! this.label3.Text = "VRAM空き容量:"; this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight; // // okButton @@ -120,7 +121,8 @@ this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(96, 16); this.label4.TabIndex = 7; - this.label4.Text = "\x89\xE6\x96ʃ\x82\x81[\x83h\x81F"; + this.label4.Text = "Display mode:"; + //! this.label4.Text = "画面モード:"; this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight; // // displayMode @@ -169,7 +171,8 @@ this.MinimizeBox = false; this.Name = "AboutDialog"; this.ShowInTaskbar = false; - this.Text = "FreeTrain\x82ɂ\xA2\x82\xC4"; + this.Text = "About FreeTrain"; + //! this.Text = "FreeTrainについて"; ((System.ComponentModel.ISupportInitialize)(this.browser)).EndInit(); this.panel1.ResumeLayout(false); this.ResumeLayout(false); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-04-01 14:32:20
|
Revision: 19 http://freetrain.svn.sourceforge.net/freetrain/?rev=19&view=rev Author: himasaram Date: 2007-04-01 07:32:19 -0700 (Sun, 01 Apr 2007) Log Message: ----------- Corrections of yen signs replacing backslashes Modified Paths: -------------- trunk/FreeTrain/core/contributions/common/FixedSizeStructureController.cs trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs trunk/FreeTrain/core/contributions/train/ReverseTrainCarImpl.cs trunk/FreeTrain/core/contributions/train/TrainContribution.cs trunk/FreeTrain/core/controllers/land/LandController.cs trunk/FreeTrain/core/controllers/land/LandPropertyController.cs trunk/FreeTrain/core/controllers/rail/PlatformController.cs trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs trunk/FreeTrain/tools/core/contributions/land/RandomLandBuilder.cs trunk/FreeTrain/tools/core/contributions/others/EmptyNewGameContributionImpl.cs trunk/FreeTrain/tools/core/contributions/others/NewWorldDialog.cs trunk/FreeTrain/tools/core/contributions/train/ParamTrainImpl.cs trunk/FreeTrain/tools/core/contributions/train/ReverseTrainCarImpl.cs trunk/FreeTrain/tools/core/contributions/train/TrainContribution.cs trunk/FreeTrain/tools/core/controllers/AbstractLineController.cs trunk/FreeTrain/tools/core/controllers/land/LandController.cs trunk/FreeTrain/tools/core/controllers/land/LandPropertyController.cs trunk/FreeTrain/tools/core/controllers/rail/PlatformController.cs trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs Modified: trunk/FreeTrain/core/contributions/common/FixedSizeStructureController.cs =================================================================== --- trunk/FreeTrain/core/contributions/common/FixedSizeStructureController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/core/contributions/common/FixedSizeStructureController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -1,4 +1,4 @@ -using System; +using System; using System.Drawing; using System.Windows.Forms; using freetrain.controllers; @@ -80,7 +80,7 @@ protected override void onSelected( Cube cube ) { PThreeDimStructure s = World.world.getEntityAt(cube.corner) as PThreeDimStructure; if( s==null || s.type!=contrib ) { - MainWindow.showError("The type is different"); + MainWindow.showError("Wrong type"); //! MainWindow.showError("種類が違います"); return; } Modified: trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs =================================================================== --- trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/core/contributions/train/ParamTrainImpl.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -34,7 +34,7 @@ carTailType = getCarType(composition,"tail"); if(carBodyType==null) - throw new FormatException("<body>Part was not specified"); + throw new FormatException("<body> part was not specified"); //! throw new FormatException("<body>要素が指定されませんでした"); composition = null; @@ -45,7 +45,7 @@ if(e==null) return null; string idref = e.Attributes["carRef"].Value; - if(id==null) throw new FormatException("carReflacks attribute"); + if(id==null) throw new FormatException("carRef lacks attribute"); //! if(id==null) throw new FormatException("carRef属性がありません"); TrainCarContribution contrib = (TrainCarContribution)Core.plugins.getContribution(idref); Modified: trunk/FreeTrain/core/contributions/train/ReverseTrainCarImpl.cs =================================================================== --- trunk/FreeTrain/core/contributions/train/ReverseTrainCarImpl.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/core/contributions/train/ReverseTrainCarImpl.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -29,7 +29,7 @@ protected internal override void onInitComplete() { core = Core.plugins.getContribution(baseId) as TrainCarContribution; if(core==null) - throw new FormatException("'"+id+"' refers to TrainCar contribution'"+baseId+"' that could not be found"); + throw new FormatException("'"+id+"' refers to TrainCar contribution '"+baseId+"' that could not be found"); //! throw new FormatException("'"+id+"'が参照するTrainCarコントリビューション'"+baseId+"'が見つかりません"); this._capacity = core.capacity; } Modified: trunk/FreeTrain/core/contributions/train/TrainContribution.cs =================================================================== --- trunk/FreeTrain/core/contributions/train/TrainContribution.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/core/contributions/train/TrainContribution.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -75,7 +75,7 @@ // build up rail like // - // /‾‾‾‾‾ + // /~~~~~ // / for( int x=-10; x<0; x++ ) pd.draw( RailPattern.get( Direction.WEST, Direction.EAST ), x, 0 ); Modified: trunk/FreeTrain/core/controllers/land/LandController.cs =================================================================== --- trunk/FreeTrain/core/controllers/land/LandController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/core/controllers/land/LandController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -115,8 +115,8 @@ this.groupBox, this.preview}); this.Name = "LandController"; - this.Text = "Land view"; - //! this.Text = "\x92n\x95\"; + this.Text = "Terrain view"; + //! this.Text = "地表"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/core/controllers/land/LandPropertyController.cs =================================================================== --- trunk/FreeTrain/core/controllers/land/LandPropertyController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/core/controllers/land/LandPropertyController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -129,7 +129,7 @@ this.buttonPlace, this.preview}); this.Name = "LandPropertyController"; - this.Text = "Land trade"; + this.Text = "Real estate market"; //! this.Text = "土地売買"; this.ResumeLayout(false); Modified: trunk/FreeTrain/core/controllers/rail/PlatformController.cs =================================================================== --- trunk/FreeTrain/core/controllers/rail/PlatformController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/core/controllers/rail/PlatformController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -469,7 +469,8 @@ case Mode.ThinPlatform: if( isPlacing ) { if(!ThinPlatform.canBeBuilt(loc,direction,length)) { - MainWindow.showError("設置できません"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); return; } new ThinPlatform(loc,direction,length); Modified: trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/contributions/common/FixedSizeStructureController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -29,7 +29,8 @@ protected override void onSelected( Cube cube ) { if( contrib.canBeBuilt(cube.corner) ) { - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not place"); + //! MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); } else { CompletionHandler handler = new CompletionHandler(contrib,cube.corner,true); new ConstructionSite( cube.corner, new EventHandler(handler.handle), contrib.size ); @@ -79,7 +80,8 @@ protected override void onSelected( Cube cube ) { PThreeDimStructure s = World.world.getEntityAt(cube.corner) as PThreeDimStructure; if( s==null || s.type!=contrib ) { - MainWindow.showError("\x8E\xED\x97ނ\xAA\x88Ⴂ\x82܂\xB7"); + MainWindow.showError("Wrong type"); + //! MainWindow.showError("\x8E\xED\x97ނ\xAA\x88Ⴂ\x82܂\xB7"); return; } s.remove(); Modified: trunk/FreeTrain/tools/core/contributions/land/RandomLandBuilder.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/land/RandomLandBuilder.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/contributions/land/RandomLandBuilder.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -13,14 +13,14 @@ namespace freetrain.contributions.land { /// <summary> - /// RandomLandBuilder \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// RandomLandBuilder の概要の説明です。 /// </summary> [Serializable] public class RandomLandBuilder : LandBuilderContribution { public RandomLandBuilder( XmlElement e ) : base(e) { ArrayList array = new ArrayList(); - string[] guids = XmlUtil.selectSingleNode( e, "lands" ).InnerText.Split(' ','\t','\r','\n'); + string[] guids = XmlUtil.selectSingleNode( e, "lands" ).InnerText.Split(' ','¥t','¥r','¥n'); for( int i=0; i<guids.Length; i++ ) { if(guids[i].Length!=0) array.Add(guids[i]); Modified: trunk/FreeTrain/tools/core/contributions/others/EmptyNewGameContributionImpl.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/others/EmptyNewGameContributionImpl.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/contributions/others/EmptyNewGameContributionImpl.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -14,8 +14,10 @@ public EmptyNewGameContributionImpl( XmlElement e ) : base(e) {} public override string author { get { return "-"; } } - public override string name { get { return "\x8B\xF3\x83}\x83b\x83v"; } } - public override string description { get { return "\x89\xBD\x82\xE0\x82Ȃ\xA2\x8B\xF3\x82̃}\x83b\x83v\x82\xF0\x8D쐬\x82\xB5\x82܂\xB7"; } } + public override string name { get { return "Empty map"; } } + //! public override string name { get { return "空マップ"; } } + public override string description { get { return "Create a completely empty map"; } } + //! public override string description { get { return "何もない空のマップを作成します"; } } public override World createNewGame() { using( NewWorldDialog dialog = new NewWorldDialog() ) { Modified: trunk/FreeTrain/tools/core/contributions/others/NewWorldDialog.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/others/NewWorldDialog.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/contributions/others/NewWorldDialog.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -17,7 +17,7 @@ } /// <summary> - /// \x8Eg\x97p\x82\xB3\x82\xEA\x82Ă\xA2\x82郊\x83\\x81[\x83X\x82Ɍ㏈\x97\x9D\x82\xF0\x8E\xC0\x8Ds\x82\xB5\x82܂\xB7\x81B + /// 使用されているリソースに後処理を実行します。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing ) { @@ -30,7 +30,7 @@ #region Windows Form Designer generated code /// <summary> - /// \x95K\x97v\x82ȃf\x83U\x83C\x83i\x95ϐ\x94\x82ł\xB7\x81B + /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.Container components = null; @@ -46,8 +46,8 @@ private System.Windows.Forms.Button cancelButton; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -69,7 +69,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(48, 16); this.label1.TabIndex = 0; - this.label1.Text = "\x96\xBC\x91O(&N):"; + this.label1.Text = "&Name:"; + //! this.label1.Text = "名前(&N):"; // // name // @@ -85,7 +86,8 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 16); this.label2.TabIndex = 2; - this.label2.Text = "\x83T\x83C\x83Y(&S):"; + this.label2.Text = "&Size:"; + //! this.label2.Text = "サイズ(&S):"; // // sizeX // @@ -132,7 +134,8 @@ this.cancelButton.Location = new System.Drawing.Point(224, 64); this.cancelButton.Name = "cancelButton"; this.cancelButton.TabIndex = 7; - this.cancelButton.Text = "\xB7\xACݾ\xD9(&C)"; + this.cancelButton.Text = "&Cancel"; + //! this.cancelButton.Text = "キャンセル(&C)"; // // label4 // @@ -172,7 +175,8 @@ this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "NewWorldDialog"; - this.Text = "\x90V\x82\xB5\x82\xA2\x83Q\x81[\x83\x80\x82̍쐬"; + this.Text = "Create a new game"; + //! this.Text = "新しいゲームの作成"; this.ResumeLayout(false); } @@ -202,7 +206,8 @@ World w = new World( new Distance(x,y+z*2,z), z/4 ); w.name = this.name.Text; if(w.name==null || w.name.Length==0) - w.name = "\x82ȂȂ\xB5\x82\xB3\x82\xF1"; + w.name = "Nanashi-san"; + //! w.name = "ななしさん"; return w; // TODO: Z dimension } Modified: trunk/FreeTrain/tools/core/contributions/train/ParamTrainImpl.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/train/ParamTrainImpl.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/contributions/train/ParamTrainImpl.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -34,7 +34,8 @@ carTailType = getCarType(composition,"tail"); if(carBodyType==null) - throw new FormatException("<body>\x97v\x91f\x82\xAA\x8Ew\x92肳\x82\xEA\x82܂\xB9\x82\xF1\x82ł\xB5\x82\xBD"); + throw new FormatException("<body> part was not specified"); + //! throw new FormatException("<body>要素が指定されませんでした"); composition = null; } @@ -44,11 +45,13 @@ if(e==null) return null; string idref = e.Attributes["carRef"].Value; - if(id==null) throw new FormatException("carRef\x91\xAE\x90\xAB\x82\xAA\x82\xA0\x82\xE8\x82܂\xB9\x82\xF1"); + if(id==null) throw new FormatException("carRef lacks attribute"); + //! if(id==null) throw new FormatException("carRef属性がありません"); TrainCarContribution contrib = (TrainCarContribution)Core.plugins.getContribution(idref); if(contrib==null) throw new FormatException( - string.Format( "id='{0}'\x82\xCCTrainCar\x83R\x83\x93\x83g\x83\x8A\x83r\x83\x85\x81[\x83V\x83\x87\x83\x93\x82\xAA\x82\xA0\x82\xE8\x82܂\xB9\x82\xF1", idref )); + string.Format( "id='{0}' lacks TrainCar contribution", idref )); + //! string.Format( "id='{0}'のTrainCarコントリビューションがありません", idref )); return contrib; } Modified: trunk/FreeTrain/tools/core/contributions/train/ReverseTrainCarImpl.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/train/ReverseTrainCarImpl.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/contributions/train/ReverseTrainCarImpl.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -29,7 +29,8 @@ protected internal override void onInitComplete() { core = Core.plugins.getContribution(baseId) as TrainCarContribution; if(core==null) - throw new FormatException("'"+id+"'\x82\xAA\x8EQ\x8FƂ\xB7\x82\xE9TrainCar\x83R\x83\x93\x83g\x83\x8A\x83r\x83\x85\x81[\x83V\x83\x87\x83\x93'"+baseId+"'\x82\xAA\x8C\xA9\x82\xA9\x82\xE8\x82܂\xB9\x82\xF1"); + throw new FormatException("'"+id+"' refers to TrainCar contribution '"+baseId+"' that could not be found"); + //! throw new FormatException("'"+id+"'が参照するTrainCarコントリビューション'"+baseId+"'が見つかりません"); this._capacity = core.capacity; } Modified: trunk/FreeTrain/tools/core/contributions/train/TrainContribution.cs =================================================================== --- trunk/FreeTrain/tools/core/contributions/train/TrainContribution.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/contributions/train/TrainContribution.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -51,11 +51,16 @@ public string speedDisplayName { get { switch(minutesPerVoxel) { - case 1: return "\x92\xB4\x8D\x82\x91\xAC"; - case 2: return "\x8D\x82\x91\xAC"; - case 3: return "\x92\x86\x91\xAC"; - case 4: return "\x92ᑬ"; - default: return "\x92\xB4\x92ᑬ"; + case 1: return "Highest speed"; + case 2: return "High speed"; + case 3: return "Medium speed"; + case 4: return "Low speed"; + default: return "Lowest speed"; + //! case 1: return "超高速"; + //! case 2: return "高速"; + //! case 3: return "中速"; + //! case 4: return "低速"; + //! default: return "超低速"; } } } Modified: trunk/FreeTrain/tools/core/controllers/AbstractLineController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/AbstractLineController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/controllers/AbstractLineController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -45,8 +45,8 @@ private System.ComponentModel.Container components = null; /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -62,7 +62,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(48, 24); this.buttonRemove.TabIndex = 7; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonRemove.CheckedChanged += new System.EventHandler(this.modeChanged); // @@ -75,7 +76,8 @@ this.buttonPlace.Size = new System.Drawing.Size(48, 24); this.buttonPlace.TabIndex = 6; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x95~\x90\xDD"; + this.buttonPlace.Text = "Place"; + //! this.buttonPlace.Text = "敷設"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonPlace.CheckedChanged += new System.EventHandler(this.modeChanged); // @@ -99,7 +101,8 @@ this.buttonPlace, this.picture}); this.Name = "RoadController"; - this.Text = "\x93\xB9\x98H\x8DH\x8E\x96"; + this.Text = "Road construction"; + //! this.Text = "道路工事"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/tools/core/controllers/land/LandController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/land/LandController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/controllers/land/LandController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -115,7 +115,8 @@ this.groupBox, this.preview}); this.Name = "LandController"; - this.Text = "\x92n\x95\"; + this.Text = "Terrain view"; + //! this.Text = "地表"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/tools/core/controllers/land/LandPropertyController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/land/LandPropertyController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/controllers/land/LandPropertyController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -88,7 +88,8 @@ // costBox // this.costBox.cost = 0; - this.costBox.label = "\x94\xEF\x97p\x81F"; + this.costBox.label = "Cost:"; + //! this.costBox.label = "費用:"; this.costBox.Location = new System.Drawing.Point(8, 88); this.costBox.Name = "costBox"; this.costBox.Size = new System.Drawing.Size(96, 32); @@ -101,7 +102,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(48, 24); this.buttonRemove.TabIndex = 6; - this.buttonRemove.Text = "\x94\x84\x8Bp"; + this.buttonRemove.Text = "Sell"; + //! this.buttonRemove.Text = "売却"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonPlace @@ -113,7 +115,8 @@ this.buttonPlace.Size = new System.Drawing.Size(48, 24); this.buttonPlace.TabIndex = 5; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x8Dw\x93\xFC"; + this.buttonPlace.Text = "Buy"; + //! this.buttonPlace.Text = "購入"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // LandPropertyController @@ -126,7 +129,8 @@ this.buttonPlace, this.preview}); this.Name = "LandPropertyController"; - this.Text = "\x93y\x92n\x94\x84\x94\x83"; + this.Text = "Real estate market"; + //! this.Text = "土地売買"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/tools/core/controllers/rail/PlatformController.cs =================================================================== --- trunk/FreeTrain/tools/core/controllers/rail/PlatformController.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/controllers/rail/PlatformController.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -46,7 +46,7 @@ private Bitmap stationPreviewBitmap; public PlatformController() { - // \x82\xB1\x82̌Ăяo\x82\xB5\x82\xCD Windows \x83t\x83H\x81[\x83\x80 \x83f\x83U\x83C\x83i\x82ŕK\x97v\x82ł\xB7\x81B + // この呼び出しは Windows フォーム デザイナで必要です。 InitializeComponent(); dirN.Tag = Direction.NORTH; @@ -134,8 +134,8 @@ private System.ComponentModel.IContainer components = null; /// <summary> - /// Designer \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82\xC5 - /// \x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̃R\x83\x93\x83e\x83\x93\x83c\x82\xF0\x95ύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// Designer サポートに必要なメソッドです。コード エディタで + /// このメソッドのコンテンツを変更しないでください。 /// </summary> private void InitializeComponent() { @@ -167,7 +167,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(56, 24); this.buttonRemove.TabIndex = 1; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonPlace @@ -179,7 +180,8 @@ this.buttonPlace.Size = new System.Drawing.Size(56, 24); this.buttonPlace.TabIndex = 0; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x90ݒu"; + this.buttonPlace.Text = "Build"; + //! this.buttonPlace.Text = "設置"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // stationPage @@ -192,7 +194,8 @@ this.stationPage.Name = "stationPage"; this.stationPage.Size = new System.Drawing.Size(128, 167); this.stationPage.TabIndex = 1; - this.stationPage.Text = "\x89w\x8E\xC9"; + this.stationPage.Text = "Station"; + //! this.stationPage.Text = "駅舎"; // // stationType // @@ -228,7 +231,8 @@ this.platformPage.Name = "platformPage"; this.platformPage.Size = new System.Drawing.Size(128, 167); this.platformPage.TabIndex = 0; - this.platformPage.Text = "\x83z\x81[\x83\x80"; + this.platformPage.Text = "Platform"; + //! this.platformPage.Text = "ホーム"; // // checkSlim // @@ -236,7 +240,8 @@ this.checkSlim.Name = "checkSlim"; this.checkSlim.Size = new System.Drawing.Size(104, 16); this.checkSlim.TabIndex = 7; - this.checkSlim.Text = "\x83X\x83\x8A\x83\x80\x82ȃz\x81[\x83\x80"; + this.checkSlim.Text = "Slim platform"; + //! this.checkSlim.Text = "スリムなホーム"; this.checkSlim.CheckedChanged += new System.EventHandler(this.onModeChanged); // // dirS @@ -278,7 +283,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 24); this.label1.TabIndex = 2; - this.label1.Text = "\x92\xB7\x82\xB3(&L)\x81F"; + this.label1.Text = "&Length"; + //! this.label1.Text = "長さ(&L):"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // lengthBox @@ -339,7 +345,8 @@ this.buttonPlace, this.buttonRemove}); this.Name = "PlatformController"; - this.Text = "\x89w\x8DH\x8E\x96"; + this.Text = "Station construction"; + //! this.Text = "駅工事"; this.stationPage.ResumeLayout(false); this.platformPage.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.lengthBox)).EndInit(); @@ -428,7 +435,8 @@ case Mode.Station: if( isPlacing ) { if(!selectedStation.canBeBuilt(loc)) { - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); } else { selectedStation.create(loc,true); } @@ -441,7 +449,8 @@ case Mode.FatPlatform: if( isPlacing ) { if(!FatPlatform.canBeBuilt(loc,direction,length)) { - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); return; } new FatPlatform(loc,direction,length); @@ -451,7 +460,8 @@ if(p.canRemove) p.remove(); else - MainWindow.showError("\x93P\x8B\x8E\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not remove"); + //! MainWindow.showError("撤去できません"); } } return; @@ -459,7 +469,8 @@ case Mode.ThinPlatform: if( isPlacing ) { if(!ThinPlatform.canBeBuilt(loc,direction,length)) { - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not build"); + //! MainWindow.showError("設置できません"); return; } new ThinPlatform(loc,direction,length); @@ -469,7 +480,8 @@ if(p.canRemove) p.remove(); else - MainWindow.showError("\x93P\x8B\x8E\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not remove"); + //! MainWindow.showError("撤去できません"); } } return; Modified: trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs =================================================================== --- trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs 2007-03-31 13:40:53 UTC (rev 18) +++ trunk/FreeTrain/tools/core/framework/ErrorMessageBox.cs 2007-04-01 14:32:19 UTC (rev 19) @@ -37,13 +37,13 @@ base.Icon = SystemIcons.Error; icon.Image = SystemIcons.Error.ToBitmap(); - detail.Text = e.Message + "\n" + e.StackTrace; + detail.Text = e.Message + "\x81_n" + e.StackTrace; while(true) { e = e.InnerException; if(e==null) break; - detail.Text = detail.Text + "\n" + e.Message + "\n" + e.StackTrace; + detail.Text = detail.Text + "\x81_n" + e.Message + "\x81_n" + e.StackTrace; } detail.Select(0,0); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <him...@us...> - 2007-03-31 13:40:53
|
Revision: 18 http://freetrain.svn.sourceforge.net/freetrain/?rev=18&view=rev Author: himasaram Date: 2007-03-31 06:40:53 -0700 (Sat, 31 Mar 2007) Log Message: ----------- Plugins fully translated Modified Paths: -------------- trunk/FreeTrain/plugins/org.kohsuke.freetrain.music.bell/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.qra/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.teha/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.ayase/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.c915/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.hima/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ayase/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c477/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c915/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.cozy/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.eshi/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.hima/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ima/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.miha/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.nokto/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.osakaCastle/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.others/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.pcb/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ryokounotomo/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.syousei/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ContributionImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ManualTrainController.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionConfigDialog.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/StationAdvancedDialog.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/StationConfigDialog.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/TATModalController.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/TATTrainController.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/TATTrainControllerPlugIn.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/src/CliffPlacementStrategy.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/src/CliffRemovalStrategy.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/src/TerraceContributionImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/src/TerraceController.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/src/TerracePlacementStrategy.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.terrain.terrace/src/TerraceRemovalStrategy.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.dbgwnd/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.dbgwnd/src/AssemblyInfo.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.dbgwnd/src/DebugWindowPlugIn.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.dbgwnd/src/TraceWindow.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.lvinspect/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/src/LoadDialog.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.terrainloader/src/PluginImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/ConfigDialog.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/VCRConsole.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/VCRContribution.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.tools.vcr/src/VCRController.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.trains/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.trains.colorTest/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.trains.colorTest/src/ColorConfigCommand.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.trains.colorTest/src/ColorConfigDialog.cs trunk/FreeTrain/plugins/system/plugin.xml Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.music.bell/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.music.bell/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.music.bell/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,6 +1,6 @@ -<?xml version="1.0" encoding="Shift_JIS"?> +<?xml version="1.0" encoding="UTF-8"?> <plug-in> - <title>Train bell set</title> + <title>Departure bell set</title> <!--!<title>発車ベルセット</title>--> <author>915さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> <title>Road</title> <!--!<title>道路</title>--> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.station/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE plug-in [ <!ENTITY localStation " - <group>\x83\x8D\x81[\x83J\x83\x8B\x89w\x8E\xC9</group> + <group>Local station</group> + <!--!<group>ローカル駅舎</group>--> <price>1800</price> <size>1,1</size> <height>1</height> @@ -9,7 +10,8 @@ "> <!ENTITY cityStation " - <group>\x93s\x89\xEF\x8C^\x89w\x8E\xC9</group> + <group>City station</group> + <!--!<group>都会型駅舎</group>--> <price>6000</price> <size>1,1</size> <height>2</height> @@ -17,19 +19,21 @@ "> <!ENTITY lowerDeckStation " - <group>\x8D\x82\x89ˉ\xBA\x89w\x8E\xC9</group> + <group>Lower deck station</group> + <!--!<group>高架下駅舎</group>--> <price>6000</price> <height>1</height> <operationCost>210</operationCost> "> ]> <plug-in> - <title>\x8A\xEE\x96{\x89w\x8EɃL\x83b\x83g</title> - <author>\x8AG\x8Et\x8C\xA9\x8FK\x82\xA2</author> + <title>Standard station kit</title> + <!--!<title>基本駅舎キット</title>--> + <author>絵師見習い</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="station" id="{E1C41DF8-6C9B-465d-A798-2624551AC4FD}"> - <name>\x83\x8D\x81[\x83J\x83\x8B\x89w\x8E\xC91(L)</name> + <name>ローカル駅舎1(L)</name> &localStation; <sprite origin="0,0" offset="16"> <picture src="local1-02.bmp" /> @@ -37,7 +41,8 @@ </contribution> <contribution type="station" id="{1F332AE9-97B7-42eb-A434-03F4F952081A}"> - <name>\x83\x8D\x81[\x83J\x83\x8B\x89w\x8E\xC91(R)</name> + <name>Local station 1 (R)</name> + <!--!<name>ローカル駅舎1(R)</name>--> &localStation; <sprite origin="0,0" offset="16"> <picture src="local1-02r.bmp" /> @@ -45,7 +50,8 @@ </contribution> <contribution type="station" id="{723092AA-BC86-4fca-BA98-42B60B7D4151}"> - <name>\x83\x8D\x81[\x83J\x83\x8B\x89w\x8E\xC92(L)</name> + <name>Local station 2 (L)</name> + <!--!<name>ローカル駅舎2(L)</name>--> &localStation; <sprite origin="0,0" offset="16"> <picture src="local2-01.bmp" /> @@ -53,7 +59,8 @@ </contribution> <contribution type="station" id="{6F5B56E6-F21E-41ba-89FC-B037E5EB0BE7}"> - <name>\x83\x8D\x81[\x83J\x83\x8B\x89w\x8E\xC92(R)</name> + <name>Local station 2 (R)</name> + <!--!<name>ローカル駅舎2(R)</name>--> &localStation; <sprite origin="0,0" offset="16"> <picture src="local2-01r.bmp" /> @@ -61,7 +68,8 @@ </contribution> <contribution type="station" id="{DFF22973-08DB-4064-8CD6-26BAB537C0F0}"> - <name>\x93s\x89\xEF\x8C^\x89w\x8E\xC9(L)</name> + <name>City station (L)</name> + <!--!<name>都会型駅舎(L)</name>--> &cityStation; <sprite origin="0,0" offset="32"> <picture src="city1-02.bmp" /> @@ -69,7 +77,8 @@ </contribution> <contribution type="station" id="{F9508B52-B25C-439e-811C-82B5A259676A}"> - <name>\x93s\x89\xEF\x8C^\x89w\x8E\xC9(R)</name> + <name>City station (R)</name> + <!--!<name>都会型駅舎(R)</name>--> &cityStation; <sprite origin="0,0" offset="32"> <picture src="city1-02r.bmp" /> @@ -77,7 +86,8 @@ </contribution> <contribution type="station" id="{351D49DD-8682-4c4a-8BC3-1B8560CD7FE9}"> - <name>\x8D\x82\x89ˉ\xBA\x89w\x8E\xC9(L)</name> + <name>Lower deck station (L)</name> + <!--!<name>高架下駅舎(L)</name>--> <size>1,2</size> &lowerDeckStation; <sprite origin="0,0" offset="7"> @@ -86,7 +96,8 @@ </contribution> <contribution type="station" id="{A8392557-3054-4017-8948-F3FC22A71D0E}"> - <name>\x8D\x82\x89ˉ\xBA\x89w\x8E\xC9(R)</name> + <name>Lower deck station (R)</name> + <!--!<name>高架下駅舎(R)</name>--> <size>2,1</size> &lowerDeckStation; <sprite origin="0,0" offset="15"> @@ -95,7 +106,8 @@ </contribution> <contribution type="station" id="{3D64E31D-0579-4d37-920A-5A5201A8C984}"> - <name>\x94\x9F\x8Aىw</name> + <name>Hakodate Station</name> + <!--!<name>函館駅</name>--> <price>6000</price> <size>1,2</size> <height>2</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.qra/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.qra/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.qra/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,13 +1,15 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE plug-in [ <!ENTITY WoodenStation " - <group>\x92n\x8F\xE3\x89w\x8E\xC9</group> + <group>Overground station</group> + <!--!<group>地上駅舎</group>--> <price>1200</price> <height>1</height> <operationCost>100</operationCost> "> <!ENTITY PRStation " - <group>\x92n\x8F\xE3\x89w\x8E\xC9</group> + <group>Overground station</group> + <group>地上駅舎</group> <price>1500</price> <height>1</height> <operationCost>120</operationCost> @@ -49,7 +51,8 @@ '> ]> <plug-in> - <title>\x89w\x8E\xC9</title> + <title>Station</title> + <!--!<title>駅舎</title>--> <author>qra_ra</author> <homepage></homepage> @@ -58,7 +61,8 @@ </contribution> <contribution type="station" id="{372D89DD-0A01-554B-8BC3-8B8567CA7F59}"> - <name>\x96ؑ\xA2\x89w\x8EɁi\x93\xFC\x8C\xFB\x91\xA4\x81jL</name> + <name>Wooden station (entrance) L</name> + <!--!<name>木造駅舎(入口側)L</name>--> <size>1,2</size> &WoodenStation; <sprite origin="0, 0" offset="8"> @@ -67,7 +71,8 @@ </contribution> <contribution type="station" id="{372D89DD-0A02-554B-8BC3-8B8567CA7F59}"> - <name>\x96ؑ\xA2\x89w\x8EɁi\x93\xFC\x8C\xFB\x91\xA4\x81jR</name> + <name>Wooden station (entrance) R</name> + <!--!<name>木造駅舎(入口側)R</name>--> <size>2,1</size> &WoodenStation; <sprite origin="48,0" offset="16"> @@ -76,7 +81,8 @@ </contribution> <contribution type="station" id="{372D89DD-0A03-554B-8BC3-8B8567CA7F59}"> - <name>\x96ؑ\xA2\x89w\x8EɁi\x89\xFC\x8ED\x8C\xFB\x91\xA4\x81jL</name> + <name>Wooden station (ticket gate) L</name> + <!--!<name>木造駅舎(改札口側)L</name>--> <size>1,2</size> &WoodenStation; <sprite origin="96,0" offset="8"> @@ -85,7 +91,8 @@ </contribution> <contribution type="station" id="{372D89DD-0A04-554B-8BC3-8B8567CA7F59}"> - <name>\x96ؑ\xA2\x89w\x8EɁi\x89\xFC\x8ED\x8C\xFB\x91\xA4\x81jR</name> + <name>Wooden station (ticket gate) R</name> + <!--!<name>木造駅舎(改札口側)R</name>--> <size>2,1</size> &WoodenStation; <sprite origin="144,0" offset="16"> @@ -96,7 +103,8 @@ <contribution type="station" id="{372D89DD-0B01-554B-8BC3-8B8567CA7F59}"> - <name>\x8E\x84\x93S\x89w\x8EɁi\x93\xFC\x8C\xFB\x91\xA4\x81jL</name> + <name>Private station (entrance) L</name> + <!--!<name>私鉄駅舎(入口側)L</name>--> <size>1,2</size> &PRStation; <sprite origin="0, 0" offset="8"> @@ -106,7 +114,8 @@ </contribution> <contribution type="station" id="{372D89DD-0B02-554B-8BC3-8B8567CA7F59}"> - <name>\x8E\x84\x93S\x89w\x8EɁi\x93\xFC\x8C\xFB\x91\xA4\x81jR</name> + <name>Private station (entrance) R</name> + <!--!<name>私鉄駅舎(入口側)R</name>--> <size>2,1</size> &PRStation; <sprite origin="48,0" offset="16"> @@ -116,7 +125,8 @@ </contribution> <contribution type="station" id="{372D89DD-0B03-554B-8BC3-8B8567CA7F59}"> - <name>\x8E\x84\x93S\x89w\x8EɁi\x89\xFC\x8ED\x8C\xFB\x91\xA4\x81jL</name> + <name>Private station (ticket gate) L</name> + <!--!<name>私鉄駅舎(改札口側)L</name>--> <size>1,2</size> &PRStation; <sprite origin="96,0" offset="8"> @@ -126,7 +136,8 @@ </contribution> <contribution type="station" id="{372D89DD-0B04-554B-8BC3-8B8567CA7F59}"> - <name>\x8E\x84\x93S\x89w\x8EɁi\x89\xFC\x8ED\x8C\xFB\x91\xA4\x81jR</name> + <name>Private station (ticket gate) R</name> + <!--!<name>私鉄駅舎(改札口側)R</name>--> <size>2,1</size> &PRStation; <sprite origin="144,0" offset="16"> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.teha/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.teha/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.station.teha/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE plug-in [ <!ENTITY unmannedStation " - <group>\x96\xB3\x90l\x89w</group> + <group>Unmanned station</group> + <!--!<group>無人駅</group>--> <price>100</price> <size>1,1</size> <height>1</height> @@ -9,8 +10,9 @@ "> ]> <plug-in> - <title>\x96\xB3\x90l\x89w</title> - <author>\x82Ă\xCD(\x83w\x83{\x83h\x83b\x83^</author> + <title>Unmanned station</title> + <!--!<title>無人駅</title>--> + <author>ては(ヘボドッタ</author> <homepage>http://www.cwo.zaq.ne.jp/pant012/freetrain/</homepage> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.ayase/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.ayase/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.ayase/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x82\xE0\x82\xC1\x82Ƌ\xB4\x8Br</title> - <author>\x88\xBB\x90\xA3\x82\xB3\x82\xF1</author> + <title>More piers</title> + <!--!<title>もっと橋脚</title>--> + <author>綾瀬さん</author> <homepage>http://www14.big.or.jp/~ayase/freetrain/</homepage> @@ -11,7 +12,8 @@ </contribution> <contribution type="railStationary" id="{8FC8DE03-C9FD-4154-B097-0165ADC2C849}"> - <group>\x83\x8C\x83\x93\x83K\x8B\xB4\x8Br</group> + <group>Brick pier</group> + <!--!<group>レンガ橋脚</group>--> <price>10</price> <size>1,1</size> <height>1</height> @@ -21,7 +23,8 @@ </contribution> <contribution type="railStationary" id="{556E9EC4-5751-43DA-8F08-A1484E233811}"> - <group>\x83\x8C\x83\x93\x83K\x8B\xB4\x8Br</group> + <group>Brick pier</group> + <!--!<group>レンガ橋脚</group>--> <price>10</price> <size>1,1</size> <height>1</height> @@ -31,7 +34,8 @@ </contribution> <contribution type="railStationary" id="{8A245079-053D-4A9E-AC8B-43292512BBD3}"> - <group>\x83R\x83\x93\x83N\x83\x8A\x81[\x83g\x8B\xB4\x8Br</group> + <group>Concrete pier</group> + <!--!<group>コンクリート橋脚</group>--> <price>10</price> <size>1,1</size> <height>1</height> @@ -41,7 +45,8 @@ </contribution> <contribution type="railStationary" id="{CBCF4E66-6BA3-4A06-95A0-161E6C95F7EB}"> - <group>\x83R\x83\x93\x83N\x83\x8A\x81[\x83g\x8B\xB4\x8Br</group> + <group>Concrete pier</group> + <!--!<group>コンクリート橋脚</group>--> <price>10</price> <size>1,1</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.c915/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.c915/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.c915/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x83\x8C\x83\x93\x83K\x8B\xB4\x8Br</title> - <author>915\x82\xB3\x82\xF1</author> + <title>Brick piers</title> + <!--!<title>レンガ橋脚</title>--> + <author>915さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> @@ -11,7 +12,8 @@ </contribution> <contribution type="railStationary" id="{6EFAC132-DEAF-4989-BDE4-5865B1669986}"> - <group>\x83\x8C\x83\x93\x83K\x8B\xB4\x8Br</group> + <group>Brick pier</group> + <!--!<group>レンガ橋脚</group>--> <price>10</price> <size>1,1</size> <height>1</height> @@ -21,7 +23,8 @@ </contribution> <contribution type="railStationary" id="{FB233435-5BA0-4699-8CB8-F6D0E435BF4F}"> - <group>\x83\x8C\x83\x93\x83K\x8B\xB4\x8Br</group> + <group>Brick pier</group> + <!--!<group>レンガ橋脚</group>--> <price>10</price> <size>1,1</size> <height>1</height> @@ -38,7 +41,8 @@ </contribution> <contribution type="station" id="{3DCA36FF-F475-44f8-A33F-4AD032BE3F69}"> - <group>\x93\x8C\x8B\x9E\x89w</group> + <group>Tokyo Station</group> + <!--!<group>東京駅</group>--> <price>18000</price> <size>9,2</size> <height>2</height> @@ -49,7 +53,8 @@ </contribution> <contribution type="station" id="{000B7EA8-D97B-4BD0-899F-B3808E7339AF}"> - <group>\x93\x8C\x8B\x9E\x89w</group> + <group>Tokyo Station</group> + <!--!<group>東京駅</group>--> <price>18000</price> <size>2,9</size> <height>2</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.hima/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.hima/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.stationary.hima/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x90M\x8D\x86\x8F\x8A</title> - <author>\x89ɂ\xB3\x82\xF1</author> + <title>Signal cabin</title> + <!--!<title>信号所</title>--> + <author>暇さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> @@ -11,7 +12,8 @@ </contribution> <contribution type="railStationary" id="{DF1FC459-80D0-4A83-8F6E-63255E7ACA17}"> - <group>\x90M\x8D\x86\x8F\x8A</group> + <group>Signal cabin</group> + <!--!<group>信号所</group>--> <price>30</price> <size>1,1</size> <height>1</height> @@ -21,7 +23,8 @@ </contribution> <contribution type="railStationary" id="{FCD0126A-4B66-48D4-824A-936EB06FC44B}"> - <group>\x90M\x8D\x86\x8F\x8A</group> + <group>Signal cabin</group> + <!--!<group>信号所</group>--> <price>10</price> <size>1,1</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ayase/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ayase/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ayase/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8D`\x98p\x90ݔ\xF5</title> - <author>\x88\xBB\x90\xA3\x82\xB3\x82\xF1</author> + <title>Port facility</title> + <!--!<title>港湾設備</title>--> + <author>綾瀬さん</author> <homepage>http://www14.big.or.jp/~ayase/freetrain/</homepage> @@ -11,7 +12,8 @@ </contribution> <contribution type="commercial" id="{DBE8EACF-C94D-4e02-AA29-43AC34F96AC9}"> - <group>\x8D`\x98p\x8E{\x90\xDD</group> + <group>Port facility</group> + <!--!<group>港湾施設</group>--> <price>1200</price> <size>2,4</size> <height>2</height> @@ -21,7 +23,8 @@ </contribution> <contribution type="commercial" id="{24146DB8-A1CB-4355-8B26-705F2FB885D7}"> - <group>\x8D`\x98p\x8E{\x90\xDD</group> + <group>Port facility</group> + <!--!<group>港湾施設</group>--> <price>1200</price> <size>4,2</size> <height>2</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c477/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c477/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c477/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE plug-in [ <!ENTITY colorMapTest ' <spriteType name="colorMapped"> @@ -51,7 +51,8 @@ </population> '> <!ENTITY SinjukuMitsuiParam ' - <group>\x90V\x8Fh\x8EO\x88\xE4\x83r\x83\x8B</group> + <group>Shinjuku Mitsui Building</group> + <!--!<group>新宿三井ビル</group>--> <price>39000</price> <minHeight>3</minHeight> <maxHeight>10</maxHeight> @@ -68,7 +69,8 @@ </population> '> <!ENTITY SinjukuSumitomoParam ' - <group>\x90V\x8Fh\x8FZ\x97F\x83r\x83\x8B</group> + <group>Shinjuku Sumitomo Building</group> + <!--!<group>新宿住友ビル</group>--> <price>30000</price> <size>5,5</size> <minHeight>3</minHeight> @@ -104,13 +106,16 @@ <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>477\x82\xB3\x82\xF1</author> - <homepage>http://www.rocket.ne.jp/~nao/</homepage> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>477さん</author> + <homepage>http://www.rocket.ne.jp/‾nao/</homepage> <contribution type="commercial" id="{BC43CE38-601A-42c7-992A-6049CCD29B94}"> - <group>\x83R\x83\x93\x83r\x83j</group> - <name>\x83Z\x83u\x83\x93\x83C\x83\x8C\x83u\x83\x93</name> + <group>Convenience store</group> + <!--!<group>コンビニ</group>--> + <name>7-Eleven</name> + <!--!<name>セブンイレブン</name>--> <price>200</price> <size>1,1</size> <height>1</height> @@ -126,7 +131,8 @@ </contribution> <contribution type="commercial" id="{2C3ED0DA-FBA1-4586-9691-67DC93B851C9}"> - <name>\x98V\x95ܕS\x89ݓX</name> + <name>Shinise Department Store</name> + <!--!<name>老舗百貨店</name>--> <price>2800</price> <size>2,2</size> <height>3</height> @@ -142,7 +148,8 @@ </contribution> <contribution type="commercial" id="{9F3E82AD-2A49-4aef-954C-E872F535B3D8}"> - <name>\x95\xAA\x8F\xF7\x83}\x83\x93\x83V\x83\x87\x83\x93</name> + <name>Condo</name> + <!--!<name>分譲マンション</name>--> <price>2400</price> <size>2,2</size> <height>3</height> @@ -158,7 +165,8 @@ </contribution> <contribution type="commercial" id="{27D6D0C0-2B1A-4494-9257-14C208168075}"> - <name>\x95\xAA\x8F\xF7\x8FZ\x91\xEE\x88\xEA\x8Cˌ\x9A\x82\xC4</name> + <name>Single condo</name> + <!--!<name>分譲住宅一戸建て</name>--> <price>110</price> <size>1,1</size> <height>1</height> @@ -179,7 +187,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-0"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -194,7 +203,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-1"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -209,7 +219,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-2"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -224,7 +235,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-3"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -239,7 +251,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-4"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -254,7 +267,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-5"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -269,7 +283,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-6"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -284,7 +299,8 @@ </contribution> <contribution type="commercial" id="{B99FA2F7-F138-46a1-99F7-34AE23A157F6}-7"> - <name>\x92\x86\x91w\x8EG\x8B\x8F\x83I\x83t\x83B\x83X\x83r\x83\x8B</name> + <name>Medium-rise office building</name> + <!--!<name>中層雑居オフィスビル</name>--> <price>1600</price> <size>2,2</size> <height>3</height> @@ -304,7 +320,8 @@ </contribution> <contribution type="varHeightBuilding" id="{442C7E12-A3BA-4c25-9129-C3803EA760BC}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>3,2</size> <minHeight>2</minHeight> @@ -329,7 +346,8 @@ <contribution type="varHeightBuilding" id="{8495D468-B2EF-4816-9C2A-67D8D68FCBDA}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>2,3</size> <minHeight>2</minHeight> @@ -353,7 +371,8 @@ <contribution type="varHeightBuilding" id="{1E3FC997-DD98-4b47-82E0-D1C5914B9537}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>3,2</size> <minHeight>2</minHeight> @@ -377,7 +396,8 @@ <contribution type="varHeightBuilding" id="{615FF4AA-898E-466f-8004-1855F82C1B5B}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>2,3</size> <minHeight>2</minHeight> @@ -416,7 +436,8 @@ </contribution> <contribution type="varHeightBuilding" id="{9BF4DD25-050A-4633-BC8B-0B8B226FC5E8}"> - <group>\x91݂\xB5\x83r\x83\x8B(\x83w\x83\x8A\x83|\x81[\x83g\x95t)</group> + <group>Building for rent (with heliport)</group> + <!--!<group>貸しビル(ヘリポート付)</group>--> <price>4800</price> <size>3,2</size> <minHeight>3</minHeight> @@ -437,7 +458,8 @@ <contribution type="varHeightBuilding" id="{5E12C371-F928-40f4-B661-FFC2DC71750E}"> - <group>\x91݂\xB5\x83r\x83\x8B(\x83w\x83\x8A\x83|\x81[\x83g\x95t)</group> + <group>Building for rent (with heliport)</group> + <!--!<group>貸しビル(ヘリポート付)</group>--> <price>4800</price> <size>2,3</size> <minHeight>3</minHeight> @@ -775,7 +797,8 @@ </contribution> <contribution type="varHeightBuilding" id="{1F81CA6C-4D44-418B-A242-A9E4104648D3}"> - <name>\x8F\xAC\x8BK\x96͎G\x8B\x8F\x83r\x83\x8B</name> + <name>Small scale office building</name> + <!--!<name>小規模雑居ビル</name>--> <price>250</price> <size>1,1</size> <minHeight>2</minHeight> @@ -795,7 +818,8 @@ </contribution> <contribution type="varHeightBuilding" id="{5FACC378-154D-4FAE-8BDE-3C2DA1BAB635}"> - <name>\x8F\xAC\x8BK\x96͎G\x8B\x8F\x83r\x83\x8B</name> + <name>Small scale office building</name> + <!--!<name>小規模雑居ビル</name>--> <price>250</price> <size>1,1</size> <minHeight>2</minHeight> @@ -824,7 +848,8 @@ </contribution> <contribution type="varHeightBuilding" id="{736F1D68-3796-43F7-8495-11AE63F86F8E}"> - <name>\x8F\xAC\x8BK\x96͎G\x8B\x8F\x83r\x83\x8B</name> + <name>Small scale office building</name> + <!--!<name>小規模雑居ビル</name>--> <price>250</price> <size>1,1</size> <minHeight>2</minHeight> @@ -844,7 +869,8 @@ </contribution> <contribution type="varHeightBuilding" id="{813736D4-63A5-44DE-884C-7B10CFAEA582}"> - <name>\x8F\xAC\x8BK\x96͎G\x8B\x8F\x83r\x83\x8B</name> + <name>Small scale office building</name> + <!--!<name>小規模雑居ビル</name>--> <price>250</price> <size>1,1</size> <minHeight>2</minHeight> @@ -875,7 +901,8 @@ </contribution> <contribution type="varHeightBuilding" id="{542C633F-5F59-495E-9CF2-9BB46980F9EA}"> - <name>\x8F\xAC\x8BK\x96͎G\x8B\x8F\x83r\x83\x8B</name> + <name>Small scale office building</name> + <!--!<name>小規模雑居ビル</name>--> <price>250</price> <size>1,1</size> <minHeight>2</minHeight> @@ -895,7 +922,8 @@ </contribution> <contribution type="varHeightBuilding" id="{346B2781-75A7-4EE3-BF36-9C8B212DD678}"> - <name>\x8F\xAC\x8BK\x96͎G\x8B\x8F\x83r\x83\x8B</name> + <name>Small scale office building</name> + <!--!<name>小規模雑居ビル</name>--> <price>250</price> <size>1,1</size> <minHeight>2</minHeight> @@ -920,9 +948,10 @@ - <!-- \x90F\x91ւ\xA6\x82̎\xC0\x8C\xB1 --> + <!-- 色替えの実験 --> <contribution type="varHeightBuilding" id="{40CBC11A-36B2-40BB-9A2D-EAA48973C478}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>3,2</size> <minHeight>2</minHeight> @@ -945,7 +974,8 @@ </contribution> <contribution type="varHeightBuilding" id="{8495D468-B2EF-4816-9C2A-67D8D68F0002}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>2,3</size> <minHeight>2</minHeight> @@ -969,7 +999,8 @@ <contribution type="varHeightBuilding" id="{1E3FC997-DD98-4b47-82E0-D1C5914B0002}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>3,2</size> <minHeight>2</minHeight> @@ -993,7 +1024,8 @@ <contribution type="varHeightBuilding" id="{615FF4AA-898E-466f-8004-1855F82C0002}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>2,3</size> <minHeight>2</minHeight> @@ -1017,7 +1049,8 @@ <contribution type="varHeightBuilding" id="{40CBC11A-36B2-40BB-C477-EAA48973C478}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>3,2</size> <minHeight>2</minHeight> @@ -1040,7 +1073,8 @@ </contribution> <contribution type="varHeightBuilding" id="{8495D468-B2EF-4816-C477-67D8D68F0002}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>2,3</size> <minHeight>2</minHeight> @@ -1064,7 +1098,8 @@ <contribution type="varHeightBuilding" id="{1E3FC997-DD98-4b47-C477-D1C5914B0002}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>3,2</size> <minHeight>2</minHeight> @@ -1088,7 +1123,8 @@ <contribution type="varHeightBuilding" id="{615FF4AA-898E-466f-C477-1855F82C0002}"> - <group>\x91݂\xB5\x83r\x83\x8B(A)</group> + <group>Building for rent (A)</group> + <!--!<group>貸しビル(A)</group>--> <price>3900</price> <size>2,3</size> <minHeight>2</minHeight> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c915/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c915/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.c915/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE plug-in [ <!ENTITY smallBuildingParam ' - <group>\x91݂\xB5\x83r\x83\x8B(B)</group> + <group>Building for rent (B)</group> + <!--!<group>貸しビル(B)</group>--> <price>350</price> <size>1,1</size> <minHeight>2</minHeight> @@ -12,7 +13,8 @@ </population> '> <!ENTITY building2x2Param ' - <group>\x91݂\xB5\x83r\x83\x8B(2x2)</group> + <group>Building for rent (2x2)</group> + <!--!<group>貸しビル(2x2)</group>--> <price>3000</price> <size>2,2</size> <minHeight>3</minHeight> @@ -24,12 +26,14 @@ '> ]> <plug-in> - <title>\x82\xA8\x8E\x9B</title> - <author>915\x82\xB3\x82\xF1</author> + <title>Temple</title> + <!--!<title>お寺</title>--> + <author>915さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="commercial" id="{628C6F59-9B1A-48a8-8815-48AC0D15765E}"> - <name>\x82\xA8\x8E\x9B</name> + <name>Temple</name> + <!--!<name>お寺</name>--> <price>1600</price> <size>2,2</size> <height>1</height> @@ -50,7 +54,8 @@ </contribution> <contribution type="commercial" id="{DD8340A1-BD1A-4E2E-B42D-F162D6D6CE65}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> @@ -64,7 +69,8 @@ </contribution> <contribution type="commercial" id="{22532C5A-CE0B-4C4D-9DC8-C7FC7C5A3FE5}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> @@ -78,7 +84,8 @@ </contribution> <contribution type="commercial" id="{15D9C4FA-0F6E-4915-B19F-CDBB19C29AB4}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> @@ -92,7 +99,8 @@ </contribution> <contribution type="commercial" id="{FA1FDEDE-6E4E-48F2-A45C-DFEA3979D1D3}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> @@ -106,7 +114,8 @@ </contribution> <contribution type="commercial" id="{0C468024-EB7E-44BE-8026-326FC3F09539}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> @@ -120,7 +129,8 @@ </contribution> <contribution type="commercial" id="{924FBFF1-69E4-49C6-9067-86D915638A9A}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> @@ -134,7 +144,8 @@ </contribution> <contribution type="commercial" id="{26601128-3116-4EFA-AB8E-233BC566D031}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> @@ -148,7 +159,8 @@ </contribution> <contribution type="commercial" id="{91857E01-6499-40CE-8825-6D52247F80C9}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (small)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.cozy/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.cozy/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.cozy/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,12 +1,15 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>cozy@E.G.R.\x82\xB3\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>cozy@E.G.R.さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="commercial" id="{487900B6-EBCA-4c98-9E28-194050E9706D}"> - <group>\x83R\x83\x93\x83r\x83j</group> - <name>\x83t\x83@\x83~\x83\x8A\x81[\x83}\x81[\x83g</name> + <group>Convenience store</group> + <name>Family Mart</name> + <!--!<group>コンビニ</group> + <name>ファミリーマート</name>--> <price>200</price> <size>1,1</size> <height>1</height> @@ -20,7 +23,8 @@ </contribution> <contribution type="commercial" id="{D6DED1EF-FA6F-4734-A4CA-46D217A1EC1F}"> - <name>\x83\x84\x83}\x83_\x93d\x8B@</name> + <name>Yamada Denki</name> + <!--!<name>ヤマダ電機</name>--> <price>1600</price> <size>2,2</size> <height>2</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.eshi/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.eshi/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.eshi/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,11 +1,13 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>\x8AG\x8Et\x8C\xA9\x8FK\x82\xA2\x82\xB3\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>絵師見習いさん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="commercial" id="{DD1224B9-2F1A-4c25-9E65-4E604F3342C7}"> - <group>\x8Bg\x96\xEC\x89\xC6</group> + <group>Yoshinoya</group> + <!--!<group>吉野家</group>--> <price>250</price> <size>1,1</size> <height>2</height> @@ -19,7 +21,8 @@ </contribution> <contribution type="commercial" id="{19F42929-9606-4cfb-A2F0-EFE323487DC6}"> - <group>\x8Bg\x96\xEC\x89\xC6</group> + <group>Yoshinoya</group> + <!--!<group>吉野家</group>--> <price>400</price> <size>1,2</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.hima/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.hima/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.hima/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>\x89ɂ\xB3\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>暇さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> @@ -12,7 +13,8 @@ </contribution> <contribution type="commercial" id="{3D8FA264-BE4A-4a4f-97E6-950779C89599}"> - <group>\x88\xEA\x8Cˌ\x9A\x82\xC4</group> + <group>Single house</group> + <!--!<group>一戸建て</group>--> <price>100</price> <size>1,1</size> <height>1</height> @@ -26,7 +28,8 @@ </contribution> <contribution type="commercial" id="{8B0106A0-64A4-4680-B258-232B1A5E0B0E}"> - <group>\x88\xEA\x8Cˌ\x9A\x82\xC4</group> + <group>Single house</group> + <!--!<group>一戸建て</group>--> <price>100</price> <size>1,1</size> <height>1</height> @@ -40,7 +43,8 @@ </contribution> <contribution type="commercial" id="{982E924F-BA22-4ace-A71C-4523719A8444}"> - <group>\x88\xEA\x8Cˌ\x9A\x82\xC4</group> + <group>Single house</group> + <!--!<group>一戸建て</group>--> <price>100</price> <size>1,1</size> <height>1</height> @@ -54,7 +58,8 @@ </contribution> <contribution type="commercial" id="{F193C000-DFEB-4588-B658-D11CD80C39D5}"> - <group>\x88\xEA\x8Cˌ\x9A\x82\xC4</group> + <group>Single house</group> + <!--!<group>一戸建て</group>--> <price>100</price> <size>1,1</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ima/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ima/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ima/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,11 +1,13 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>ima\x82\xB3\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>imaさん</author> <homepage>mailto:im...@im...</homepage> <contribution type="commercial" id="{594D6A74-2678-4a35-9FE6-E2FFA90C207A}"> - <name>\x83}\x83N\x83h\x83i\x83\x8B\x83h</name> + <name>McDonald's</name> + <!--!<name>マクドナルド</name>--> <price>190</price> <size>1,1</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.miha/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.miha/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.miha/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,8 +1,9 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE plug-in [ -<!-- 1x1 \x83}\x83\x93\x83V\x83\x87\x83\x93\x82̃p\x83\x89\x83\x81\x81[\x83^ --> +<!-- 1x1 マンションのパラメータ --> <!ENTITY smallMansion ' - <group>\x83}\x83\x93\x83V\x83\x87\x83\x93(\x8F\xAC)</group> + <group>Apartment house (S)</group> + <!--!<group>マンション(小)</group>--> <price>250</price> <size>1,1</size> <minHeight>2</minHeight> @@ -12,9 +13,10 @@ <base>120</base> </population> '> -<!-- 2x2 \x83}\x83\x93\x83V\x83\x87\x83\x93\x82̃p\x83\x89\x83\x81\x81[\x83^ --> +<!-- 2x2 マンションのパラメータ --> <!ENTITY middleMansion ' - <group>\x83}\x83\x93\x83V\x83\x87\x83\x93(\x92\x86)</group> + <group>Apartment house (M)</group> + <!--!<group>マンション(中)</group>--> <price>2900</price> <size>2,2</size> <minHeight>3</minHeight> @@ -24,9 +26,10 @@ <base>500</base> </population> '> -<!-- \x91\xE5\x8C^\x82̃p\x83\x89\x83\x81\x81[\x83^ --> +<!-- 大型のパラメータ --> <!ENTITY largeMansion ' - <group>\x83}\x83\x93\x83V\x83\x87\x83\x93(\x91\xE5)</group> + <group>Apartment house (L)</group> + <!--!<group>マンション(大)</group>--> <price>6200</price> <minHeight>2</minHeight> <maxHeight>8</maxHeight> @@ -37,12 +40,14 @@ '> ]> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>\x83~\x83n\x82\xB3\x82\xF1</author> - <homepage>http://www5.ocn.ne.jp/~mihata/</homepage> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>ミハさん</author> + <homepage>http://www5.ocn.ne.jp/‾mihata/</homepage> <contribution type="commercial" id="{551BB418-4604-4fca-88AC-5F71068FE04A}"> - <name>\x83}\x83N\x83V\x83X\x83^\x83\x8F\x81[</name> + <name>Maxis Tower</name> + <!--!<name>マクシスタワー</name>--> <price>2400</price> <size>1,3</size> <height>4</height> @@ -56,7 +61,8 @@ </contribution> <contribution type="commercial" id="{8BC1629A-BD98-462c-985A-CCD03F1B8C22}"> - <name>\x94\xAA\x89\xA4\x8Eq\x8DĊJ\x94\xAD\x83r\x83\x8B</name> + <name>View Tower Hachioji</name> + <!--!<name>八王子再開発ビル</name>--> <price>2720</price><!--680*4--> <size>2,2</size> <height>6</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.nokto/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.nokto/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.nokto/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,11 +1,13 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>nokto\x82\xB3\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>noktoさん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="commercial" id="{C6ECBE6F-7034-4d94-8F00-E89BAF06D3A2}"> - <name>\x83~\x83\x89\x81[\x83r\x83\x8B</name> + <name>Mirror building</name> + <!--!<name>ミラービル</name>--> <price>1600</price> <size>1,3</size> <height>4</height> @@ -20,7 +22,8 @@ <contribution type="commercial" id="{AD825AF4-A4C9-438a-8F0C-B2DD581F2192}"> - <name>\x83~\x83\x89\x81[\x83r\x83\x8B</name> + <name>Mirror building</name> + <!--!<name>ミラービル</name>--> <price>600</price> <size>1,1</size> <height>5</height> @@ -35,8 +38,10 @@ <contribution type="commercial" id="{235CBE6F-7AD4-4334-8FFB-E54B2F0643A2}"> - <group>\x8DH\x8F\xEA</group> - <name>\x8Fd\x8DH\x8Bƌn\x82̍H\x8F\xEA</name> + <group>Factory</group> + <name>Heavy industrial factory</name> + <!--!<group>工場</group> + <name>重工業系の工場</name>--> <price>3400</price> <size>2,3</size> <height>3</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.osakaCastle/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.osakaCastle/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.osakaCastle/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,8 +1,9 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x91\xE5\x8D\xE3\x8F\xE9</title> + <title>Osaka Castle</title> + <!--!<title>大阪城</title>--> <homepage>http://www.kohsuke.org/freetrain/</homepage> - <author>477\x82\xB3\x82\xF1</author> + <author>477さん</author> <contribution type="picture" id="{4F129DD1-CCCF-4C2C-B317-0874AD9F77B7}"> <picture src="osaka_castle.bmp"> @@ -11,8 +12,10 @@ </contribution> <contribution type="commercial" id="{12CA8CE9-7D92-44CA-BB96-47C4A60A8316}"> - <group>\x91\xE5\x8D\xE3\x8F\xE9</group> - <name>\x93V\x8E\xE7\x8At1</name> + <group>Osaka Castle</group> + <!--!<group>大阪城</group>--> + <name>Castle tower 1</name> + <!--!<name>天守閣1</name>--> <price>5000</price> <size>2,2</size> <height>4</height> @@ -23,8 +26,10 @@ </contribution> <contribution type="commercial" id="{6432EFFB-3B00-4E00-B4AD-F3DBBB3DD2B6}"> - <group>\x91\xE5\x8D\xE3\x8F\xE9</group> - <name>\x93V\x8E\xE7\x8At2</name> + <group>Osaka Castle</group> + <!--!<group>大阪城</group>--> + <name>Castle tower 2</name> + <!--!<name>天守閣2</name>--> <price>5000</price> <size>2,2</size> <height>4</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.others/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.others/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.others/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,11 +1,13 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>\x82\xBB\x82̑\xBC\x82̖\xBC\x96\xB3\x82\xB5\x82\xB3\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>その他の名無しさん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="commercial" id="{B83A15E9-9284-4569-A1BF-266DF9B1560A}"> - <name>\x82ق\xC1\x82\xA9\x82ق\xC1\x82\xA9\x92\xE0</name> + <name>Hokka Hokka Tei</name> + <!--!<name>ほっかほっか亭</name>--> <price>210</price> <size>1,1</size> <height>1</height> @@ -20,7 +22,8 @@ <contribution type="commercial" id="{8CE18936-7C28-4a91-8B40-9CCED1F48968}"> - <name>\x8D\x82\x8B\x89\x83}\x83\x93\x83V\x83\x87\x83\x93</name> + <name>Luxury apartment house</name> + <!--!<name>高級マンション</name>--> <price>4000</price> <size>4,2</size> <height>3</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.pcb/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.pcb/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.pcb/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>\x82ꂳ\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>ばんかれさん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="picture" id="{10146B06-4D3C-40E2-BA95-AE51FA611DA5}"> @@ -9,7 +10,8 @@ </contribution> <contribution type="varHeightBuilding" id="{72AF542C-3251-43ad-9094-43E6FDDE9420}"> - <group>\x97\xA7\x91̒\x93\x8Eԏ\xEA</group> + <group>Parking lot</group> + <!--!<group>立体駐車場</group>--> <price>2400</price> <size>2,2</size> <minHeight>2</minHeight> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ryokounotomo/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ryokounotomo/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.ryokounotomo/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,11 +1,13 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8C\x9A\x95\xA8\x83Z\x83b\x83g</title> - <author>\x97\xB7\x8Ds\x82̗F\x82\xB3\x82\xF1</author> + <title>Building set</title> + <!--!<title>建物セット</title>--> + <author>旅行の友さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="commercial" id="{8361A9CC-DC1D-4432-8E21-7FB3564FA5CF}"> - <name>\x95\xAA\x8F\xF7\x83}\x83\x93\x83V\x83\x87\x83\x93</name> + <name>Condo</name> + <!--!<name>分譲マンション</name>--> <price>3000</price><!-- 750*4 --> <size>2,2</size> <height>3</height> @@ -19,7 +21,8 @@ </contribution> <contribution type="commercial" id="{9DEDC549-A1A8-4a14-A7A5-D18F388BE975}"> - <name>\x8C\xF6\x89\x80</name> + <name>Park</name> + <!--!<name>公園</name>--> <price>1000</price> <size>2,2</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.syousei/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.syousei/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.structure.syousei/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,11 +1,13 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x96\xAF\x89\xC6</title> + <title>Private house</title> + <!--!<title>民家</title>--> <author>syousei</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="commercial" id="{D6DE0AED-AECF-4d7f-8455-488016997FFF}"> - <name>\x96\xAF\x89\xC6(\x8F\xAC)</name> + <name>Private house (S)</name> + <!--!<name>民家(小)</name>--> <price>150</price> <size>1,1</size> <height>1</height> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8E蓮\x89^\x93]\x83_\x83C\x83\x84\x83O\x83\x89\x83\x80</title> - <author>\x90\xEC\x8C\xFB\x8Dk\x89\xEE</author> + <title>Manually-operated diagram</title> + <!--!<title>手動運転ダイヤグラム</title>--> + <author>川口耕介</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="trainController" id="{5567FE11-FC2C-4a1d-836F-722EF9DC957C}"> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ContributionImpl.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ContributionImpl.cs 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ContributionImpl.cs 2007-03-31 13:40:53 UTC (rev 18) @@ -16,11 +16,13 @@ public TrainConrollerContributionImpl( XmlElement e ) : base(e) {} - public override string name { get { return "\x8E蓮\x89^\x93]\x83_\x83C\x83\x84\x83O\x83\x89\x83\x80"; } } + public override string name { get { return "Manually-operated diagram"; } } + //! public override string name { get { return "手動運転ダイヤグラム"; } } public override string description { get { - return "\x83L\x81[\x83{\x81[\x83h\x82\xA9\x82\xE7\x97\xF1\x8EԂ\xF0\x8E蓮\x82ʼn^\x93]\x82ł\xAB\x82\xE9\x82悤\x82ɂ\xB5\x82܂\xB7"; + return "Allows you to control the train manually with the keyboard"; + //! return "キーボードから列車を手動で運転できるようにします"; } } Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ManualTrainController.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ManualTrainController.cs 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.manual/src/ManualTrainController.cs 2007-03-31 13:40:53 UTC (rev 18) @@ -82,12 +82,16 @@ public override void config( IWin32Window owner ) { MessageBox.Show(owner, - "\x83|\x83C\x83\x93\x83g\x92ʉߎ\x9E\x82ɍ\xB6\x96\xEE\x88\xF3\x82܂\xBD\x82͉E\x96\xEE\x88\xF3\x82\xF0\x89\x9F\x82\xB5\x82Ă\xA2\x82\xE9\x82ƕ\xAA\x8A܂\xB7\n"+ - "\x89w\x82ɍ\xB7\x82\xB5\x8A|\x82\xA9\x82\xC1\x82\xBD\x82Ƃ\xAB\x82\xC9SHIFT\x82\xF0\x89\x9F\x82\xB5\x82Ă\xA2\x82\xE9\x82ƒʉ߂\xB5\x82܂\xB7\n"+ - "\x89w\x82ɒ\xE2\x8EԂ\xB5\x82\xBD\x82\xE7\x81A\x8F\xE3\x96\xEE\x88\xF3\x82\xF0\x89\x9F\x82\xB7\x82Ɣ\xAD\x8EԂ\xB5\x81A\x89\xBA\x96\xEE\x88\xF3\x82Ő܂\xE8\x95Ԃ\xB5\x82܂\xB7\n", - "\x91\x80\x8D\xEC\x95\xFB\x96@", + "When you pass a junction, press left or right arrow to turn\n"+ + "When you reach a station, press shift to pass it\n"+ + "If you stop at a station, press up arrow to leave or down arrow to turn back\n", + "How to control", MessageBoxButtons.OK, MessageBoxIcon.Information ); + //! "ポイント通過時に左矢印または右矢印を押していると分岐します¥n"+ + //! "駅に差し掛かったときにSHIFTを押していると通過します¥n"+ + //! "駅に停車したら、上矢印を押すと発車し、下矢印で折り返します¥n", + //! "操作方法", } } } Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/plugin.xml 2007-03-31 13:40:53 UTC (rev 18) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x81u\x82`\x97\xF1\x8EԂōs\x82\xB1\x82\xA4\x81v\x8E\xAE\x83_\x83C\x83\x84\x83O\x83\x89\x83\x80\x90ݒ\xE8</title> - <author>\x90\xEC\x8C\xFB\x8Dk\x89\xEE</author> + <title>A-Train style diagram settings</title> + <!--!<title>「A列車で行こう」式ダイヤグラム設定</title>--> + <author>川口耕介</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="trainController" id="{94B1F62C-E9B0-4669-80E8-6C65D803DFE5}"> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs 2007-03-30 13:30:22 UTC (rev 17) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.tc.tat/src/JunctionAdvancedDialog.cs 2007-03-31 13:40:53 UTC (rev 18) @@ -122,7 +122,8 @@ this.groupBox1.Size = new System.Drawing.Size(360, 80); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; - this.groupBox1.Text = "\x8F\xF0\x8C\x8F"; + this.groupBox1.Text = "Requirement"; + //! this.groupBox1.Text = "\x8F\xF0\x8C\x8F"; // // radioCurve // @@ -130,7 +131,8 @@ this.radioCurve.Name = "radioCurve"; this.radioCurve.Size = new System.Drawing.Size(64, 24); this.radioCurve.TabIndex = 9; - this.radioCurve.Text = "\x95\xAA\x8A\xF2"; + this.radioCurve.Text = "Junction"; + //! this.radioCurve.Text = "\x95\xAA\x8A\xF2"; this.radioCurve.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // radioStraight @@ -141,7 +143,8 @@ this.radioStraight.Size = new System.Drawing.Size(64, 24); this.radioStraight.TabIndex = 8; this.radioStraight.TabStop = true; - this.radioStraight.Text = "\x92\xBC\x90i"; + this.radioStraight.Text = "Straight"; + //! this.radioStraight.Text = "\x92\xBC\x90i"; // // buttonReplace // @@ -150,7 +153,8 @@ this.buttonReplace.Name = "buttonReplace"; this.buttonReplace.Size = new System.Drawing.Size(64, 24); this.buttonReplace.TabIndex = 11; - this.buttonReplace.Text = "\x92u\x8A\xB7(&R)"; + this.buttonReplace.Text = "&Replace"; + //! this.buttonReplace.Text = "\x92u\x8A\xB7(&R)"; this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click); // // label4 @@ -159,7 +163,8 @@ this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(20, 20); this.label4.TabIndex = 7; - this.label4.Text = "\x8E\x9E"; + this.label4.Text = "o'clock"; + //! this.label4.Text = "\x8E\x9E"; this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // hourBox @@ -203,7 +208,8 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(32, 20); this.label3.TabIndex = 5; - this.label3.Text = "\x97j\x93\xFA"; + this.label3.Text = "day"; + //! this.label3.Text = "\x97j\x93\xFA"; this.label3.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // dayOfWeekBox @@ -211,13 +217,20 @@ this.dayOfWeekBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.dayOfWeekBox.Items.AddRange(new object[] { "*", - "\x93\xFA", - "\x8C\x8E", - "\x89\xCE", - "\x90\x85", - "\x96\xD8", - "\x8B\xE0", - "\x93y"}); + "Sun", + "Mon", + "Tues", + "Wednes", + "Thurs", + "Fri", + "Satur"}); + //!"\x93\xFA", + ... [truncated message content] |
From: <him...@us...> - 2007-03-30 13:30:23
|
Revision: 17 http://freetrain.svn.sourceforge.net/freetrain/?rev=17&view=rev Author: himasaram Date: 2007-03-30 06:30:22 -0700 (Fri, 30 Mar 2007) Log Message: ----------- Translated a number of plugins Modified Paths: -------------- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/BuilderImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/ControllerForm.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/MenuContributionImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/src/TrainGarage.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/MenuContributionImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/SignalRailController.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.dh/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.syosei/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/OpponentTeam.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/PlacementController.cs trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/StadiumPropertyDialog.cs Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x93S\x8B\xB4\x81E\x83g\x83\x93\x83l\x83\x8B</title> - <author>477\x82\xB3\x82\xF1</author> + <title>Bridges & Tunnels</title> + <!--!<title>鉄橋・トンネル</title>--> + <author>477さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="specialRail" id="{874B8BFD-1EF4-4828-9C5A-D0EA1049D28D}"> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x89ː\xFC\x92\x8C</title> - <author>\x88\xBB\x90\xA3\x82\xB3\x82\xEC\x8C\xFB\x8Dk\x89\xEE</author> + <title>Utility poles</title> + <!--!<title>架線柱</title>--> + <author>綾瀬さん&川口耕介</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="contribution" id="{6CCE619B-6D03-4784-B3EF-C53577E2C958}"> @@ -20,28 +21,32 @@ <contribution type="electricPole" id="{DDF7F835-8100-45fd-8AE7-EC498796D387}"> - <name>\x97\xBC\x92\x8C(1)</name> + <name>Double pole (1)</name> + <!--!<name>両柱(1)</name>--> <sprite> <picture src="kasen1.bmp"/> </sprite> </contribution> <contribution type="electricPole" id="{DD7D4548-5E0E-48e4-AB6E-64A443C240F7}"> - <name>\x97\xBC\x92\x8C(2)</name> + <name>Double pole (2)</name> + <!--!<name>両柱(2)</name>--> <sprite> <picture src="kasen2.bmp"/> </sprite> </contribution> <contribution type="electricPole" id="{86E56A60-19DF-4ba7-BFE8-ABFBDF5DFA0A}"> - <name>\x95В\x8C(1)</name> + <name>Single pole (1)</name> + <!--!<name>片柱(1)</name>--> <sprite> <picture src="kasen3.bmp"/> </sprite> </contribution> <contribution type="electricPole" id="{FD1635C1-05BF-41af-9185-4891B983E2A4}"> - <name>\x95В\x8C(2)</name> + <name>Single pole (2)</name> + <!--!<name>片柱(2)</name>--> <sprite> <picture src="kasen4.bmp"/> </sprite> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/BuilderImpl.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/BuilderImpl.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/BuilderImpl.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -23,7 +23,8 @@ if( contribution.canBeBuilt(loc) ) contribution.create(loc); else - MainWindow.showError("\x90ݒu\x82ł\xAB\x82܂\xB9\x82\xF1"); + MainWindow.showError("Can not place"); + //! MainWindow.showError("設置できません"); } public override void drawVoxel( QuarterViewDrawer view, DrawContextEx canvas, Location loc, Point pt) { Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/ControllerForm.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/ControllerForm.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/ControllerForm.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -83,7 +83,8 @@ // costBox // this.costBox.cost = 0; - this.costBox.label = "\x94\xEF\x97p\x81F"; + this.costBox.label = "Cost:"; + //! this.costBox.label = "費用:"; this.costBox.Location = new System.Drawing.Point(8, 128); this.costBox.Name = "costBox"; this.costBox.Size = new System.Drawing.Size(112, 32); @@ -96,7 +97,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(56, 24); this.buttonRemove.TabIndex = 9; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonRemove.CheckedChanged += new System.EventHandler(this.onModeChanged); // @@ -109,7 +111,8 @@ this.buttonPlace.Size = new System.Drawing.Size(56, 24); this.buttonPlace.TabIndex = 8; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x90ݒu"; + this.buttonPlace.Text = "Place"; + //! this.buttonPlace.Text = "設置"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.buttonPlace.CheckedChanged += new System.EventHandler(this.onModeChanged); // @@ -124,7 +127,8 @@ this.typeBox, this.preview}); this.Name = "ControllerForm"; - this.Text = "\x89ː\xFC"; + this.Text = "Wire"; + //! this.Text = "架線"; this.ResumeLayout(false); } Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/MenuContributionImpl.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/MenuContributionImpl.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.electricPole/src/MenuContributionImpl.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -14,7 +14,8 @@ public MenuContributionImpl( XmlElement e ) : base(e) {} public override void mergeMenu( MainMenu containerMenu ) { - MenuItem mi = new MenuItem("\x89ː\xFC\x92\x8C...",new EventHandler(onClick)); + MenuItem mi = new MenuItem("Utility poles...",new EventHandler(onClick)); + //! MenuItem mi = new MenuItem("架線柱...",new EventHandler(onClick)); containerMenu.MenuItems[2].MenuItems.Add(mi); } Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,7 +1,8 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x8B@\x8A\xC9</title> - <author>477\x82\xB3\x82\xF1</author> + <title>Train garage</title> + <!--!<title>機関庫</title>--> + <author>477さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="specialRail" id="{93481807-D998-46d7-B1BE-CB2B5D086D67}"> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/src/TrainGarage.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/src/TrainGarage.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.garage/src/TrainGarage.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -145,9 +145,11 @@ - public override string name { get { return "\x8B@\x8A\xC9"; } } + public override string name { get { return "Train garage"; } } + //! public override string name { get { return "機関庫"; } } - public override string oneLineDescription { get { return "\x97\xF1\x8EԂ\xF0\x95ۊǁE\x90\xAE\x94\xF5\x81E\x93_\x8C\x9F\x82\xB7\x82\xE9\x8E{\x90݁B\x82\xBD\x82\xBE\x82̏\xFC\x82\xE8"; } } + public override string oneLineDescription { get { return "A facility to store, maintain, and service trains. Simply a decoration."; } } + //! public override string oneLineDescription { get { return "列車を保管・整備・点検する施設。ただの飾り"; } } public override Bitmap previewBitmap { get { Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,32 +1,35 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x93S\x93\xB9\x97p\x90M\x8D\x86\x8B@</title> - <author>\x90\xEC\x8C\xFB\x8Dk\x89\xEE</author> + <title>Rail signals</title> + <!--!<title>鉄道用信号機</title>--> + <author>川口耕介</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> - <!-- \x90M\x8D\x86\x82̉摜\x82\xF0\x8AO\x95\x94\x82\xA9\x82\xE7\x92lj\xC1\x82\xB7\x82邽\x82߂̃R\x83\x93\x83g\x83\x8A\x83r\x83\x85\x81[\x83V\x83\x87\x83\x93\x82\xF0\x92\xE8\x8B` --> + <!-- 信号の画像を外部から追加するためのコントリビューションを定義 --> <contribution type="contribution" id="{59465CA9-C45E-4D11-8D57-95088E16E0F1}"> <name>railSignal</name> <class name="freetrain.world.rail.signal.RailSignalContributionFactory" codebase="bin/Debug/FreeTrain.RailSignal.dll" /> </contribution> - <!-- \x93S\x93\xB9\x83\x81\x83j\x83\x85\x81[\x82Ɂu\x90M\x8D\x86\x81v\x82\xF0\x92lj\xC1 --> + <!-- 鉄道メニューに「信号」を追加 --> <contribution type="menu" id="{DFB5CC3B-B0B0-4421-80DC-4E9D1E39A1E8}"> <class name="freetrain.world.rail.signal.MenuContributionImpl" codebase="bin/Debug/FreeTrain.RailSignal.dll" /> </contribution> - <!-- \x83f\x83B\x83t\x83H\x83\x8B\x83g\x82̐M\x8D\x86\x8B@ --> + <!-- ディフォルトの信号機 --> <contribution type="railSignal" id="{5349DE2A-DF3E-49B4-87A0-973105B7E6A4}"> - <name>\x8EO\x93\x94\x8E\xAE</name> + <name>Three-aspect signal</name> + <!--!<name>三灯式</name>--> <side>left</side> <picture src="RailSignal.bmp"/> </contribution> - <!-- \x93\xFC\x82\xEA\x91ւ\xA6\x90M\x8D\x86\x8B@ --> + <!-- 入れ替え信号機 --> <contribution type="railSignal" id="{6FA55842-E693-414f-A120-0A3D0C613B21}"> - <name>\x93\xFC\x91M\x8D\x86</name> + <name>Change signal</name> + <!--!<name>入替信号</name>--> <side>right</side> <picture src="RailSignal2.bmp"/> </contribution> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/MenuContributionImpl.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/MenuContributionImpl.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/MenuContributionImpl.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -14,7 +14,8 @@ public MenuContributionImpl( XmlElement e ) : base(e) {} public override void mergeMenu( MainMenu containerMenu ) { - MenuItem item = new MenuItem("\x90M\x8D\x86(&G)..."); + MenuItem item = new MenuItem("Si&gnals..."); + //! MenuItem item = new MenuItem("信号(&G)..."); item.Click += new System.EventHandler(onClick); containerMenu.MenuItems[2].MenuItems.Add(5,item); Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/SignalRailController.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/SignalRailController.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.rail.signal/src/SignalRailController.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -76,7 +76,8 @@ this.buttonPlace.Size = new System.Drawing.Size(48, 24); this.buttonPlace.TabIndex = 4; this.buttonPlace.TabStop = true; - this.buttonPlace.Text = "\x90ݒu"; + this.buttonPlace.Text = "Place"; + //! this.buttonPlace.Text = "設置"; this.buttonPlace.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // buttonRemove @@ -86,7 +87,8 @@ this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(48, 24); this.buttonRemove.TabIndex = 5; - this.buttonRemove.Text = "\x93P\x8B\x8E"; + this.buttonRemove.Text = "Remove"; + //! this.buttonRemove.Text = "撤去"; this.buttonRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // dirSelector @@ -122,7 +124,8 @@ this.preview}); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "SignalRailController"; - this.Text = "\x90M\x8D\x86"; + this.Text = "Signal"; + //! this.Text = "信号"; this.ResumeLayout(false); } @@ -213,14 +216,16 @@ if(isPlacing) { TrafficVoxel tv = TrafficVoxel.getOrCreate(loc); if(tv==null) { - MainWindow.showError("\x8F\xE1\x8AQ\x95\xA8\x82\xAA\x82\xA0\x82\xE8\x82܂\xB7"); + MainWindow.showError("There are obstacles"); + //! MainWindow.showError("障害物があります"); return; } if(tv.railRoad==null || tv.railRoad is SingleRailRoad) new SignalRailRoad(tv,currentType,currentDirection); else - MainWindow.showError("\x90ݒu\x82ł\xAB\x82Ȃ\xA2\x90\xFC\x98H\x82ł\xB7"); + MainWindow.showError("Can not place on this rail"); + //! MainWindow.showError("設置できない線路です"); } else { SignalRailRoad srr = RailRoad.get(loc) as SignalRailRoad; if(srr!=null) Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.dh/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.dh/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.dh/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,13 +1,16 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x93\xF1\x8EԐ\xFC\x93\xB9\x98H(15\x96\x87\x8AG)</title> + <title>Two-lane road (15 sprites)</title> + <!--!<title>二車線道路(15枚絵)</title>--> <author>romulanWarbird</author> - <homepage>\x92ʐM\x8C\x97\x8AO</homepage> + <homepage>通信圏外</homepage> <contribution type="road" id="{7254CD19-38B1-42DB-84E3-88F9A5C88E42}"> <class name="freetrain.contributions.road.StandardRoadContribution" /> - <name>\x93\xF1\x8EԐ\xFC\x93\xB9\x98H(15\x96\x87\x8AG)</name> - <description>\x8EO\x8D\xB3\x98H\x81A\x8BȂ\xAA\x82\xE8\x8Ap\x93\x99\x82\xF0\x8A܂ރj\x8EԐ\xFC\x82̓\xB9\x98H</description> + <name>Two-lane road (15 sprites)</name> + <!--!<name>二車線道路(15枚絵)</name>--> + <description>Two-lane road including T-junction and curves</description> + <!--!<description>三叉路、曲がり角等を含むニ車線の道路</description>--> <picture src="road-2-15.bmp" size="32,16" offset="0" /> </contribution> </plug-in> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.pc-9801fa/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,13 +1,16 @@ <?xml version="1.0" encoding="Shift_JIS" ?> <plug-in> - <title>\x93\xB9\x98H</title> - <author>PC-9801FA\x82\xB3\x82\xF1</author> + <title>Road</title> + <!--!<title>道路</title>--> + <author>PC-9801FAさん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="road" id="{8DB8AF0F-B615-4BC1-8160-9706FDF6FB6B}"> <class name="freetrain.contributions.road.A3RoadContribution" /> - <name>\x93\xF1\x8EԐ\xFC\x93\xB9\x98H</name> - <description>\x93\xF1\x8EԐ\xFC\x82̓\xB9\x98H</description> + <name>Two-lane road</name> + <description>Road with two lanes</description> + <!--!<name>二車線道路</name> + <description>二車線の道路</description>--> <picture src="a3road_d.bmp"> <override when="night" src="a3road_n.bmp"/> </picture> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.syosei/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.syosei/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.road.syosei/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,15 +1,18 @@ -<?xml version="1.0" encoding="Shift_JIS" ?> +<?xml version="1.0" encoding="UTF-8" ?> <plug-in> - <title>\x93\xB9\x98H</title> - <author>\x8F\xE0\x90\xBA\x82\xB3\x82\xF1</author> + <title>Road</title> + <!--!<title>道路</title>--> + <author>鐘声さん</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="road" id="{FAF0E7F9-3BCA-49B4-9F80-D0216B2D136A}"> <class name="freetrain.contributions.road.StandardRoadContribution" /> - <name>\x88\xEA\x8EԐ\xFC\x93\xB9\x98H</name> - <description>\x88\xEA\x8EԐ\xFC\x82̓\xB9\x98H</description> + <name>Single lane road</name> + <description>Road with a single lane</description> + <!--!<name>一車線道路</name> + <description>一車線の道路</description>--> <picture src="roads.bmp" size="32,16" offset="0" /> - <!-- size\x82͈\xEA\x82\xA0\x82\xBD\x82\xE8\x82̓\xB9\x98H\x83`\x83b\x83v\x82̃T\x83C\x83Y\x81B\x94z\x92u\x82͉摜\x82\xF0\x8EQ\x8F\xC6 --> - <!-- offset\x82́A\x83`\x83b\x83v\x93\xE0\x82ł̈ʒu\x82\xA0\x82킹\x97p\x81B\x92ʏ\xED\x81Asize.Y-16 --> + <!-- sizeは一つあたりの道路チップのサイズ。配置は画像を参照 --> + <!-- offsetは、チップ内での位置あわせ用。通常、size.Y-16 --> </contribution> </plug-in> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/plugin.xml 2007-03-30 13:30:22 UTC (rev 17) @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="Shift_JIS" ?> <plug-in> - <title>\x83T\x83b\x83J\x81[\x83X\x83^\x83W\x83A\x83\x80</title> - <author>\x83v\x83\x8C\x83~\x83A\x8DD\x82\xAB\x82\xB3\x82\xEC\x8C\xFB\x8Dk\x89\xEE</author> + <title>Soccer Stadium</title> + <!--!<title>サッカースタジアム</title>--> + <author>プレミア好きさん&川口耕介</author> <homepage>http://www.kohsuke.org/freetrain/</homepage> <contribution type="specialStructure" id="{458C17B4-9426-4060-97B5-9A7090664175}"> @@ -10,13 +11,14 @@ </contribution> <!-- - \x83X\x83^\x83W\x83A\x83\x80\x82̌\x9A\x95\xA8\x83R\x83\x93\x83g\x83\x8A\x83r\x83\x85\x81[\x83V\x83\x87\x83\x93\x81B - \x8F\x9F\x8E\xE8\x82Ɍ\x9A\x90݂\xB3\x82\xEA\x82Ȃ\xA2\x82悤\x82\xC9commercial\x82ł͂Ȃ\xADanonymous\x88\xB5\x82\xA2\x82ɂ\xB7\x82\xE9 + スタジアムの建物コントリビューション。 + 勝手に建設されないようにcommercialではなくanonymous扱いにする --> <contribution type="anonymous" id="{0EB17496-838E-43c8-941F-896EAF9396AF}"> <class name="freetrain.world.soccerstadium.StructureContributionImpl" codebase="bin/Debug/FreeTrain.SoccerStadium.dll" /> - <name>\x83T\x83b\x83J\x81[\x83X\x83^\x83W\x83A\x83\x80</name> + <name>Soccer Stadium</name> + <!--!<name>サッカースタジアム</name>--> <price>2000000</price><!--680*4--> <size>10,6</size> <height>2</height> @@ -26,13 +28,14 @@ </picture> </sprite> <population> - <!-- \x83X\x83^\x83W\x83A\x83\x80\x82̏W\x8Bq\x90\xAB\x82͓\xC1\x95ʂȂ̂œ\xC1\x95ʂȐl\x8C\xFB\x93\xC1\x90\xAB\x82\xF0\x8E\xC0\x91\x95 --> + <!-- スタジアムの集客性は特別なので特別な人口特性を実装 --> <class name="freetrain.world.soccerstadium.PopulationImpl" codebase="bin/Debug/FreeTrain.SoccerStadium.dll"/> </population> </contribution> <contribution type="accountGenre" id="{2669F15B-66F2-4c77-8A48-1A20783EB9F5}"> - <name>\x83T\x83b\x83J\x81[\x83`\x81[\x83\x80</name> + <name>Soccer Team</name> + <!--!<name>サッカーチーム</name>--> </contribution> </plug-in> Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/ContributionImpl.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -11,11 +11,13 @@ public ContributionImpl( XmlElement e ) : base(e) { } - public override string name { get { return "\x83T\x83b\x83J\x81[\x83X\x83^\x83W\x83A\x83\x80"; } } + public override string name { get { return "サッカースタジアム"; } } + //! public override string name { get { return "Soccer Stadium"; } } public override string oneLineDescription { get { - return "\x83T\x83b\x83J\x81[\x83X\x83^\x83W\x83A\x83\x80\x82\xF0\x8C\x9A\x90݂\xB5\x82ă`\x81[\x83\x80\x82\xF0\x8Co\x89c\x82\xB5\x82܂\xB7"; + return "Build a soccer stadium and manage a team"; + //! return "サッカースタジアムを建設してチームを経営します"; } } Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/OpponentTeam.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/OpponentTeam.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/OpponentTeam.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -19,17 +19,28 @@ } public static readonly OpponentTeam[] OPPONENTS = new OpponentTeam[]{ - new OpponentTeam("\x83T\x83K\x83\x93\x92\xB9\x90|",0), - new OpponentTeam("\x83z\x81[\x83\x8A\x81[\x83z\x83b\x83N\x8EO\x8C\xCB",10), - new OpponentTeam("\x8FÖk\x83x\x83\x8B\x83}\x81[\x83\x8C",20), - new OpponentTeam("\x83R\x83\x93\x83T\x83h\x81[\x83\x8C\x97\xE7\x96y",30), - new OpponentTeam("\x83\x94\x83B\x83b\x83Z\x83\x8B\x8D\xE5\x8C\xCB",40), - new OpponentTeam("\x83W\x83\x85\x83s\x83\x8D\x94\xFB",50), - new OpponentTeam("\x8E\xAD\x92\xB9\x83A\x83\x93\x83g\x83\x89\x81[\x83Y",60), - new OpponentTeam("\x91\xA9\x8B\x9E\x83x\x83\x8B\x83f\x83B",70), - new OpponentTeam("\x96ؔ\x92\x83\x8C\x83C\x83\\x83\x8B",80), - new OpponentTeam("\x89Y\x98a\x83u\x83\x8B\x81[\x83X",90), - new OpponentTeam("\x90\xB4\x90\x85\x83G\x83X\x83v\x83\x8A\x83Y",100) + new OpponentTeam("Sagan Tosaku",0), + new OpponentTeam("Hollyhock Santo",10), + new OpponentTeam("Shohoku Bellmare",20), + new OpponentTeam("Consadole Iyahoro",30), + new OpponentTeam("Vissel Sakagibe",40), + new OpponentTeam("Jubilo Iwakuchi",50), + new OpponentTeam("Katori Antlers",60), + new OpponentTeam("Tokyo Verdi",70), + new OpponentTeam("Kijira Reysol",80), + new OpponentTeam("Urawa Blues",90), + new OpponentTeam("Shimizu Espirits",100) + //! new OpponentTeam("サガン鳥酢",0), + //! new OpponentTeam("ホーリーホック三戸",10), + //! new OpponentTeam("湘北ベルマーレ",20), + //! new OpponentTeam("コンサドーレ礼幌",30), + //! new OpponentTeam("ヴィッセル榊戸",40), + //! new OpponentTeam("ジュピロ磐口",50), + //! new OpponentTeam("鹿鳥アントラーズ",60), + //! new OpponentTeam("束京ベルディ",70), + //! new OpponentTeam("木白レイソル",80), + //! new OpponentTeam("浦和ブルース",90), + //! new OpponentTeam("清水エスプリズ",100) }; Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/PlacementController.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/PlacementController.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/PlacementController.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -8,7 +8,7 @@ namespace freetrain.world.soccerstadium { /// <summary> - /// PlacementController \x82̊T\x97v\x82̐\xE0\x96\xBE\x82ł\xB7\x81B + /// PlacementController の概要の説明です。 /// </summary> public class PlacementController : FixedSizeStructController { Modified: trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/StadiumPropertyDialog.cs =================================================================== --- trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/StadiumPropertyDialog.cs 2007-03-30 11:41:49 UTC (rev 16) +++ trunk/FreeTrain/plugins/org.kohsuke.freetrain.soccerStadium/src/StadiumPropertyDialog.cs 2007-03-30 13:30:22 UTC (rev 17) @@ -15,8 +15,8 @@ #region Windows Form Designer generated code /// <summary> - /// \x83f\x83U\x83C\x83i \x83T\x83|\x81[\x83g\x82ɕK\x97v\x82ȃ\x81\x83\\x83b\x83h\x82ł\xB7\x81B\x82\xB1\x82̃\x81\x83\\x83b\x83h\x82̓\xE0\x97e\x82\xF0 - /// \x83R\x81[\x83h \x83G\x83f\x83B\x83^\x82ŕύX\x82\xB5\x82Ȃ\xA2\x82ł\xAD\x82\xBE\x82\xB3\x82\xA2\x81B + /// デザイナ サポートに必要なメソッドです。このメソッドの内容を + /// コード エディタで変更しないでください。 /// </summary> private void InitializeComponent() { @@ -48,7 +48,8 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(88, 16); this.label1.TabIndex = 0; - this.label1.Text = "\x83X\x83^\x83W\x83A\x83\x80\x96\xBC(&N):"; + this.label1.Text = "Stadium &name:"; + //! this.label1.Text = "スタジアム名(&N):"; this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // stadiumName @@ -65,7 +66,8 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(88, 16); this.label2.TabIndex = 2; - this.label2.Text = "\x83`\x81[\x83\x80\x96\xBC(&T):"; + this.label2.Text = "&Team name:"; + //! this.label2.Text = "チーム名(&T):"; this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight; // // teamName @@ -94,7 +96,8 @@ this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(80, 24); this.cancelButton.TabIndex = 5; - this.cancelButton.Text = "\xB7\xACݾ\xD9(&C)"; + this.cancelButton.Text = "&Cancel"; + //! this.cancelButton.Text = "キャンセル(&C)"; // // label3 // @@ -102,7 +105,8 @@ this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(96, 16); this.label3.TabIndex = 6; - this.label3.Text = "\x8Dŋ߂̑ΐ퐬\x90\xD1:"; + this.label3.Text = "Latest match results:"; + //! this.label3.Text = "最近の対戦成績:"; // // pastGameView // @@ -121,21 +125,25 @@ // // columnHeader4 // - this.columnHeader4.Text = "\x93\xFA\x95t"; + this.columnHeader4.Text = "Date"; + //! this.columnHeader4.Text = "日付"; // // columnHeader1 // - this.columnHeader1.Text = "\x91ΐ푊\x8E\xE8"; + this.columnHeader1.Text = "Match opponent"; + //! this.columnHeader1.Text = "対戦相手"; this.columnHeader1.Width = 100; // // columnHeader2 // - this.columnHeader2.Text = "\x83X\x83R\x83A"; + this.columnHeader2.Text = "Score"; + //! this.columnHeader2.Text = "スコア"; this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // columnHeader3 // - this.columnHeader3.Text = "\x8Aϋq\x93\xAE\x88\xF5\x90\x94"; + this.columnHeader3.Text = "Number of spectators"; + //! this.columnHeader3.Text = "観客動員数"; this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.columnHeader3.Width = 80; // @@ -145,7 +153,8 @@ this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(96, 16); this.label4.TabIndex = 8; - this.label4.Text = "\x8D\xA1\x8C\xE3\x82̑ΐ\xED\x97\\x92\xE8:"; + this.label4.Text = "Upcoming matches:"; + //! this.label4.Text = "今後の対戦予定:"; // // upcomingGameView // @@ -162,11 +171,13 @@ // // columnHeader5 // - this.columnHeader5.Text = "\x93\xFA\x95t"; + this.columnHeader5.Text = "Date"; + //! this.columnHeader5.Text = "日付"; // // columnHeader6 // - this.columnHeader6.Text = "\x91ΐ푊\x8E\xE8"; + this.columnHeader6.Text = "Match opponent"; + //! this.columnHeader6.Text = "対戦相手"; this.columnHeader6.Width = 131; // // groupBox1 @@ -179,7 +190,8 @@ this.groupBox1.Size = new System.Drawing.Size(336, 80); this.groupBox1.TabIndex = 10; this.groupBox1.TabStop = false; - this.groupBox1.Text = "\x83`\x81[\x83\x80\x89^\x89c"; + this.groupBox1.Text = "Team management"; + //! this.groupBox1.Text = "チーム運営"; // // button1 // @@ -188,7 +200,8 @@ this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(320, 24); this.button1.TabIndex = 1; - this.button1.Text = "\x83`\x81[\x83\x80PR\x8B\xAD\x89\xBB (100,000)"; + this.button1.Text = "Increase PR spending (100,000)"; + //! this.button1.Text = "チームPR強化 (100,000)"; this.button1.Click += new System.EventHandler(this.doPR); // // advertise @@ -198,7 +211,8 @@ this.advertise.Name = "advertise"; this.advertise.Size = new System.Drawing.Size(320, 24); this.advertise.TabIndex = 0; - this.advertise.Text = "\x83`\x81[\x83\x80\x90\xED\x97͕⋭ (100,000)"; + this.advertise.Text = "Increase team strength (100,000)"; + //! this.advertise.Text = "チーム戦力補強 (100,000)"; this.advertise.Click += new System.EventHandler(this.reinforce); // // StadiumPropertyDialog @@ -224,7 +238,8 @@ this.MinimizeBox = false; this.Name = "StadiumPropertyDialog"; this.ShowInTaskbar = false; - this.Text = "\x83T\x83b\x83J\x81[\x83X\x83^\x83W\x83A\x83\x80"; + this.Text = "Soccer stadium"; + //! this.Text = "サッカースタジアム"; this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cl...@us...> - 2007-03-30 11:41:48
|
Revision: 16 http://freetrain.svn.sourceforge.net/freetrain/?rev=16&view=rev Author: clrg Date: 2007-03-30 04:41:49 -0700 (Fri, 30 Mar 2007) Log Message: ----------- Add missing reference to DirectX 7 Library to core .csproj Modified Paths: -------------- trunk/FreeTrain/core/FreeTrain.Core.csproj Modified: trunk/FreeTrain/core/FreeTrain.Core.csproj =================================================================== --- trunk/FreeTrain/core/FreeTrain.Core.csproj 2007-03-30 11:34:06 UTC (rev 15) +++ trunk/FreeTrain/core/FreeTrain.Core.csproj 2007-03-30 11:41:49 UTC (rev 16) @@ -451,6 +451,14 @@ <Name>FreeTrain.Controls</Name> <Private /> </ProjectReference> + <COMReference Include="DxVBLib"> + <Guid>{E1211242-8E94-11D1-8808-00C04FC2C602}</Guid> + <VersionMajor>1</VersionMajor> + <VersionMinor>0</VersionMinor> + <Lcid>0</Lcid> + <WrapperTool>tlbimp</WrapperTool> + <Isolated>False</Isolated> + </COMReference> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> </Project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cl...@us...> - 2007-03-30 11:34:06
|
Revision: 15 http://freetrain.svn.sourceforge.net/freetrain/?rev=15&view=rev Author: clrg Date: 2007-03-30 04:34:06 -0700 (Fri, 30 Mar 2007) Log Message: ----------- Import AbstractControllerForm.resx from sourceforge.jp Attic - Wont build without it - But why was it deleted? Added Paths: ----------- trunk/FreeTrain/core/controllers/AbstractControllerForm.resx Added: trunk/FreeTrain/core/controllers/AbstractControllerForm.resx =================================================================== --- trunk/FreeTrain/core/controllers/AbstractControllerForm.resx (rev 0) +++ trunk/FreeTrain/core/controllers/AbstractControllerForm.resx 2007-03-30 11:34:06 UTC (rev 15) @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8" ?> +<root> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="ResMimeType"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="Version"> + <value>1.0.0.0</value> + </resheader> + <resheader name="Reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="Writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |