Changeset 195 for ATGoogleMaps
- Timestamp:
- 11/08/08 15:56:51 (3 years ago)
- Location:
- ATGoogleMaps/branches/for-plone30
- Files:
-
- 2 added
- 2 edited
-
content/GMarker.py (modified) (2 diffs)
-
i18n/generated.pot (modified) (7 diffs)
-
model (added)
-
model/ATGoogleMaps.zargo (added)
Legend:
- Unmodified
- Added
- Removed
-
ATGoogleMaps/branches/for-plone30/content/GMarker.py
r193 r195 35 35 StringField( 36 36 name='address', 37 widget=StringField._properties['widget']( 38 label='Address', 39 label_msgid='ATGoogleMaps_label_address', 40 i18n_domain='ATGoogleMaps', 37 widget=IntegerWidget( 38 label="Address", 39 label_msgid="label_address", 40 i18n_domain="googlemaps", 41 size=30, 41 42 ), 42 43 ), 43 44 StringField( 44 45 name='phone', 45 widget=StringField._properties['widget']( 46 label='Phone', 47 label_msgid='ATGoogleMaps_label_phone', 48 i18n_domain='ATGoogleMaps', 46 widget=IntegerWidget( 47 label="Phone", 48 label_msgid="label_phone", 49 i18n_domain="googlemaps", 50 size=30, 49 51 ), 50 52 ), 51 53 StringField( 52 54 name='url', 53 widget=StringField._properties['widget']( 54 label='Url', 55 label_msgid='ATGoogleMaps_label_url', 56 i18n_domain='ATGoogleMaps', 55 widget=IntegerWidget( 56 label="URL", 57 label_msgid="label_url", 58 i18n_domain="googlemaps", 59 size=60, 57 60 ), 58 61 ), 59 62 StringField( 60 63 name='imageurl', 61 widget=StringField._properties['widget']( 62 label='Imageurl', 63 label_msgid='ATGoogleMaps_label_imageurl', 64 i18n_domain='ATGoogleMaps', 64 widget=IntegerWidget( 65 label="Image URL", 66 label_msgid="label_image_url", 67 i18n_domain="googlemaps", 68 size=60, 65 69 ), 66 70 ), 67 71 LatLngField( 68 72 name='point', 69 widget=LatLngField._properties['widget']( 70 label='Point', 71 label_msgid='ATGoogleMaps_label_point', 72 i18n_domain='ATGoogleMaps', 73 widget=LatLngWidget( 74 label="Point", 75 label_msgid="label_point", 76 description="Point of this marker.", 77 description_msgid="help_point", 78 i18n_domain="googlemaps", 79 size=12, 73 80 ), 74 81 ), 75 82 StringField( 76 83 name='tab1', 77 widget=StringField._properties['widget']( 78 label='Tab1', 79 label_msgid='ATGoogleMaps_label_tab1', 80 i18n_domain='ATGoogleMaps', 84 widget=IntegerWidget( 85 label="Tab #1 title", 86 label_msgid="label_tab1", 87 i18n_domain="googlemaps", 88 size=20, 81 89 ), 90 schemata="googlemaps_tabbed", 82 91 ), 83 92 StringField( 84 93 name='tab2', 85 widget=StringField._properties['widget']( 86 label='Tab2', 87 label_msgid='ATGoogleMaps_label_tab2', 88 i18n_domain='ATGoogleMaps', 94 widget=IntegerWidget( 95 label="Tab #2 title", 96 label_msgid="label_tab2", 97 i18n_domain="googlemaps", 98 size=20, 89 99 ), 100 schemata="googlemaps_tabbed", 90 101 ), 91 102 TextField( 92 103 name='detail', 104 allowable_content_types="zconf.ATDocument.allowed_content_types", 93 105 widget=TextAreaWidget( 94 label='Detail', 95 label_msgid='ATGoogleMaps_label_detail', 96 i18n_domain='ATGoogleMaps', 106 rows=10, 107 label="Detail", 108 label_msgid="label_detail", 109 i18n_domain="googlemaps", 97 110 ), 111 default_content_type="zconf.ATDocument.default_content_type", 112 searchable=True, 113 validators=('isTidyHtmlWithCleanup',), 114 schemata="googlemaps_tabbed", 115 default_output_type="text/x-html-safe", 98 116 ), 99 117 … … 127 145 # Methods 128 146 129 130 147 registerType(GMarker, PROJECTNAME) 131 148 # end of class GMarker -
ATGoogleMaps/branches/for-plone30/i18n/generated.pot
r193 r195 1 1 # archgenxml generated POT File 2 # unknown <unknown>, 2008.2 # takanori, yuta <takanori@takanory.net>, 2008. 3 3 msgid "" 4 4 msgstr "" 5 5 "Project-Id-Version: ATGoogleMaps\n" 6 "POT-Creation-Date: Sat Nov 08 1 4:51:392008\n"7 "PO-Revision-Date: Sat Nov 08 1 4:51:392008\n"8 "Last-Translator: unknown <unknown>\n"9 "Language-Team: unknown <unknown>\n"6 "POT-Creation-Date: Sat Nov 08 15:52:05 2008\n" 7 "PO-Revision-Date: Sat Nov 08 15:52:05 2008\n" 8 "Last-Translator: takanori, yuta <takanori@takanory.net>\n" 9 "Language-Team: takanori, yuta <takanori@takanory.net>\n" 10 10 "MIME-Version: 1.0\n" 11 11 "Content-Type: text/plain; charset=UTF-8\n" … … 20 20 #: content\GMap.py 21 21 msgid "ATGoogleMaps_help_mapControl" 22 msgstr ""23 24 #. Default: "Address"25 #: content\GMarker.py26 msgid "ATGoogleMaps_label_address"27 msgstr ""28 29 #. Default: "Detail"30 #: content\GMarker.py31 msgid "ATGoogleMaps_label_detail"32 msgstr ""33 34 #. Default: "Imageurl"35 #: content\GMarker.py36 msgid "ATGoogleMaps_label_imageurl"37 msgstr ""38 39 #. Default: "Phone"40 #: content\GMarker.py41 msgid "ATGoogleMaps_label_phone"42 msgstr ""43 44 #. Default: "Point"45 #: content\GMarker.py46 msgid "ATGoogleMaps_label_point"47 msgstr ""48 49 #. Default: "Tab1"50 #: content\GMarker.py51 msgid "ATGoogleMaps_label_tab1"52 msgstr ""53 54 #. Default: "Tab2"55 #: content\GMarker.py56 msgid "ATGoogleMaps_label_tab2"57 msgstr ""58 59 #. Default: "Url"60 #: content\GMarker.py61 msgid "ATGoogleMaps_label_url"62 22 msgstr "" 63 23 … … 77 37 msgstr "" 78 38 39 #. Default: "Point of this marker." 40 #: content\GMarker.py 41 msgid "help_point" 42 msgstr "" 43 79 44 #. Default: "Select a Google Maps server to use." 80 45 #: content\GMap.py … … 92 57 msgstr "" 93 58 59 #. Default: "Address" 60 #: content\GMarker.py 61 msgid "label_address" 62 msgstr "" 63 94 64 #. Default: "Center" 95 65 #: content\GMap.py … … 97 67 msgstr "" 98 68 69 #. Default: "Detail" 70 #: content\GMarker.py 71 msgid "label_detail" 72 msgstr "" 73 99 74 #. Default: "Height" 100 75 #: content\GMap.py 101 76 msgid "label_height" 77 msgstr "" 78 79 #. Default: "Image URL" 80 #: content\GMarker.py 81 msgid "label_image_url" 102 82 msgstr "" 103 83 … … 117 97 msgstr "" 118 98 99 #. Default: "Phone" 100 #: content\GMarker.py 101 msgid "label_phone" 102 msgstr "" 103 104 #. Default: "Point" 105 #: content\GMarker.py 106 msgid "label_point" 107 msgstr "" 108 119 109 #. Default: "Display Scale Control" 120 110 #: content\GMap.py … … 127 117 msgstr "" 128 118 119 #. Default: "Tab #1 title" 120 #: content\GMarker.py 121 msgid "label_tab1" 122 msgstr "" 123 124 #. Default: "Tab #2 title" 125 #: content\GMarker.py 126 msgid "label_tab2" 127 msgstr "" 128 129 129 #. Default: "Display Type Control" 130 130 #: content\GMap.py 131 131 msgid "label_type_control" 132 msgstr "" 133 134 #. Default: "URL" 135 #: content\GMarker.py 136 msgid "label_url" 132 137 msgstr "" 133 138
Note: See TracChangeset
for help on using the changeset viewer.
