├── .gitignore ├── README.md └── ja ├── EaselJS └── 0.6.0 │ ├── docs │ └── README.md │ ├── src │ ├── README.md │ └── easeljs │ │ ├── display │ │ ├── Bitmap.js │ │ ├── BitmapAnimation.js │ │ ├── Container.js │ │ ├── DOMElement.js │ │ ├── DisplayObject.js │ │ ├── Graphics.js │ │ ├── MovieClip.js │ │ ├── Shadow.js │ │ ├── Shape.js │ │ ├── SpriteSheet.js │ │ ├── Stage.js │ │ └── Text.js │ │ ├── events │ │ ├── EventDispatcher.js │ │ └── MouseEvent.js │ │ ├── filters │ │ ├── AlphaMapFilter.js │ │ ├── AlphaMaskFilter.js │ │ ├── BoxBlurFilter.js │ │ ├── ColorFilter.js │ │ ├── ColorMatrix.js │ │ ├── ColorMatrixFilter.js │ │ └── Filter.js │ │ ├── geom │ │ ├── Matrix2D.js │ │ ├── Point.js │ │ └── Rectangle.js │ │ ├── ui │ │ ├── ButtonHelper.js │ │ └── Touch.js │ │ └── utils │ │ ├── Log.js │ │ ├── SpriteSheetBuilder.js │ │ ├── SpriteSheetUtils.js │ │ ├── Ticker.js │ │ └── UID.js │ └── tutorials │ ├── Animation and Ticker │ ├── index.html │ ├── onTick.html │ ├── pausing.html │ ├── simple.html │ └── timeBased.html │ ├── Getting Started │ ├── demo.html │ └── index.html │ ├── HitTest │ ├── globalToLocal.html │ ├── hitTest.html │ ├── index.html │ └── localToLocal.html │ ├── Inheritance │ ├── Button.js │ ├── demo.html │ └── index.html │ ├── Mouse Interaction │ ├── basic.html │ ├── container.html │ ├── drag.html │ ├── events.html │ ├── hitArea.html │ ├── index.html │ └── stage.html │ ├── README.md │ └── shared │ └── tutorial.js ├── PreloadJS └── 0.3.0 │ ├── docs │ └── README.md │ └── src │ ├── README.md │ ├── easeljs │ ├── events │ │ └── EventDispatcher.js │ └── utils │ │ └── Log.js │ └── preloadjs │ ├── AbstractLoader.js │ ├── LoadQueue.js │ ├── TagLoader.js │ ├── XHRLoader.js │ └── errors │ └── errors_ja-jp.js ├── SoundJS └── 0.4.0 │ ├── docs │ └── README.md │ └── src │ ├── README.md │ ├── easeljs │ ├── events │ │ └── EventDispatcher.js │ └── utils │ │ └── Log.js │ └── soundjs │ ├── FlashPlugin.js │ ├── HTMLAudioPlugin.js │ ├── Sound.js │ ├── WebAudioPlugin.js │ └── errors │ └── errors_ja-jp.js └── TweenJS └── 0.4.0 ├── docs └── README.md └── src ├── README.md ├── easeljs └── events │ └── EventDispatcher.js └── tweenjs ├── CSSPlugin.js ├── Ease.js ├── MotionGuidePlugin.js ├── SamplePlugin.js ├── Timeline.js └── Tween.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *TMP* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/README.md -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/docs/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/Bitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/Bitmap.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/BitmapAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/BitmapAnimation.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/Container.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/DOMElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/DOMElement.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/DisplayObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/DisplayObject.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/Graphics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/Graphics.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/MovieClip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/MovieClip.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/Shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/Shadow.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/Shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/Shape.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/SpriteSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/SpriteSheet.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/Stage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/Stage.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/display/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/display/Text.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/events/EventDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/events/EventDispatcher.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/events/MouseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/events/MouseEvent.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/filters/AlphaMapFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/filters/AlphaMapFilter.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/filters/AlphaMaskFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/filters/AlphaMaskFilter.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/filters/BoxBlurFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/filters/BoxBlurFilter.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/filters/ColorFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/filters/ColorFilter.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/filters/ColorMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/filters/ColorMatrix.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/filters/ColorMatrixFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/filters/ColorMatrixFilter.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/filters/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/filters/Filter.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/geom/Matrix2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/geom/Matrix2D.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/geom/Point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/geom/Point.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/geom/Rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/geom/Rectangle.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/ui/ButtonHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/ui/ButtonHelper.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/ui/Touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/ui/Touch.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/utils/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/utils/Log.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/utils/SpriteSheetBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/utils/SpriteSheetBuilder.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/utils/SpriteSheetUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/utils/SpriteSheetUtils.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/utils/Ticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/utils/Ticker.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/src/easeljs/utils/UID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/src/easeljs/utils/UID.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Animation and Ticker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Animation and Ticker/index.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Animation and Ticker/onTick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Animation and Ticker/onTick.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Animation and Ticker/pausing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Animation and Ticker/pausing.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Animation and Ticker/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Animation and Ticker/simple.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Animation and Ticker/timeBased.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Animation and Ticker/timeBased.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Getting Started/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Getting Started/demo.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Getting Started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Getting Started/index.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/HitTest/globalToLocal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/HitTest/globalToLocal.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/HitTest/hitTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/HitTest/hitTest.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/HitTest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/HitTest/index.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/HitTest/localToLocal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/HitTest/localToLocal.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Inheritance/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Inheritance/Button.js -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Inheritance/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Inheritance/demo.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Inheritance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Inheritance/index.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Mouse Interaction/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Mouse Interaction/basic.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Mouse Interaction/container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Mouse Interaction/container.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Mouse Interaction/drag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Mouse Interaction/drag.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Mouse Interaction/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Mouse Interaction/events.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Mouse Interaction/hitArea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Mouse Interaction/hitArea.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Mouse Interaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Mouse Interaction/index.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/Mouse Interaction/stage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/Mouse Interaction/stage.html -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/EaselJS/0.6.0/tutorials/shared/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/EaselJS/0.6.0/tutorials/shared/tutorial.js -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/docs/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/easeljs/events/EventDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/PreloadJS/0.3.0/src/easeljs/events/EventDispatcher.js -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/easeljs/utils/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/PreloadJS/0.3.0/src/easeljs/utils/Log.js -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/preloadjs/AbstractLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/PreloadJS/0.3.0/src/preloadjs/AbstractLoader.js -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/preloadjs/LoadQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/PreloadJS/0.3.0/src/preloadjs/LoadQueue.js -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/preloadjs/TagLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/PreloadJS/0.3.0/src/preloadjs/TagLoader.js -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/preloadjs/XHRLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/PreloadJS/0.3.0/src/preloadjs/XHRLoader.js -------------------------------------------------------------------------------- /ja/PreloadJS/0.3.0/src/preloadjs/errors/errors_ja-jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/PreloadJS/0.3.0/src/preloadjs/errors/errors_ja-jp.js -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/docs/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/easeljs/events/EventDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/SoundJS/0.4.0/src/easeljs/events/EventDispatcher.js -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/easeljs/utils/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/SoundJS/0.4.0/src/easeljs/utils/Log.js -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/soundjs/FlashPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/SoundJS/0.4.0/src/soundjs/FlashPlugin.js -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/soundjs/HTMLAudioPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/SoundJS/0.4.0/src/soundjs/HTMLAudioPlugin.js -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/soundjs/Sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/SoundJS/0.4.0/src/soundjs/Sound.js -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/soundjs/WebAudioPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/SoundJS/0.4.0/src/soundjs/WebAudioPlugin.js -------------------------------------------------------------------------------- /ja/SoundJS/0.4.0/src/soundjs/errors/errors_ja-jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/SoundJS/0.4.0/src/soundjs/errors/errors_ja-jp.js -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/docs/README.md -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/README.md: -------------------------------------------------------------------------------- 1 | translated files would go here. -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/easeljs/events/EventDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/src/easeljs/events/EventDispatcher.js -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/tweenjs/CSSPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/src/tweenjs/CSSPlugin.js -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/tweenjs/Ease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/src/tweenjs/Ease.js -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/tweenjs/MotionGuidePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/src/tweenjs/MotionGuidePlugin.js -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/tweenjs/SamplePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/src/tweenjs/SamplePlugin.js -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/tweenjs/Timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/src/tweenjs/Timeline.js -------------------------------------------------------------------------------- /ja/TweenJS/0.4.0/src/tweenjs/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateJS/localization/HEAD/ja/TweenJS/0.4.0/src/tweenjs/Tween.js --------------------------------------------------------------------------------