144 lines
4.3 KiB
Perl
144 lines
4.3 KiB
Perl
package WebGUI::i18n::English::Asset_MapPoint;
|
|
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'latitude label' => {
|
|
message => 'Latitude',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'latitude description' => {
|
|
message => 'The latitude of the point',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'longitude label' => {
|
|
message => 'Longitude',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'longitude description' => {
|
|
message => 'The longitude of the point',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'website label' => {
|
|
message => 'Website URL',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'website description' => {
|
|
message => 'A website URL',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'address1 label' => {
|
|
message => 'Address 1',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'address1 description' => {
|
|
message => 'The first line of the address',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'address2 label' => {
|
|
message => 'Address 2',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'address2 description' => {
|
|
message => 'The second line of the address',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'city label' => {
|
|
message => 'City',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'city description' => {
|
|
message => 'The city the point is in',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'state label' => {
|
|
message => 'State/Province',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'state description' => {
|
|
message => 'The state/province the point is in',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'zipCode label' => {
|
|
message => 'Zip/Postal Code',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'zipCode description' => {
|
|
message => 'The zip/postal code the point is in',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'country label' => {
|
|
message => 'Country',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'country description' => {
|
|
message => 'The country the point is in',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'phone label' => {
|
|
message => 'Phone',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'phone description' => {
|
|
message => 'The phone number of the location',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'fax label' => {
|
|
message => 'Fax',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'fax description' => {
|
|
message => 'The fax number of the location',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'email label' => {
|
|
message => 'E-mail',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'email description' => {
|
|
message => 'The e-mail address of the location',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'storageIdPhoto label' => {
|
|
message => 'Photo',
|
|
lastUpdated => 0,
|
|
context => 'Label for asset property',
|
|
},
|
|
'storageIdPhoto description' => {
|
|
message => 'A photo of the location',
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
'assetName' => {
|
|
message => "MapPoint",
|
|
lastUpdated => 0,
|
|
context => "Name of this asset",
|
|
},
|
|
};
|
|
|
|
1;
|
|
#vim:ft=perl
|