Changeset 1173 for trunk/iPhoneTemplateSet/plugins
- Timestamp:
- 10/16/08 08:40:54 (14 months ago)
- Location:
- trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet
- Files:
-
- 6 modified
-
config.yaml (modified) (1 diff)
-
lib/iPhoneTemplateSet/L10N.pm (modified) (1 diff)
-
lib/iPhoneTemplateSet/L10N/en_us.pm (modified) (1 diff)
-
lib/iPhoneTemplateSet/L10N/ja.pm (modified) (1 diff)
-
templates/entry.mtml (modified) (1 diff)
-
templates/index.mtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/config.yaml
r1099 r1173 2 2 name: iPhone Template Set 3 3 l10n_class: iPhoneTemplateSet::L10N 4 description: Template set for iPhone/iPod Touch4 description: <__trans phrase="iPhone Template Set is building a suitable page for the display by iPhone/iPod touch."> 5 5 author_name: Taichi Kamingoya 6 6 author_link: http://2xup.org/ 7 7 plugin_link: http://2xup.org/lab/mtplugins/templatesets/iphonetemplateset 8 version: 1. 08 version: 1.1 9 9 10 10 template_sets: -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N.pm
r1075 r1173 1 package Sample::iPhoneTemplateSet; 1 package iPhoneTemplateSet::L10N; 2 2 3 use strict; 3 use base 'MT::Plugin::iPhoneTemplateSet';4 use base qw( MT::Plugin::L10N ); 4 5 5 6 1; -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/en_us.pm
r1075 r1173 2 2 3 3 use strict; 4 use base 'iPhoneTemplateSet::L10N';4 use base qw( iPhoneTemplateSet::L10N ); 5 5 use vars qw( %Lexicon ); 6 %Lexicon = ( 6 7 our %Lexicon = ( 7 8 ); 8 9 -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/ja.pm
r1075 r1173 2 2 3 3 use strict; 4 use base 'iPhoneTemplateSet::L10N::en_us';4 use base qw( iPhoneTemplateSet::L10N::en_us ); 5 5 use vars qw( %Lexicon ); 6 6 7 %Lexicon = ( 8 #Template Label 7 our %Lexicon = ( 8 'iPhone Template Set is building a suitable page for the display by iPhone/iPod touch.' => 'iPhone Template Set 㯠iPhone/iPod touch ã§é²èЧããã®ã«é©ããããŒãžãåºåãããã³ãã¬ãŒãã»ããã§ãã', 9 'Main Index (for iPhone)' => 'ã¡ã€ã³ããŒãž (for iPhone)', 10 'Stylesheet (for iPhone)' => 'ã¹ã¿ã€ã«ã·ãŒã (for iPhone)', 11 'Entry (for iPhone)' => 'ããã°èšäº (for iPhone)', 9 12 ); 10 13 -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/entry.mtml
r1100 r1173 7 7 <title><$mt:EntryTitle$></title> 8 8 <link rel="stylesheet" href="<$mt:BlogURL$>m/styles.css" /> 9 <script type="text/javascript"> 10 window.onload = function() { 11 setTimeout(scrollTo, 100, 0, 1); 12 } 13 </script> 9 14 </head> 10 15 <body> -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/index.mtml
r1100 r1173 7 7 <title><$mt:BlogName$></title> 8 8 <link rel="stylesheet" href="<$mt:BlogURL$>m/styles.css" /> 9 <script type="text/javascript"> 10 window.onload = function() { 11 setTimeout(scrollTo, 100, 0, 1); 12 } 13 </script> 9 14 </head> 10 15 <body>
