merged new map
@ -142,10 +142,21 @@ List of third party components:
|
||||
|
||||
23. TinyMCE: JavaScript WYSIWYG Editor
|
||||
Path : htdocs/resource2/tinymce/
|
||||
htdocs/images/icons/
|
||||
URI : http://tinymce.moxiecode.com/
|
||||
License : LGPL 2.1
|
||||
|
||||
24. OKAPI: Opencaching API
|
||||
Path : htdocs/okapi
|
||||
Path : htdocs/okapi/
|
||||
URI : http://code.google.com/p/opencaching-api/
|
||||
License : MIT
|
||||
|
||||
OKAPI cache icons
|
||||
Path : htdocs/resource2/ocstyle/images/map/caches2/
|
||||
URI : http://code.google.com/p/opencaching-pl/source/browse/#svn%2Ftrunk%2Fokapi%2Fstatic%2Ftilemap
|
||||
License : MIT
|
||||
|
||||
25. OpenIcons
|
||||
Path : htdocs/resource2/ocstyle/images/openicons/
|
||||
URI : http://openiconlibrary.sourceforge.net/
|
||||
License : Creative Commons BY-SA 3.0
|
||||
|
@ -110,6 +110,7 @@
|
||||
$opt['locale']['DE']['country'] = 'DE';
|
||||
$opt['locale']['DE']['page']['subtitle1'] = 'Geocaching in Deutschland,';
|
||||
$opt['locale']['DE']['page']['subtitle2'] = 'Österreich und der Schweiz';
|
||||
$opt['locale']['DE']['helpwiki'] = "http://wiki.opencaching.de/index.php/";
|
||||
|
||||
$opt['locale']['FR']['timezone'] = 'Europe/Berlin';
|
||||
$opt['locale']['FR']['format']['date'] = '%x';
|
||||
@ -226,4 +227,4 @@
|
||||
$opt['locale']['JA']['page']['subtitle1'] = 'Opencachingとジオキャッシング';
|
||||
$opt['locale']['JA']['page']['subtitle2'] = '';
|
||||
|
||||
?>
|
||||
?>
|
||||
|
@ -487,11 +487,23 @@
|
||||
$opt['map']['maxcachereducedsize'] = 10 * 1048576; // = 10MB
|
||||
|
||||
// max number of caches displayed in google maps
|
||||
$opt['map']['maxrecords'] = 180;
|
||||
if (isset($_SERVER['HTTP_USER_AGENT']))
|
||||
{
|
||||
$user_agent = " " . $_SERVER['HTTP_USER_AGENT'];
|
||||
if (strpos($user_agent,"MSIE") && !strpos($user_agent,"Opera"))
|
||||
$opt['map']['maxrecords'] = 200;
|
||||
else
|
||||
$opt['map']['maxrecords'] = 2500;
|
||||
}
|
||||
else
|
||||
$opt['map']['maxrecords'] = 250;
|
||||
// ... selectable by user:
|
||||
$opt['map']['min_maxrecords'] = 100;
|
||||
$opt['map']['max_maxrecords'] = 4000;
|
||||
|
||||
// the full screen mode requires a GIS server at the moment
|
||||
// has to be migrated to map2.php
|
||||
$opt['map']['disablefullscreen'] = true;
|
||||
// $opt['map']['disablefullscreen'] = true; no longer used
|
||||
|
||||
/* external binaries
|
||||
*/
|
||||
|
@ -33,3 +33,5 @@ date commit ID change
|
||||
2013-02-16 06d832c3 new table data_licenses
|
||||
added user.data_license
|
||||
2013-02-17 b7b51eab added user.email_problems
|
||||
2013-03-01 added caches.short2 und .short2_trans_id
|
||||
2013-03-03 added profile_options.optionset
|
||||
|
@ -72,16 +72,16 @@ INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selec
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('16', 'Poisonous plants', 'plants', '1556', '1', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/plants.png', 'resource2/ocstyle/images/attributes/plants-no.png', 'resource2/ocstyle/images/attributes/plants-disabled.png', 'There are poisonous plants near the cache. Take care and prevent children and dogs from touching or eating them.', '1626', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('17', 'Dangerous animals', 'animals', '1557', '1', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/animals.png', 'resource2/ocstyle/images/attributes/animals-no.png', 'resource2/ocstyle/images/attributes/animals-disabled.png', 'The area is inhabited by possibly dangerous animals, e.g. rabies areas, venomous snakes, scorpions or bears.', '1627', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('18', 'Parking area nearby', 'parking', '1558', '2', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/parking.png', 'resource2/ocstyle/images/attributes/parking-no.png', 'resource2/ocstyle/images/attributes/parking-disabled.png', 'A nearby parking area is situated as starting point for doing this cache. If no free parking is available, add the \"access or parking fee\" attribute.', '1628', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('19', 'Public transportation', 'public', '1559', '2', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/public.png', 'resource2/ocstyle/images/attributes/public-no.png', 'resource2/ocstyle/images/attributes/public-disabled.png', 'This cache is located outside of urban areas and has a public transport station nearby. Don’t set this attribute for geocaches in urban areas that are commonly equipped with public transportation.', '1629', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('19', 'Public transportation', 'public', '1559', '2', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/public.png', 'resource2/ocstyle/images/attributes/public-no.png', 'resource2/ocstyle/images/attributes/public-disabled.png', 'This cache is located outside of urban areas and has a public transport station nearby. Don’t set this attribute for geocaches in urban areas that are commonly equipped with public transportation.', '1629', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('20', 'Drinking water nearby', 'water', '1560', '2', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/water.png', 'resource2/ocstyle/images/attributes/water-no.png', 'resource2/ocstyle/images/attributes/water-disabled.png', 'There is drinking water along the trail or near the cache. This attribute is useful especially for planning event caches, longer hikes or caches at probably dirty locations like caves.', '1630', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('21', 'Public restrooms nearby', 'restrooms', '1561', '2', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/restrooms.png', 'resource2/ocstyle/images/attributes/restrooms-no.png', 'resource2/ocstyle/images/attributes/restrooms-disabled.png', 'There are public restrooms along the way or near the cache. This attribute is useful especially for planning event caches or extensive multicaches.', '1631', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('22', 'Public phone nearby', 'phone', '1562', '2', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/phone.png', 'resource2/ocstyle/images/attributes/phone-no.png', 'resource2/ocstyle/images/attributes/phone-disabled.png', 'There is a public phone along the way or near the cache. Especially for event caches you should enquire for nearby phones and set this attribute if applicable.', '1632', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('23', 'First aid available', 'firstaid', '1563', '2', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/firstaid.png', 'resource2/ocstyle/images/attributes/firstaid-no.png', 'resource2/ocstyle/images/attributes/firstaid-disabled.png', 'There is a first aid station, call box, mountain rescue or similar arrangement near the cache. This attribute is useful especially in demanding areas, like climbing caches, cave caches, high mountains or at the water. Check if you can add emergency phone numbers (like a mountain rescue) to your cache listing.', '1633', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('24', 'Near the parking area', 'car', '1564', '3', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/car.png', 'resource2/ocstyle/images/attributes/car-no.png', 'resource2/ocstyle/images/attributes/car-disabled.png', 'The geocache is located close to a parking area, only a few steps away - it’s a \"cache and dash\".', '1634', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('25', 'Long walk', 'hiking', '1565', '3', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/hiking.png', 'resource2/ocstyle/images/attributes/hiking-no.png', 'resource2/ocstyle/images/attributes/hiking-disabled.png', 'This cache requires a long walk - more than 5 km round trip. In the mountains and other steep areas, the distance for a \"long walk\" may be shorter. Walking shoes and appropriate equipment are recommended.', '1635', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('24', 'Near the parking area', 'car', '1564', '3', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/car.png', 'resource2/ocstyle/images/attributes/car-no.png', 'resource2/ocstyle/images/attributes/car-disabled.png', 'The geocache is located close to a parking area, only a few steps away - it’s a \"cache and dash\".', '1634', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('25', 'Long walk', 'hiking', '1565', '3', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/hiking.png', 'resource2/ocstyle/images/attributes/hiking-no.png', 'resource2/ocstyle/images/attributes/hiking-disabled.png', 'This cache requires a long walk - more than 5 km round trip. In the mountains and other steep areas, the distance for a \"long walk\" may be shorter. Walking shoes and appropriate equipment are recommended.', '1635', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('26', 'Swamp or marsh', 'wading', '1566', '3', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/wading.png', 'resource2/ocstyle/images/attributes/wading-no.png', 'resource2/ocstyle/images/attributes/wading-disabled.png', 'This cache requires passing swampy or marshy ground. Wear appropriate clothes. After rainfall, the terrain may be very demanding or not passable at all.', '1636', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('27', 'Hilly area', 'steep', '1567', '3', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/steep.png', 'resource2/ocstyle/images/attributes/steep-no.png', 'resource2/ocstyle/images/attributes/steep-disabled.png', 'One or more ascents lie between you and the cache.', '1637', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('28', 'Some climbing (no gear needed)', 'climbing', '1568', '3', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/climbing.png', 'resource2/ocstyle/images/attributes/climbing-no.png', 'resource2/ocstyle/images/attributes/climbing-disabled.png', 'This cache requires some climbing and you may have to use your hands, but you won’t need climbing gear. Be very careful during rainy weather or before thunderstorms!', '1638', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('27', 'Hilly area', 'steep', '1567', '3', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/steep.png', 'resource2/ocstyle/images/attributes/steep-no.png', 'resource2/ocstyle/images/attributes/steep-disabled.png', 'One or more ascents lie between you and the cache.', '1637', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('28', 'Some climbing (no gear needed)', 'climbing', '1568', '3', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/climbing.png', 'resource2/ocstyle/images/attributes/climbing-no.png', 'resource2/ocstyle/images/attributes/climbing-disabled.png', 'This cache requires some climbing and you may have to use your hands, but you won’t need climbing gear. Be very careful during rainy weather or before thunderstorms!', '1638', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('29', 'Swimming required', 'swimming', '1569', '3', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/swimming.png', 'resource2/ocstyle/images/attributes/swimming-no.png', 'resource2/ocstyle/images/attributes/swimming-disabled.png', 'This cache requires crossing a river or a lake. The water is steep ', '1639', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('30', 'Point of interest', 'interestsign', '1570', '4', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/interestsign.png', 'resource2/ocstyle/images/attributes/interestsign-no.png', 'resource2/ocstyle/images/attributes/interestsign-disabled.png', 'There is a point of interest at the cache, like a nice scenic overlook or a larger castle ruin. This place is worth visiting it even without a geocache nearby.', '1640', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('31', 'Moving target', 'moving', '1571', '4', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/moving.png', 'resource2/ocstyle/images/attributes/moving-no.png', 'resource2/ocstyle/images/attributes/moving-disabled.png', 'This geocache is moving around. For example, the owner might regularly move the cache from one place to another, or the finders will do this task and post new coordinates in their log entries. The owner must update coordinates in the cache description after each move.', '1641', '0');
|
||||
@ -96,8 +96,8 @@ INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selec
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('40', 'by day only', 'day', '1580', '6', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/day.png', 'resource2/ocstyle/images/attributes/day-no.png', 'resource2/ocstyle/images/attributes/day-disabled.png', 'This cache shoud be attempted during daylight only. For example, the area may be dangerous and contain cliffs or abysses. Or using flashlights may be unfeasable because it would look suspicious within a residential area.', '1607', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('41', 'Tide', 'tide', '1581', '6', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/tide.png', 'resource2/ocstyle/images/attributes/tide-no.png', 'resource2/ocstyle/images/attributes/tide-disabled.png', 'This cache can be done only at low-tide or only at high-tide.', '1608', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('42', 'All seasons', 'date', '1582', '7', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/date.png', 'resource2/ocstyle/images/attributes/date-no.png', 'resource2/ocstyle/images/attributes/date-disabled.png', 'This cache can be found the whole year round, while difficulty may depend on seasons. Specify difficulty for good conditions.', '1609', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('43', 'Breeding season / protected nature', 'naturschutz', '1583', '7', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/naturschutz.png', 'resource2/ocstyle/images/attributes/naturschutz-no.png', 'resource2/ocstyle/images/attributes/naturschutz-disabled.png', 'Don’t seek this cache during animal breeding season! Please indicate in the cache description which time of year must be avoided. Also, pay attention to the local terms and signs regarding nature protection.', '1610', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('44', 'Snow-proof hiding place', 'snow', '1584', '7', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/snow.png', 'resource2/ocstyle/images/attributes/snow-no.png', 'resource2/ocstyle/images/attributes/snow-disabled.png', 'This cache can be found even after heavy snowing. All stages and the geocache are hidden in a snow-safe way: they will not be covered by fallen snow an not by snow-piles created by snow-clearing vehicles.', '1611', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('43', 'Breeding season / protected nature', 'naturschutz', '1583', '7', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/naturschutz.png', 'resource2/ocstyle/images/attributes/naturschutz-no.png', 'resource2/ocstyle/images/attributes/naturschutz-disabled.png', 'Don’t seek this cache during animal breeding season! Please indicate in the cache description which time of year must be avoided. Also, pay attention to the local terms and signs regarding nature protection.', '1610', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('44', 'Snow-proof hiding place', 'snow', '1584', '7', '1', '0', '1', '0', 'resource2/ocstyle/images/attributes/snow.png', 'resource2/ocstyle/images/attributes/snow-no.png', 'resource2/ocstyle/images/attributes/snow-disabled.png', 'This cache can be found even after heavy snowing. All stages and the geocache are hidden in a snow-safe way: they will not be covered by fallen snow an not by snow-piles created by snow-clearing vehicles.', '1611', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('46', 'Special equipment', 'tools', '1585', '9', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/tools.png', 'resource2/ocstyle/images/attributes/tools-no.png', 'resource2/ocstyle/images/attributes/tools-disabled.png', 'You will need special equipment which is not specified by other attributes, e.g. a laser pointer, walkie-talkies or a car jack.', '1612', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('47', 'Compass', 'compass', '1586', '9', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/compass.png', 'resource2/ocstyle/images/attributes/compass-no.png', 'resource2/ocstyle/images/attributes/compass-disabled.png', 'A compass is required.', '1613', '0');
|
||||
INSERT INTO `cache_attrib` (`id`, `name`, `icon`, `trans_id`, `group_id`, `selectable`, `category`, `search_default`, `default`, `icon_large`, `icon_no`, `icon_undef`, `html_desc`, `html_desc_trans_id`, `hidden`) VALUES ('48', 'Flashlight', 'flashlight', '1587', '9', '1', '0', '0', '0', 'resource2/ocstyle/images/attributes/flashlight.png', 'resource2/ocstyle/images/attributes/flashlight-no.png', 'resource2/ocstyle/images/attributes/flashlight-disabled.png', 'A flashlight is required for finding this cache. Don’t forget spare batteries!', '1614', '0');
|
||||
@ -155,16 +155,16 @@ INSERT INTO `cache_status` (`id`, `name`, `trans_id`, `de`, `en`, `allow_user_vi
|
||||
-- Table cache_type
|
||||
SET NAMES 'utf8';
|
||||
TRUNCATE TABLE `cache_type`;
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('1', 'unknown cachetyp', '535', '10', 'Other', 'unbekannter Cachetyp', 'unknown cachetyp', 'cache/unknown.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('2', 'Traditional Cache', '536', '1', 'Trad.', 'normaler Cache', 'Traditional Cache', 'cache/traditional.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('3', 'Multicache', '514', '2', 'Multi', 'Multicache', 'Multicache', 'cache/multi.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('4', 'virtual Cache', '537', '6', 'Virt.', 'virtueller Cache', 'virtual Cache', 'cache/virtual.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('5', 'Webcam Cache', '538', '7', 'ICam.', 'Webcam-Cache', 'Webcam Cache', 'cache/webcam.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('6', 'Event Cache', '539', '3', 'Event', 'Event-Cache', 'Event Cache', 'cache/event.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('7', 'Quizcache', '518', '8', 'Quiz', 'Rätselcache', 'Quizcache', 'cache/mystery.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('8', 'Math/Physics-Cache', '540', '9', 'Math', 'Mathe-/Physikcache', 'Math/Physics-Cache', 'cache/mathe.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('9', 'Moving Cache', '541', '4', 'Moving', 'beweglicher Cache', 'Moving Cache', 'cache/moving.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`) VALUES ('10', 'Drive-In', '542', '5', 'Driv.', 'Drive-In', 'Drive-In', 'cache/drivein.gif');
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('1', 'unknown cachetyp', '535', '10', 'Other', 'unbekannter Cachetyp', 'unknown cachetyp', 'cache/unknown.gif', 'Unknown', 862);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('2', 'Traditional Cache', '536', '1', 'Trad.', 'normaler Cache', 'Traditional Cache', 'cache/traditional.gif', 'Traditional', 1855);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('3', 'Multicache', '514', '2', 'Multi', 'Multicache', 'Multicache', 'cache/multi.gif', 'Multicache', 514);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('4', 'virtual Cache', '537', '6', 'Virt.', 'virtueller Cache', 'virtual Cache', 'cache/virtual.gif', 'Virtual', 1857);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('5', 'Webcam Cache', '538', '7', 'ICam.', 'Webcam-Cache', 'Webcam Cache', 'cache/webcam.gif', 'Webcam', 1858);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('6', 'Event Cache', '539', '3', 'Event', 'Event-Cache', 'Event Cache', 'cache/event.gif', 'Event', 1859);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('7', 'Quizcache', '518', '8', 'Quiz', 'Rätselcache', 'Quizcache', 'cache/mystery.gif', 'Quiz', 1860);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('8', 'Math/Physics-Cache', '540', '9', 'Math', 'Mathe-/Physikcache', 'Math/Physics Cache', 'cache/mathe.gif', 'Math/Physics', 1861);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('9', 'Moving Cache', '541', '4', 'Moving', 'beweglicher Cache', 'Moving Cache', 'cache/moving.gif', 'Moving', 1862);
|
||||
INSERT INTO `cache_type` (`id`, `name`, `trans_id`, `ordinal`, `short`, `de`, `en`, `icon_large`, `short2`,`short2_trans_id`) VALUES ('10', 'Drive-In', '542', '5', 'Driv.', 'Drive-In', 'Drive-In', 'cache/drivein.gif', 'Drive-in', 1863);
|
||||
|
||||
-- Table cache_logtype
|
||||
SET NAMES 'utf8';
|
||||
@ -653,11 +653,15 @@ INSERT INTO `object_types` (`id`, `name`) VALUES ('7', 'Removed Object');
|
||||
-- Table profile_options
|
||||
SET NAMES 'utf8';
|
||||
TRUNCATE TABLE `profile_options`;
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`) VALUES ('1', 'MiniMap-Zoom', '748', '1', '11', '^[1-9][0-9]{0,1}$', '0', 'text');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`) VALUES ('2', 'Hometown', '747', '0', '', '^.*$', '10', 'text');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`) VALUES ('3', 'Free text', '746', '0', '', NULL, '100', 'textarea');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`) VALUES ('4', 'Age', '745', '0', '', '^[[0-9]+$', '80', 'text');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`) VALUES ('5', 'Show statistics', '744', '1', '1', '^[[0-1]{1,1}$', '50', 'checkbox');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('1', 'MiniMap-Zoom', '748', '1', '11', '^[1-9][0-9]{0,1}$', '0', 'text', '1');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('2', 'Hometown', '747', '0', '', '^.*$', '10', 'text', '1');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('3', 'Free text', '746', '0', '', NULL, '100', 'textarea', '1');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('4', 'Age', '745', '0', '', '^[[0-9]+$', '80', 'text', '1');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('5', 'Show statistics', '744', '1', '1', '^[0-1]$', '50', 'checkbox', '1');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('6', 'Menu option \'Map\' shows', '1867', '1', '1', '^[0-1]$', '110', 'select:0=small map,1=fullscreen map', '2');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('7', 'Show overview map', '1870', '1', '0', '^[0-1]$', '120', 'checkbox', '2');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('8', 'Maximum caches on map<br />(%1-%2, 0=automatic)', '1871', '1', '0', '^[1-9][0-9]{2,3}$', '130', 'text', '2');
|
||||
INSERT INTO `profile_options` (`id`, `name`, `trans_id`, `internal_use`, `default_value`, `check_regex`, `option_order`, `option_input`,`optionset`) VALUES ('9', 'Cache icons', '1872', '1', '1', '^[1-9]$', '140', 'select:1=classic OC,2=OKAPI style', '2');
|
||||
|
||||
-- Table replication_overwritetypes
|
||||
SET NAMES 'utf8';
|
||||
@ -1760,7 +1764,7 @@ INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1143', 'E', '20
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1144', 'W', '2010-08-28 11:48:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1146', 'Kilometer', '2010-08-28 11:48:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1164', 'Some more items found...', '2010-08-28 11:48:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1165', 'Search for city, cache or waypoint', '2010-08-28 11:48:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1165', 'city, cachename or waypoint', '2010-08-28 11:48:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1166', 'Show link to this map', '2010-08-28 11:48:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1206', 'km', '2010-08-28 11:48:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1208', 'h', '2010-08-28 11:48:04');
|
||||
@ -1807,7 +1811,7 @@ INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1333', 'Waypoin
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1334', 'General', '2010-09-07 19:19:30');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1335', 'Time', '2010-09-07 19:19:30');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1336', 'Seasonal', '2010-09-07 19:19:30');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1337', 'System', '2010-09-07 19:19:30');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1337', 'Listing', '2010-09-07 19:19:30');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1338', 'Tools needed', '2010-09-07 19:19:30');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1339', 'Preparation needed', '2010-09-07 19:19:31');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1340', 'Persons', '2010-09-07 19:19:31');
|
||||
@ -1851,7 +1855,7 @@ INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1377', '(leave
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1378', 'Please note the <a href=\"articles.php?page=cacheinfo#logpw\" target=\"_blank\">description</a>', '2010-09-07 20:19:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1379', 'Less', '2010-09-07 20:19:02');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1380', 'Search for caches', '2010-09-07 20:19:02');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1381', 'JavaScrupt is not activated, you cannot use the following options (sorting to attributes) - basic search is supported nevertheless.', '2010-09-07 20:19:02');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1381', 'JavaScript is not activated, you cannot use the following options (sorting to attributes) - basic search is supported nevertheless.', '2010-09-07 20:19:02');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1382', 'Sorting of result:', '2010-09-07 20:19:02');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1383', 'Last log', '2010-09-07 20:19:02');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1384', 'Show recommendation from other users first', '2010-09-07 20:19:02');
|
||||
@ -2119,7 +2123,7 @@ INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1664', 'Time to
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1665', 'Sec.', '2010-09-19 00:23:51');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1666', 'Only show Geocaches with the following properties:', '2010-09-19 00:23:51');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1667', 'Cachetype', '2010-09-19 00:23:51');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1668', 'Cache container', '2010-09-19 00:23:51');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1668', 'Container', '2010-09-19 00:23:51');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1669', 'Hide', '2010-09-19 00:23:51');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1670', 'My owns', '2010-09-19 00:23:51');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1671', 'Not active', '2010-09-19 00:23:51');
|
||||
@ -2222,7 +2226,7 @@ INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1775', 'Child w
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1776', 'Waypoint type:', '2011-07-10 18:02:37');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1777', 'Please select type', '2011-07-10 18:02:37');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1778', 'Coordinate:', '2011-07-10 18:02:37');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1779', 'Download GPX file (max. 500)', '2011-07-10 18:02:57');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1779', 'Download GPX file (max. 500 caches)', '2011-07-10 18:02:57');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1780', 'Add waypoint', '2011-07-10 18:55:32');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1781', 'Add new', '2011-07-10 18:55:32');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1782', 'Delete waypoint', '2011-07-10 18:55:33');
|
||||
@ -2278,9 +2282,38 @@ INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1835', 'The use
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1837', 'Distance from <a href=\"myprofile.php\">user-profile home coordinates</a>', '2013-02-19 05:40:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1838', 'Username or email address', '2013-02-19 05:40:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1839', 'You must select a search to overwrite.', '2013-02-23 19:00:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1840', 'Link to this map view', '2013-02-24 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1841', 'Your Internet Explorer is too old to display the map. Please upgrade at least to version 7, better 8.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1842', 'Go to home coordinates', '2013-02-24 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1843', 'Switch to small map', '2013-02-24 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1844', 'Between 1 and 500 caches must be displayed for download.', '2013-02-24 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1846', 'Select waypoint type', '2013-02-25 19:00:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1847', 'Invalid coordinate', '2013-02-25 19:00:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1848', 'Registered since', '2013-02-25 19:00:04');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1849', 'Map is being updated', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1850', 'was not found (with the selected settings)', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1851', 'Map display with Microsoft Internet Explorer is slow and restricted to %1 geocaches. Use another browser for better performance.', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1852', 'Geocaches found, nearest first:', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1853', 'Found places via Google:', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1855', 'Traditional', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1857', 'Virtual', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1858', 'Webcam', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1859', 'Event', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1860', 'Quiz', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1861', 'Math/Physics', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1862', 'Moving', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1863', 'Drive-In ', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1865', 'Loading map', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1866', 'Instructions', '2013-02-28 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1867', 'Menu option \'Map\' shows', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1868', 'small map', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1869', 'fullscreen map', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1870', 'Show overview map', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1871', 'Maximum caches on map<br />(%1-%2, 0=automatic)', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1872', 'Cache icons', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1873', 'classic OC', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1874', 'OKAPI style', '2013-03-03 00:00:00');
|
||||
INSERT INTO `sys_trans` (`id`, `text`, `last_modified`) VALUES ('1875', 'You must be logged in to change map settings.', '2013-03-03 00:00:00');
|
||||
|
||||
-- Table sys_trans_ref
|
||||
SET NAMES 'utf8';
|
||||
@ -4441,7 +4474,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('31', 'DE', 'Der Familienname enthält ungültige Zeichen.', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('32', 'DE', 'Der Vorname enthält ungültige Zeichen.', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('33', 'DE', 'Keine Angabe', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('34', 'DE', 'Alle anzeigen', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('34', 'DE', 'alle anzeigen', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('35', 'DE', 'Die E-Mail-Adresse ist nicht gültig.', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('36', 'DE', 'Türkisch', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('37', 'DE', 'Dein Passwort', '2010-08-28 11:48:06');
|
||||
@ -4938,7 +4971,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('539', 'DE', 'Event-Cache', '2012-07-24 21:30:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('540', 'DE', 'Mathe-/Physikcache', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('541', 'DE', 'beweglicher Cache', '2012-07-24 21:30:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('542', 'DE', 'Drive-In Cache', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('542', 'DE', 'Drive-In-Cache', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('544', 'DE', 'Ich möchte über neue Caches im Umkreis von %1 km benachrichtigt werden.', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('545', 'DE', 'BBCode (für Foren):', '2010-08-28 11:48:06');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('546', 'DE', 'Opencaching.de-Statistik von %1', '2010-08-28 11:48:06');
|
||||
@ -5313,7 +5346,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1144', 'DE', 'W', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1146', 'DE', 'Kilometer', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1164', 'DE', 'Weitere Einträge gefunden...', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'DE', 'Nach Ort, Cache oder Wegpunkt suchen', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'DE', 'Ort, Cachename oder Wegpunkt', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1166', 'DE', 'Link zu dieser Ansicht anzeigen', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1206', 'DE', 'km', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1208', 'DE', 'h', '2010-08-28 11:48:07');
|
||||
@ -5360,7 +5393,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1334', 'DE', 'Allgemein', '2010-09-11 00:08:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1335', 'DE', 'Zeitlich', '2010-09-11 00:04:26');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1336', 'DE', 'Saisonbedingt', '2010-09-11 00:04:16');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1337', 'DE', 'Systembedingt', '2010-09-11 00:03:50');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1337', 'DE', 'Listing', '2010-09-11 00:03:50');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1338', 'DE', 'Benötigt Werkzeug', '2010-09-11 00:03:40');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1339', 'DE', 'Benötigt Vorarbeit', '2010-09-11 00:03:27');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1340', 'DE', 'Personen', '2010-09-11 00:03:19');
|
||||
@ -5384,7 +5417,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1358', 'DE', 'Du hast diesen Cache gefunden', '2010-09-10 23:59:15');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1359', 'DE', 'Du hast diesen Cache nicht gefunden', '2010-09-10 23:58:57');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1360', 'DE', 'In diesem Cache ist ein GeoKrety', '2010-09-10 23:58:42');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1361', 'DE', 'Dieser Cache hat %1 Empfehlungen', '2010-09-10 23:58:30');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1361', 'DE', 'Dieser Cache hat %1 Empfehlung(en)', '2010-09-10 23:58:30');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1362', 'DE', 'Logeintrag f\ür den Cache <a href=\"viewcache.php?cacheid={cacheid}\">{cachename}</a> bearbeiten', '2010-09-10 23:58:05');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1363', 'DE', 'Art des Logeintrags:', '2010-09-10 23:57:40');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1364', 'DE', 'JavaScript ist bei deinem Browser deaktiviert, du kannst nur Text eingeben. Um HTML oder den Editor zu verwenden, aktiviere bitte JavaScript.', '2010-09-10 23:57:54');
|
||||
@ -5402,7 +5435,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1376', 'DE', 'Versteckt seit:', '2010-09-10 23:53:47');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1377', 'DE', '(Leer lassen für kein Kennwort)', '2010-09-10 23:53:32');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1378', 'DE', 'Bitte die <a href=\"articles.php?page=cacheinfo#logpw\" target=\"_blank\">Beschreibung</a> beachten!', '2010-09-10 23:53:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1379', 'DE', 'Weniger', '2010-09-10 23:52:53');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1379', 'DE', 'weniger', '2010-09-10 23:52:53');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1380', 'DE', 'Cachesuche', '2010-09-10 23:52:44');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1381', 'DE', 'JavaScript ist bei dir deaktiviert, du kannst die folgenden Optionen (Sortierung bis Attribute) nicht nutzen - die Suche funktioniert aber trotzdem.', '2010-09-10 23:52:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1382', 'DE', 'Ausgabe sortieren nach:', '2010-09-10 23:52:28');
|
||||
@ -5663,22 +5696,22 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1656', 'DE', 'Länderknoten', '2010-09-13 00:16:22');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1657', 'DE', 'bis', '2010-09-14 01:26:52');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1658', 'DE', 'Der Weg', '2010-09-15 15:06:51');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1659', 'DE', 'Cachegröße:', '2010-09-27 00:34:11');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1659', 'DE', 'Cachegröße', '2010-09-27 00:34:11');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1660', 'DE', 'Link', '2010-09-27 00:34:02');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1661', 'DE', 'Öffnen', '2010-09-27 00:33:57');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1662', 'DE', 'Zu den Favoriten hinzufügen...', '2010-09-27 00:33:50');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1663', 'DE', 'Angezeigte Geocaches', '2010-09-27 00:33:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1663', 'DE', 'angezeigte Geocaches', '2010-09-27 00:33:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1664', 'DE', 'Ladezeit', '2010-09-27 00:33:16');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1665', 'DE', 'Sek.', '2010-09-27 00:33:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1666', 'DE', 'Nur Geocaches mit folgenden Eigenschaften anzeigen:', '2010-09-27 00:33:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1667', 'DE', 'Cacheart', '2010-09-27 00:32:40');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1668', 'DE', 'Cache Behälter', '2010-09-27 00:32:30');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1668', 'DE', 'Behälter', '2010-09-27 00:32:30');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1669', 'DE', 'Ausblenden', '2010-09-27 00:32:12');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1670', 'DE', 'Meine Eigenen', '2010-09-27 00:30:55');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1671', 'DE', 'Inaktiv', '2010-09-27 00:30:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1672', 'DE', 'Mehrfach gelistet', '2010-09-27 00:30:26');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1670', 'DE', 'meine eigenen', '2010-09-27 00:30:55');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1671', 'DE', 'inaktiv', '2010-09-27 00:30:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1672', 'DE', 'mehrfach gelistet', '2010-09-27 00:30:26');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1673', 'DE', 'Bewertung', '2010-09-27 00:30:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1674', 'DE', 'Min. Empfehlungen', '2010-09-27 00:29:32');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1674', 'DE', 'min. Empfehlungen', '2010-09-27 00:29:32');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1675', 'DE', 'Drag Zoom', '2010-09-27 00:29:22');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1676', 'DE', 'Gebiet auf der Karte mit der Maus markieren (hier klicken um abzubrechen)', '2010-09-27 00:29:15');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1677', 'DE', 'Drag Zoom Back', '2010-09-27 00:28:26');
|
||||
@ -5688,7 +5721,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1682', 'DE', 'Kartendaten \© 2009 <a href=\"http://www.openstreetmap.org/\">OpenStreetMap</a> Contributors', '2010-09-27 00:27:38');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1683', 'DE', 'Fehler: Das Suchergebnis konnte nicht heruntergeladen werden (HTTP Fehler Code %1)', '2010-09-27 00:27:22');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1684', 'DE', 'Fehler: Das Suchergebnis konnte nicht heruntergeladen werden. Die Daten waren auf dem Server nicht verfügbar.', '2010-09-27 00:26:21');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1685', 'DE', 'Es sind %1 Geocaches gefunden. Bitte vergrößere die Ansicht, um die Geocaches anzuzeigen.', '2010-09-27 00:36:44');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1685', 'DE', 'Es sind %1 Geocaches auf dem Kartenausschnitt. Bitte vergrößere die Ansicht, um die Geocaches anzuzeigen.', '2010-09-27 00:36:44');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1686', 'DE', 'Die Sucheinstellungen haben sich geändert. Klicke bitte auf OK um die Ansicht zu aktualisieren.', '2010-09-27 00:24:24');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1687', 'DE', 'Neuer Logeintrag', '2010-10-03 20:29:22');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1688', 'DE', 'Logeintrag bearbeiten', '2010-10-03 20:28:40');
|
||||
@ -5829,9 +5862,38 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1837', 'DE', 'Entfernung von <a href=\"myprofile.php\">Heimatkoordinaten im Benutzerprofil</a>', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1838', 'DE', 'Benutzername oder Email-Adresse', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1839', 'DE', 'Es muss eine zu überschreibende Suche gewählt werden.', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1840', 'DE', 'Link für diese Kartenansicht', '2013-02-24 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1841', 'DE', 'Dein Internet Explorer ist zu alt, um die Karte darzustellen. Bitte installiere mindestens Version 7, besser Version 8.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1842', 'DE', 'zu den den Heimatkoordinaten springen', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1843', 'DE', 'zurück zur kleinen Kartenansicht', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1844', 'DE', '1-500 Caches müssen sichtbar sein, um den Download zu starten.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1846', 'DE', 'Wähle einen Wegpunkttyp aus!', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1847', 'DE', 'ungültige Koordinate', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1848', 'DE', 'Registriert seit', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1849', 'DE', 'Karte wird aktualisiert', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1850', 'DE', 'wurde (mit den gewählten Einstellungen) nicht gefunden', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1851', 'DE', 'Die Kartendarstellung mit dem Microsoft Internet Explorer ist relativ langsam und auf %1 Geocaches beschränkt.<br />Verwende einen anderen Browser, um die Karte voll nutzen zu können!', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1852', 'DE', 'Gefundene Caches, geordnet nach Entfernung:', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1853', 'DE', 'Gefundene Orte (Google):', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1855', 'DE', 'normal', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1857', 'DE', 'virtuell', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1858', 'DE', 'Webcam', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1859', 'DE', 'Event', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1860', 'DE', 'Rätsel', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1861', 'DE', 'Mathe/Physik', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1862', 'DE', 'beweglich', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1863', 'DE', 'Drive-in', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1865', 'DE', 'Karte wird geladen', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1866', 'DE', 'Anleitung', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1867', 'DE', 'Menüpunkt \'Karte\' zeigt', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1868', 'DE', 'kleine Karte', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1869', 'DE', 'Vollbildkarte', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1870', 'DE', 'Übersichtskarte anzeigen', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1871', 'DE', 'max. Caches auf der Karte<br />(%1-%2, 0=automatisch)', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1872', 'DE', 'Cachesymbole', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1873', 'DE', 'OC klassisch', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1874', 'DE', 'OKAPI-Stil', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1875', 'DE', 'Du musst eingeloggt sein, um die Einstellungen zu ändern.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1', 'EN', 'Reorder IDs \r', '2010-09-02 00:15:30');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2', 'EN', 'The database could not be reconnected.', '2010-08-28 11:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('3', 'EN', 'Testing – please do not login', '2010-08-28 11:48:07');
|
||||
@ -6672,7 +6734,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('859', 'EN', 'Manage users', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('860', 'EN', 'Sure?', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('861', 'EN', 'Disable (and lock all geocaches owned)', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'EN', 'Unknown', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'EN', 'unknown', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('863', 'EN', 'Last known login:', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('864', 'EN', 'Active geocaches:', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('865', 'EN', 'Total hidden:', '2010-08-28 11:48:08');
|
||||
@ -6736,7 +6798,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1144', 'EN', 'W', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1146', 'EN', 'Kilometer', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1164', 'EN', 'Some more items found...', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'EN', 'Search for city, cache or waypoint', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'EN', 'city, cachename or waypoint', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1166', 'EN', 'Show link to this map', '2010-08-29 23:43:04');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1206', 'EN', 'km', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1208', 'EN', 'h', '2010-08-28 11:48:08');
|
||||
@ -6783,7 +6845,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1334', 'EN', 'General', '2010-09-11 00:05:01');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1335', 'EN', 'Time', '2010-09-11 00:04:26');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1336', 'EN', 'Seasonal', '2010-09-11 00:04:16');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1337', 'EN', 'System', '2010-09-11 00:03:50');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1337', 'EN', 'Listing', '2010-09-11 00:03:50');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1338', 'EN', 'Tools needed', '2010-09-11 00:03:40');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1339', 'EN', 'Preparation needed', '2010-09-11 00:03:27');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1340', 'EN', 'Persons', '2010-09-11 00:03:19');
|
||||
@ -6807,7 +6869,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1358', 'EN', 'You found this cache', '2010-09-10 23:59:21');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1359', 'EN', 'You havn\'t found this cache, yet', '2010-09-10 23:59:03');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1360', 'EN', 'This cache stores a GeoKrety', '2010-09-10 23:58:48');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1361', 'EN', 'This cache has %1 recommandations', '2010-09-10 23:58:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1361', 'EN', 'This cache has %1 recommandation(s)', '2010-09-10 23:58:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1362', 'EN', 'Edit log entry for the cache <a href=\"viewcache.php?cacheid={cacheid}\">{cachename}</a>', '2010-09-10 23:58:12');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1363', 'EN', 'Type of log-enrty', '2010-09-10 23:57:46');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1364', 'EN', 'JavaScript is disabled in your browser, you can enter text only. To use HTML, or the editor, please enable JavaScript.', '2010-09-10 23:57:54');
|
||||
@ -6827,7 +6889,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1378', 'EN', 'Please note the <a href=\"articles.php?page=cacheinfo#logpw\" target=\"_blank\">description</a>', '2010-09-10 23:53:16');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1379', 'EN', 'Less', '2010-09-10 23:52:53');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1380', 'EN', 'Search for caches', '2010-09-10 23:52:44');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1381', 'EN', 'JavaScrupt is not activated, you cannot use the following options (search to attributes) - basic search is supported nevertheless.', '2010-09-10 23:52:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1381', 'EN', 'JavaScript is not activated, you cannot use the following options (search to attributes) - basic search is supported nevertheless.', '2010-09-10 23:52:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1382', 'EN', 'Sort results by:', '2010-09-10 23:52:28');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1383', 'EN', 'Last logs', '2010-09-10 23:52:16');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1384', 'EN', 'Show caches recommended by other users first', '2010-09-10 23:51:58');
|
||||
@ -7095,7 +7157,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1665', 'EN', 'Sec.', '2010-09-27 00:23:21');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1666', 'EN', 'Only show Geocaches with the following properties:', '2010-09-27 00:23:15');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1667', 'EN', 'Cachetype', '2010-09-27 00:23:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1668', 'EN', 'Cache container', '2010-09-27 00:23:01');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1668', 'EN', 'Container', '2010-09-27 00:23:01');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1669', 'EN', 'Hide', '2010-09-27 00:22:55');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1670', 'EN', 'My owns', '2010-09-27 00:22:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1671', 'EN', 'Not active', '2010-09-27 00:22:44');
|
||||
@ -7198,7 +7260,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1776', 'EN', 'Waypoint type:', '2012-08-24 17:35:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1777', 'EN', 'Please select type', '2012-08-24 17:35:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1778', 'EN', 'Coordinate:', '2012-08-24 17:35:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1779', 'EN', 'Download GPX file (max. 500)', '2012-08-24 17:35:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1779', 'EN', 'Download GPX file (max. 500 caches)', '2012-08-24 17:35:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1780', 'EN', 'Add waypoint', '2012-08-24 17:35:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1781', 'EN', 'Add new', '2012-08-24 17:35:49');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1782', 'EN', 'Delete waypoint', '2012-08-24 17:35:49');
|
||||
@ -7254,9 +7316,38 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1837', 'EN', 'Distance from <a href=\"myprofile.php\">user-profile home coordinates</a>', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1838', 'EN', 'Username or email address', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1839', 'EN', 'You must select a search to overwrite.', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1840', 'EN', 'Link to this map view', '2013-02-24 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1841', 'EN', 'Your Internet Explorer is too old to display the map. Please upgrade at least to version 7, better 8.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1842', 'EN', 'Go to home coordinates', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1843', 'EN', 'Switch to small map', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1844', 'EN', 'Between 1 and 500 caches must be displayed for download.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1846', 'EN', 'Please select waypoint type ', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1847', 'EN', 'invalid coordinate ', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1848', 'EN', 'Registered since', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1849', 'EN', 'Map is being updated', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1850', 'EN', 'was not found (with the selected settings)', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1851', 'EN', 'Map display with Microsoft Internet Explorer is slow and restricted to %1 geocaches. Use another browser for better performance.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1852', 'EN', 'Geocaches found, nearest first:', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1853', 'EN', 'Found Places via Google:', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1855', 'EN', 'Traditional', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1857', 'EN', 'Virtual', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1858', 'EN', 'Webcam', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1859', 'EN', 'Event', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1860', 'EN', 'Quiz', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1861', 'EN', 'Math/Physics', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1862', 'EN', 'Moving', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1863', 'EN', 'Drive-In', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1865', 'EN', 'Loading map', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1866', 'EN', 'Instructions', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1867', 'EN', 'Menu option \'Map\' shows', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1868', 'EN', 'small map', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1869', 'EN', 'fullscreen map', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1870', 'EN', 'Show overview map', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1871', 'EN', 'Maximum caches on map<br />(%1-%2, 0=automatic)', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1872', 'EN', 'Cache icons', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1873', 'EN', 'classic OC', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1874', 'EN', 'OKAPI style', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1875', 'EN', 'You must be logged in to change map settings.', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1', 'ES', 'Reordenar ID', '2010-12-09 00:17:55');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2', 'ES', 'La base de datos no se pudo conectar.', '2010-12-09 00:17:55');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('3', 'ES', 'En pruebas - por favor, no entre.', '2010-12-09 00:17:55');
|
||||
@ -8097,7 +8188,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('859', 'ES', 'Administrar usuario', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('860', 'ES', '¿Seguro?', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('861', 'ES', 'Deshabilitar (y bloquear todos los geocaches del propietario)', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'ES', 'Desconocida', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'ES', 'desconocida', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('863', 'ES', 'Último inicio de sesión conocido:', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('864', 'ES', 'Geocaches activos:', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('865', 'ES', 'Total escondidos:', '2010-12-09 00:17:59');
|
||||
@ -8161,7 +8252,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1144', 'ES', 'W', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1146', 'ES', 'Kilómetros', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1164', 'ES', 'Otros elementos que se encuentrados ...', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'ES', 'Buscar por ciudad, cache o waypoint', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'ES', 'ciudad, cache o waypoint', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1166', 'ES', 'Mostrar enlace en el mapa', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1206', 'ES', 'km', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1208', 'ES', 'h', '2010-12-09 00:17:59');
|
||||
@ -8208,7 +8299,6 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1334', 'ES', 'Común', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1335', 'ES', 'Tiempo', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1336', 'ES', 'Estacionales', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1337', 'ES', 'Sistema', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1338', 'ES', 'Requiere de herramientas', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1339', 'ES', 'Necesita preparación', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1340', 'ES', 'Personas', '2010-12-09 00:17:59');
|
||||
@ -8670,6 +8760,14 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1828', 'ES', 'Confirma el email', '2013-02-21 00:32:43');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1829', 'ES', 'Marca el email no válido', '2013-02-21 00:32:43');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1830', 'ES', 'el email de los datos licencia no se entregó', '2013-02-21 00:32:43');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1855', 'ES', 'tradicional', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1857', 'ES', 'virtual', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1858', 'ES', 'Webcam', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1859', 'ES', 'Event', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1860', 'ES', 'Quiz', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1861', 'ES', 'Mat./Física', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1862', 'ES', 'movimiento', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1863', 'ES', 'Drive-In', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('6', 'FR', 'Pseudo', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('7', 'FR', 'Quite', '2010-10-04 00:17:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('24', 'FR', 'Prénom', '2010-10-04 00:17:39');
|
||||
@ -8756,6 +8854,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('740', 'FR', 'C O P I E', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('922', 'FR', 'FR', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1654', 'FR', 'Statut', '2010-09-13 00:16:38');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1803', 'FR', 'nano', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1', 'IT', 'Riordina gli ID', '2010-10-27 18:49:18');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2', 'IT', 'Impossibile riconnettersi al database', '2010-08-28 20:28:01');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('3', 'IT', 'Test - per favore non connettersi', '2010-08-28 20:36:53');
|
||||
@ -9596,7 +9695,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('859', 'IT', 'Gestione utente', '2010-09-10 23:15:35');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('860', 'IT', 'Sicuro?', '2010-09-10 23:15:35');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('861', 'IT', 'Disabilita (e chiudi tutte le cache possedute)', '2010-09-10 23:15:35');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'IT', 'Sconosciuto', '2010-09-10 23:15:35');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'IT', 'sconosciuto', '2010-09-10 23:15:35');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('863', 'IT', 'Ultima autenticazione nota:', '2010-09-10 23:15:35');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('864', 'IT', 'Geocache attive:', '2010-09-10 23:15:35');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('865', 'IT', 'Totale nascoste:', '2010-09-10 23:15:35');
|
||||
@ -9660,7 +9759,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1144', 'IT', 'O', '2010-10-27 18:49:19');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1146', 'IT', 'Chilometri', '2010-09-10 23:15:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1164', 'IT', 'Altri oggetti trovati...', '2010-09-10 23:15:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'IT', 'Ricerca per città, cache o waypoint', '2010-09-10 23:15:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1165', 'IT', 'città, cache o waypoint', '2010-09-10 23:15:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1166', 'IT', 'Visualizza link a questa mappa', '2010-09-10 23:15:36');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1206', 'IT', 'km', '2010-09-10 23:15:37');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1208', 'IT', 'h', '2010-09-10 23:15:37');
|
||||
@ -9707,7 +9806,6 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1334', 'IT', 'Comune', '2010-09-13 22:10:04');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1335', 'IT', 'Tempo', '2010-09-11 00:04:26');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1336', 'IT', 'Stagionale', '2010-09-11 00:04:16');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1337', 'IT', 'Sistema', '2010-09-11 00:03:50');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1338', 'IT', 'Necessari attrezzi', '2010-09-11 00:03:40');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1339', 'IT', 'Necessaria preparazione', '2010-09-11 00:03:27');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1340', 'IT', 'Persone', '2010-09-11 00:03:19');
|
||||
@ -10010,7 +10108,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1656', 'IT', 'Paesi', '2010-09-13 22:10:04');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1657', 'IT', 'a', '2010-10-27 18:49:19');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1658', 'IT', 'Percorso', '2010-10-27 18:49:19');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1659', 'IT', 'Dimensioni cache:', '2010-10-27 18:49:19');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1659', 'IT', 'Dimensioni cache', '2010-10-27 18:49:19');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1660', 'IT', 'Link', '2010-10-27 18:49:19');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1661', 'IT', 'Aperto', '2010-10-27 18:49:19');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1662', 'IT', 'Aggiungi ai favoriti...', '2010-10-27 18:49:19');
|
||||
@ -10170,6 +10268,14 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1828', 'IT', 'Conferma questo indirizzo email', '2013-02-20 01:27:31');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1829', 'IT', 'Segna l\\\'indirizzo email come non valido', '2013-02-20 01:27:31');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1830', 'IT', 'mail di licenza dati non consegnata', '2013-02-20 01:27:31');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1855', 'IT', 'tradizionale', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1857', 'IT', 'virtuale', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1858', 'IT', 'Webcam', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1859', 'IT', 'Evento', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1860', 'IT', 'Quiz', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1861', 'IT', 'Mat./Fisica', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1862', 'IT', 'movimiento', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1863', 'IT', 'Drive-In', '2012-10-11 00:00:00');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('922', 'JA', 'JA', '2011-05-15 16:04:51');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1', 'NL', 'ID\'s opnieuw sorteren', '2011-02-04 19:49:56');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2', 'NL', 'De verbinding met de database kon niet hersteld worden.', '2011-02-04 19:49:56');
|
||||
@ -10947,7 +11053,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('856', 'NL', 'Montenegro', '2011-02-04 19:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('857', 'NL', 'Serbië', '2011-02-04 19:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('860', 'NL', 'Zeker?', '2011-02-04 19:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'NL', 'Onbekend', '2011-02-04 19:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('862', 'NL', 'onbekend', '2011-02-04 19:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('864', 'NL', 'Actieve caches:', '2011-02-04 19:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('871', 'NL', 'E-Mail:', '2011-02-04 19:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('872', 'NL', 'Waypoint download', '2011-02-04 19:50:07');
|
||||
@ -11077,7 +11183,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1656', 'NL', 'Landen (nodes)', '2011-02-04 19:50:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1657', 'NL', 'tot', '2011-02-04 19:50:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1658', 'NL', 'Route', '2011-02-04 19:50:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1659', 'NL', 'Cachegrootte:', '2011-02-04 19:50:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1659', 'NL', 'Cachegrootte', '2011-02-04 19:50:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1660', 'NL', 'Link', '2011-02-04 19:50:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1661', 'NL', 'Openen', '2011-02-04 19:50:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1662', 'NL', 'Aan favorieten toevoegen', '2011-02-04 19:50:08');
|
||||
@ -11149,7 +11255,6 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1741', 'NL', 'Het account is al geactiveerd. Probeer <a href=\"login.php\">inloggen</a>.<br /> Indien je niet in kunt loggen. lees dan de volgende pagina: <a href=\"{$opt.cms.login}\">problemen met inloggen</a>', '2011-04-04 21:34:57');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1742', 'NL', 'Jouw browser heeft onze cookie van opencaching.nl afgewezen.<br />\r', '2011-04-04 21:30:40');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1758', 'NL', 'Het account is al geactiveerd. Probeer <a href=\"login.php\">inloggen</a>.<br /> Indien je niet in kunt loggen. lees dan de volgende pagina: <a href=\"%1\">problemen met inloggen</a>', '2011-05-23 22:28:31');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1820', 'NL', 'Je kunt nu met je nieuwe wachtwoord <a href=\"login.php\">inloggen</a>.', '2013-02-14 00:50:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('922', 'NO', 'NO', '2011-05-15 11:46:21');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('3', 'PL', 'Test - proszę nie logować się', '2010-08-28 11:48:08');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('4', 'PL', 'Użytkownik', '2010-08-28 11:48:08');
|
||||
@ -11727,4 +11832,4 @@ TRUNCATE TABLE `watches_waitingtypes`;
|
||||
INSERT INTO `watches_waitingtypes` (`id`, `watchtype`) VALUES ('1', 'ownerlog');
|
||||
INSERT INTO `watches_waitingtypes` (`id`, `watchtype`) VALUES ('2', 'cache_watches');
|
||||
|
||||
INSERT INTO `sysconfig` (`name`, `value`) VALUES ('datasql_checksum', '8fa370118c644aa021394d6a1b63fd7c') ON DUPLICATE KEY UPDATE `value`='8fa370118c644aa021394d6a1b63fd7c';
|
||||
INSERT INTO `sysconfig` (`name`, `value`) VALUES ('datasql_checksum', 'cdb153869ff59782d0f93dfb629e780a') ON DUPLICATE KEY UPDATE `value`='cdb153869ff59782d0f93dfb629e780a';
|
||||
|
@ -5,10 +5,12 @@ CREATE TABLE `cache_type` (
|
||||
`name` varchar(80) NOT NULL,
|
||||
`trans_id` int(10) NOT NULL,
|
||||
`ordinal` tinyint(3) unsigned NOT NULL,
|
||||
`short` varchar(10) NOT NULL COMMENT 'obsolete',
|
||||
`de` varchar(60) NOT NULL COMMENT 'obsolete',
|
||||
`en` varchar(60) NOT NULL COMMENT 'obsolete',
|
||||
`icon_large` varchar(60) NOT NULL COMMENT 'obsolete',
|
||||
`short` varchar(10) NOT NULL,
|
||||
`de` varchar(60) NOT NULL,
|
||||
`en` varchar(60) NOT NULL,
|
||||
`icon_large` varchar(60) NOT NULL,
|
||||
`short2` varchar(15) NOT NULL,
|
||||
`short2_trans_id` int(10) NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `name` (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='static content' ;
|
||||
|
@ -9,5 +9,6 @@ CREATE TABLE `profile_options` (
|
||||
`check_regex` varchar(255) default NULL,
|
||||
`option_order` int(11) NOT NULL default '100',
|
||||
`option_input` varchar(20) NOT NULL default 'text',
|
||||
`optionset`, tinyint(2) NOT NULL default '1',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='static content' ;
|
||||
|
@ -70,6 +70,11 @@
|
||||
'spring' => 'resource2/ocstyle/css/seasons/style_spring.css',
|
||||
'summer' => 'resource2/ocstyle/css/seasons/style_summer.css',
|
||||
'autumn' => 'resource2/ocstyle/css/seasons/style_autumn.css');
|
||||
$seasons_stripe
|
||||
= array('winter' => 'resource2/ocstyle/css/seasons/style_langstripe_winter.css',
|
||||
'spring' => 'resource2/ocstyle/css/seasons/style_langstripe_spring.css',
|
||||
'summer' => 'resource2/ocstyle/css/seasons/style_langstripe_summer.css',
|
||||
'autumn' => 'resource2/ocstyle/css/seasons/style_langstripe_autumn.css');
|
||||
$smarty_dummy = 0;
|
||||
?>
|
||||
var nWindowWidth = 9999;
|
||||
@ -79,6 +84,7 @@
|
||||
nWindowWidth = screen.availWidth;
|
||||
if (nWindowWidth > 970)
|
||||
document.writeln('<link rel="stylesheet" type="text/css" media="screen,projection" href="<?php echo smarty_function_season($seasons, $smarty_dummy); ?>">');
|
||||
document.writeln('<link rel="stylesheet" type="text/css" media="screen,projection" href="<?php echo smarty_function_season($seasons_stripe, $smarty_dummy); ?>">');
|
||||
|
||||
function usercountry_change()
|
||||
{
|
||||
|
@ -271,7 +271,7 @@ function switchAttributeCat2()
|
||||
<form name="optionsform" style="display:inline;">
|
||||
|
||||
<div id="scriptwarning" style="margin:0 5px 0 5px;">
|
||||
<p><span class="errormsg">{t}JavaScrupt is not activated, you cannot use the following options (sorting to attributes) - basic search is supported nevertheless.{/t}</span></p>
|
||||
<p><span class="errormsg">{t}JavaScript is not activated, you cannot use the following options (sorting to attributes) - basic search is supported nevertheless.{/t}</span></p>
|
||||
</div>
|
||||
|
||||
<div class="searchdiv">
|
||||
|
@ -316,4 +316,19 @@ function fix_magic_quotes_gpc()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// prelminary wiki help embedding; needs translation table
|
||||
//
|
||||
// pay attention to use only ' quotes in $text (escape other ')
|
||||
function helppagelink($pagename)
|
||||
{
|
||||
global $opt;
|
||||
|
||||
if (isset($opt['locale'][$opt['template']['locale']]['helpwiki']))
|
||||
return "<a class='nooutline' href='" . $opt['locale'][$opt['template']['locale']]['helpwiki'] .
|
||||
str_replace(' ','_',$pagename) . "' target='_blank'>";
|
||||
else
|
||||
return $text;
|
||||
}
|
||||
|
||||
?>
|
@ -43,6 +43,7 @@ class attribute
|
||||
{
|
||||
$attr = array();
|
||||
$bFirst = true;
|
||||
$bSearchGroupDefault = false;
|
||||
|
||||
if ($cacheId == 0)
|
||||
{
|
||||
@ -51,20 +52,22 @@ class attribute
|
||||
$sAddWhereSql = ' AND `cache_attrib`.`selectable`=1';
|
||||
|
||||
$rsAttr = sql("SELECT `cache_attrib`.`id`, IFNULL(`tt1`.`text`, `cache_attrib`.`name`) AS `name`,
|
||||
IFNULL(`tt2`.`text`, `cache_attrib`.`html_desc`) AS `html_desc`, `cache_attrib`.`icon`
|
||||
IFNULL(`tt2`.`text`, `cache_attrib`.`html_desc`) AS `html_desc`,
|
||||
`cache_attrib`.`icon`, `cache_attrib`.`search_default`
|
||||
FROM `cache_attrib`
|
||||
LEFT JOIN `sys_trans` AS `t1` ON `cache_attrib`.`trans_id`=`t1`.`id` AND `cache_attrib`.`name`=`t1`.`text`
|
||||
LEFT JOIN `sys_trans_text` AS `tt1` ON `t1`.`id`=`tt1`.`trans_id` AND `tt1`.`lang`='&1'
|
||||
LEFT JOIN `sys_trans` AS `t2` ON `cache_attrib`.`html_desc_trans_id`=`t2`.`id`
|
||||
LEFT JOIN `sys_trans_text` AS `tt2` ON `t2`.`id`=`tt2`.`trans_id` AND `tt2`.`lang`='&1'
|
||||
WHERE `cache_attrib`.`group_id`='&2'
|
||||
WHERE `cache_attrib`.`group_id`='&2'" . $sAddWhereSql . "
|
||||
AND NOT IFNULL(`cache_attrib`.`hidden`, 0)=1
|
||||
ORDER BY `cache_attrib`.`group_id` ASC", $opt['template']['locale'], $rAttrGroup['id']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$rsAttr = sql("SELECT `cache_attrib`.`id`, IFNULL(`tt1`.`text`, `cache_attrib`.`name`) AS `name`,
|
||||
IFNULL(`tt2`.`text`, `cache_attrib`.`html_desc`) AS `html_desc`, `cache_attrib`.`icon`
|
||||
IFNULL(`tt2`.`text`, `cache_attrib`.`html_desc`) AS `html_desc`,
|
||||
`cache_attrib`.`icon`, `cache_attrib`.`search_default`
|
||||
FROM `caches_attributes`
|
||||
INNER JOIN `cache_attrib` ON `caches_attributes`.`attrib_id`=`cache_attrib`.`id`
|
||||
LEFT JOIN `sys_trans` AS `t1` ON `cache_attrib`.`trans_id`=`t1`.`id` AND `cache_attrib`.`name`=`t1`.`text`
|
||||
@ -80,13 +83,17 @@ class attribute
|
||||
if ($firstLetterUppercase)
|
||||
$rAttr['name'] = mb_strtoupper(mb_substr($rAttr['name'],0,1)) . mb_substr($rAttr['name'],1);
|
||||
$attr[] = $rAttr;
|
||||
if ($rAttr['search_default'])
|
||||
$bSearchGroupDefault = true;
|
||||
}
|
||||
sql_free_result($rsAttr);
|
||||
|
||||
if (count($attr) > 0)
|
||||
$attributes[] = array('name' => $rAttrGroup['name'],
|
||||
$attributes[] = array('id' => $rAttrGroup['id'],
|
||||
'name' => $rAttrGroup['name'],
|
||||
'color' => $rAttrGroup['color'],
|
||||
'category' => $rAttrGroup['category'],
|
||||
'search_default' => $bSearchGroupDefault,
|
||||
'attr' => $attr);
|
||||
}
|
||||
sql_free_result($rsAttrGroup);
|
||||
|
@ -17,13 +17,13 @@ class useroptions
|
||||
var $nUserId = 0;
|
||||
var $nOptions;
|
||||
|
||||
function __construct($nUserId=ID_NEW)
|
||||
function __construct($nUserId=ID_NEW, $optionset=1)
|
||||
{
|
||||
$this->nUserId = $nUserId+0;
|
||||
|
||||
if ($nUserId == ID_NEW)
|
||||
{
|
||||
$rs = sqll('SELECT `id`, `name`, `default_value`, `check_regex`, `option_order`, 0 AS `option_visible`, `internal_use`, `default_value` AS `option_value`
|
||||
$rs = sqll('SELECT `id`, `name`, `default_value`, `check_regex`, `option_order`, 0 AS `option_visible`, `internal_use`, `default_value` AS `option_value`, `optionset`
|
||||
FROM `profile_options`');
|
||||
}
|
||||
else
|
||||
@ -31,12 +31,13 @@ class useroptions
|
||||
$rs = sqll("SELECT `p`.`id`, `p`.`name`, `p`.`default_value`, `p`.`check_regex`, `p`.`option_order`, IFNULL(`u`.`option_visible`, 0) AS `option_visible`, `p`.`internal_use`, IFNULL(`u`.`option_value`, `p`.`default_value`) AS `option_value`
|
||||
FROM `profile_options` AS `p`
|
||||
LEFT JOIN `user_options` AS `u` ON `p`.`id`=`u`.`option_id` AND (`u`.`user_id` IS NULL OR `u`.`user_id`='&1')
|
||||
WHERE `optionset`='&2'
|
||||
UNION
|
||||
SELECT `u`.`option_id` AS `id`, `p`.`name`, `p`.`default_value`, `p`.`check_regex`, `p`.`option_order`, `u`.`option_visible`, `p`.`internal_use`, IFNULL(`u`.`option_value`, `p`.`default_value`) AS `option_value`
|
||||
FROM `user_options` AS `u`
|
||||
LEFT JOIN `profile_options` AS `p` ON `p`.`id`=`u`.`option_id`
|
||||
WHERE `u`.`user_id`='&1'",
|
||||
$this->nUserId);
|
||||
$this->nUserId, $optionset);
|
||||
}
|
||||
|
||||
while($record = sql_fetch_array($rs))
|
||||
@ -51,6 +52,10 @@ class useroptions
|
||||
{
|
||||
return $this->nUserId;
|
||||
}
|
||||
function getOptSet()
|
||||
{
|
||||
return $this->nOptions[$pId]['optionset'];
|
||||
}
|
||||
function getOptName($pId)
|
||||
{
|
||||
return $this->nOptions[$pId]['name'];
|
||||
|
176
htdocs/map2.php
@ -1,18 +1,35 @@
|
||||
<?php
|
||||
/***************************************************************************
|
||||
* For license information see doc/license.txt
|
||||
* You can find the license in the docs directory
|
||||
*
|
||||
* Unicode Reminder メモ
|
||||
***************************************************************************/
|
||||
|
||||
require('./lib2/web.inc.php');
|
||||
require_once('./lib2/logic/cache.class.php');
|
||||
require_once('./lib2/logic/user.class.php');
|
||||
require_once('./lib2/logic/attribute.class.php');
|
||||
|
||||
/* because the map does access some private info like
|
||||
* ignored caches, we need to verify the login data
|
||||
*/
|
||||
$login->verify();
|
||||
|
||||
if ($login->userid > 0)
|
||||
{
|
||||
$user_maxrecords = $maxrecords =
|
||||
sql_value("SELECT option_value FROM user_options WHERE user_id='&1' AND option_id=8",
|
||||
$opt['map']['maxrecords'] + 0, $login->userid);
|
||||
if ($maxrecords == 0)
|
||||
$maxrecords = $opt['map']['maxrecords'] + 0;
|
||||
else
|
||||
$maxrecords = min(max($maxrecords, $opt['map']['min_maxrecords']), $opt['map']['max_maxrecords']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$maxrecords = $opt['map']['maxrecords'] + 0;
|
||||
$user_maxrecords = 0;
|
||||
}
|
||||
|
||||
$sMode = isset($_REQUEST['mode']) ? $_REQUEST['mode'] : '';
|
||||
if ($sMode == 'locate')
|
||||
@ -40,23 +57,66 @@
|
||||
else if ($sMode == 'searchresult')
|
||||
{
|
||||
$nResultId = isset($_REQUEST['resultid']) ? $_REQUEST['resultid']+0 : 0;
|
||||
$compact = isset($_REQUEST['compact']) && $_REQUEST['compact'];
|
||||
$nLon1 = isset($_REQUEST['lon1']) ? $_REQUEST['lon1']+0 : 0;
|
||||
$nLon2 = isset($_REQUEST['lon2']) ? $_REQUEST['lon2']+0 : 0;
|
||||
$nLat1 = isset($_REQUEST['lat1']) ? $_REQUEST['lat1']+0 : 0;
|
||||
$nLat2 = isset($_REQUEST['lat2']) ? $_REQUEST['lat2']+0 : 0;
|
||||
$cachenames = isset($_REQUEST['cachenames']) ? $_REQUEST['cachenames']+0 : 0;
|
||||
|
||||
if (isset($_REQUEST['smallmap']) && $_REQUEST['smallmap'] &&
|
||||
$user_maxrecords == 0 && $maxrecords > 1000)
|
||||
$maxrecords = floor($maxrecords*0.65);
|
||||
|
||||
output_searchresult($nResultId, $nLon1, $nLat1, $nLon2, $nLat2);
|
||||
output_searchresult($nResultId, $compact, $nLon1, $nLon2, $nLat1, $nLat2, $cachenames);
|
||||
}
|
||||
else if ($sMode == 'fullscreen')
|
||||
else if ($sMode == 'fullscreen' ||
|
||||
($sMode == '' &&
|
||||
sql_value("SELECT option_value FROM user_options
|
||||
INNER JOIN user ON user_options.user_id=user.user_id
|
||||
WHERE option_id=6 AND user.user_id='&1'", true, $login->userid)))
|
||||
{
|
||||
$tpl->popup = true;
|
||||
$fullscreen = true;
|
||||
$tpl->popup = true; // disables page header and -framefrapage
|
||||
$tpl->popupmargin = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
$fullscreen = false;
|
||||
}
|
||||
|
||||
// save options
|
||||
if (isset($_REQUEST['submit']) && $_REQUEST['submit'] && $login->userid > 0)
|
||||
{
|
||||
sql("INSERT INTO `user_options` (`user_id`, `option_id`, `option_visible`, `option_value`)
|
||||
VALUES ('&1', '&2', '&3', '&4')
|
||||
ON DUPLICATE KEY UPDATE `option_value`='&4'",
|
||||
$login->userid, 6, 0, min(max($_REQUEST['opt_menumap']+0, 0), 1) );
|
||||
sql("INSERT INTO `user_options` (`user_id`, `option_id`, `option_visible`, `option_value`)
|
||||
VALUES ('&1', '&2', '&3', '&4')
|
||||
ON DUPLICATE KEY UPDATE `option_value`='&4'",
|
||||
$login->userid, 7, 0, isset($_REQUEST['opt_overview']) ? min(max($_REQUEST['opt_overview']+0, 0), 1) : 0);
|
||||
sql("INSERT INTO `user_options` (`user_id`, `option_id`, `option_visible`, `option_value`)
|
||||
VALUES ('&1', '&2', '&3', '&4')
|
||||
ON DUPLICATE KEY UPDATE `option_value`='&4'",
|
||||
$login->userid, 8, 0, $_REQUEST['opt_maxcaches'] == 0 ? 0 : min(max($_REQUEST['opt_maxcaches']+0, $opt['map']['min_maxrecords']), $opt['map']['max_maxrecords']) );
|
||||
sql("INSERT INTO `user_options` (`user_id`, `option_id`, `option_visible`, `option_value`)
|
||||
VALUES ('&1', '&2', '&3', '&4')
|
||||
ON DUPLICATE KEY UPDATE `option_value`='&4'",
|
||||
$login->userid, 9, 0, min(max($_REQUEST['opt_cacheicons']+0, 1), 2) );
|
||||
}
|
||||
|
||||
$tpl->name = 'map2';
|
||||
$tpl->menuitem = MNU_MAP;
|
||||
$tpl->nowpsearch = true;
|
||||
|
||||
// check for browser compatibility
|
||||
if (preg_match('/MSIE [1-9]+.[0-9]+/',$_SERVER['HTTP_USER_AGENT']))
|
||||
$tpl->assign('msie',true);
|
||||
if (preg_match('/MSIE [1-6].[0-9]+/',$_SERVER['HTTP_USER_AGENT']))
|
||||
$tpl->assign('old_msie',true);
|
||||
$tpl->assign('maxrecords',$maxrecords);
|
||||
|
||||
// get the correct mapkey
|
||||
$sHost = strtolower($_SERVER['HTTP_HOST']);
|
||||
if (isset($opt['lib']['google']['mapkey'][$sHost]))
|
||||
@ -64,13 +124,11 @@
|
||||
else
|
||||
$tpl->error($translate->t('There is no google maps key registered for this domain.', '', '', 0));
|
||||
|
||||
$tpl->add_header_javascript('http://maps.google.com/maps?file=api&v=2.x&key=' . urlencode($sGMKey));
|
||||
$tpl->add_header_javascript('resource2/misc/map/dragzoom_packed.js');
|
||||
$tpl->add_header_javascript('resource2/misc/map/LatLonDisplayControl.js');
|
||||
$tpl->add_header_javascript('resource2/misc/map/CacheMarker.js');
|
||||
//$tpl->add_header_javascript('resource2/misc/map/MessageControl.js');
|
||||
$tpl->add_header_javascript('http://maps.googleapis.com/maps/api/js?sensor=false&key=' . urlencode($sGMKey));
|
||||
// https is supported by google, but may make problems in some environments,
|
||||
// e.g. does not work with MSIE 7 on WinXP
|
||||
$tpl->add_body_load('mapLoad()');
|
||||
$tpl->add_body_unload('GUnload()');
|
||||
$tpl->add_body_unload('mapUnload()');
|
||||
|
||||
// process start params
|
||||
$bGMInitCookiePos = true;
|
||||
@ -117,39 +175,79 @@
|
||||
{
|
||||
$nGMInitLon = $cache->getLongitude();
|
||||
$nGMInitLat = $cache->getLatitude();
|
||||
$nGMInitZoom = 13;
|
||||
$nGMInitZoom = -1;
|
||||
$bGMInitCookiePos = false;
|
||||
}
|
||||
else
|
||||
$sGMInitWaypoint = '';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$nUserLon = 0;
|
||||
$nUserLat = 0;
|
||||
if ($login->userid != 0 )
|
||||
{
|
||||
$user = new user($login->userid);
|
||||
$nUserLat = $user->getLatitude();
|
||||
$nUserLon = $user->getLongitude();
|
||||
$tpl->assign('username',$user->getUsername());
|
||||
}
|
||||
else
|
||||
$tpl->assign('username',"");
|
||||
$tpl->assign('nUserLon', $nUserLon);
|
||||
$tpl->assign('nUserLat', $nUserLat);
|
||||
|
||||
$tpl->assign('nGMInitLon', $nGMInitLon);
|
||||
$tpl->assign('nGMInitLat', $nGMInitLat);
|
||||
$tpl->assign('nGMInitZoom', $nGMInitZoom);
|
||||
$tpl->assign('bGMInitCookiePos', ($bGMInitCookiePos ? 1 : 0));
|
||||
$tpl->assign('sGMInitWaypoint', $sGMInitWaypoint);
|
||||
$tpl->assign('bFullscreen', ($sMode == 'fullscreen' ? 1 : 0));
|
||||
$tpl->assign('bDisableFullscreen', $opt['map']['disablefullscreen']);
|
||||
$tpl->assign('bFullscreen', $fullscreen ? 1 : 0);
|
||||
|
||||
$rsCacheType = sql("SELECT `cache_type`.`id`, IFNULL(`sys_trans_text`.`text`, `cache_type`.`name`) AS `text` FROM `cache_type` LEFT JOIN `sys_trans` ON `cache_type`.`trans_id`=`sys_trans`.`id` LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND `sys_trans_text`.`lang`='&1' ORDER BY `cache_type`.`ordinal` ASC", $opt['template']['locale']);
|
||||
$rsCacheType = sql("SELECT `cache_type`.`id`, IFNULL(`sys_trans_text`.`text`, `cache_type`.`short2`) AS `text` FROM `cache_type` LEFT JOIN `sys_trans_text` ON `cache_type`.`short2_trans_id`=`sys_trans_text`.`trans_id` AND `sys_trans_text`.`lang`='&1' ORDER BY `cache_type`.`ordinal` ASC", $opt['template']['locale']);
|
||||
$tpl->assign_rs('aCacheType', $rsCacheType);
|
||||
sql_free_result($rsCacheType);
|
||||
|
||||
$rsCacheSize = sql("SELECT `cache_size`.`id`, IFNULL(`sys_trans_text`.`text`, `cache_size`.`name`) AS `text` FROM `cache_size` LEFT JOIN `sys_trans` ON `cache_size`.`trans_id`=`sys_trans`.`id` LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND `sys_trans_text`.`lang`='&1' ORDER BY `cache_size`.`ordinal` ASC", $opt['template']['locale']);
|
||||
$rsCacheSize = sql("SELECT `cache_size`.`id`, IFNULL(`sys_trans_text`.`text`, `cache_size`.`name`) AS `text` FROM `cache_size` LEFT JOIN `sys_trans_text` ON `cache_size`.`trans_id`=`sys_trans_text`.`trans_id` AND `sys_trans_text`.`lang`='&1' ORDER BY `cache_size`.`ordinal` ASC", $opt['template']['locale']);
|
||||
$tpl->assign_rs('aCacheSize', $rsCacheSize);
|
||||
sql_free_result($rsCacheSize);
|
||||
|
||||
/* assign attributes */
|
||||
$tpl->assign('aAttributes', attribute::getAttrbutesListArray());
|
||||
$tpl->assign('aAttributes', attribute::getSelectableAttrbutesListArray());
|
||||
|
||||
$aAttributesDisabled = array();
|
||||
$maxaid = 0;
|
||||
$rs = sql("SELECT `id` FROM `cache_attrib`");
|
||||
while ($r = sql_fetch_assoc($rs))
|
||||
{
|
||||
$aAttributesDisabled[] = $r['id'];
|
||||
if ($r['id'] > $maxaid) $maxaid = $r['id'];
|
||||
}
|
||||
sql_free_result($rs);
|
||||
$tpl->assign('aAttributesDisabled', $aAttributesDisabled);
|
||||
$tpl->assign('maxAttributeId', $maxaid);
|
||||
|
||||
// options
|
||||
$rs = sql("SELECT `profile_options`.`id`,
|
||||
IF(`option_value` IS NULL, `default_value`, `option_value`) AS `value`
|
||||
FROM `profile_options`
|
||||
LEFT JOIN `user_options` ON `profile_options`.`id`=`user_options`.`option_id` AND `user_id`='&1'
|
||||
WHERE `optionset`=2",
|
||||
$login->userid);
|
||||
while ($r = sql_fetch_assoc($rs))
|
||||
switch ($r['id'])
|
||||
{
|
||||
case 6: $tpl->assign('opt_menumap', $r['value']); break;
|
||||
case 7: $tpl->assign('opt_overview', $r['value']); break;
|
||||
case 8: $tpl->assign('opt_maxcaches', $r['value']); break;
|
||||
case 9: $tpl->assign('opt_cacheicons', $r['value']); break;
|
||||
}
|
||||
sql_free_result($rs);
|
||||
$tpl->assign('min_maxrecords', $opt['map']['min_maxrecords']);
|
||||
$tpl->assign('max_maxrecords', $opt['map']['max_maxrecords']);
|
||||
|
||||
$tpl->assign('help_oconly', helppagelink("OConly"));
|
||||
$tpl->assign('help_map', helppagelink("Cachekarte"));
|
||||
|
||||
$tpl->display();
|
||||
|
||||
@ -190,16 +288,16 @@ function output_cachexml($sWaypoint)
|
||||
|
||||
$rsCache = sql_slave("SELECT `caches`.`name`, `caches`.`wp_oc`, `caches`.`cache_id`, `caches`.`type`,
|
||||
`caches`.`longitude`, `caches`.`latitude`,
|
||||
IF(`caches`.`status`=2, 1, 0) AS `tna`,
|
||||
IF(`caches`.`status` IN (2,3,6), 1, 0) AS `tna`,
|
||||
IFNULL(`trans_status_text`.`text`, `cache_status`.`name`) AS `statustext`,
|
||||
IFNULL(`trans_type_text`.`text`, `cache_type`.`name`) AS `type_text`, `cache_type`.`id` AS `type_id`,
|
||||
IFNULL(`trans_size_text`.`text`, `cache_size`.`name`) AS `size`,
|
||||
`caches`.`difficulty`, `caches`.`terrain`,
|
||||
`caches`.`date_created`,
|
||||
`caches`.`date_created`, `caches`.`is_publishdate`,
|
||||
IFNULL(`stat_caches`.`toprating`, 0) AS `toprating`,
|
||||
IF(`caches`.`user_id`='&1', 1, 0) AS `owner`,
|
||||
`user`.`username`, `user`.`user_id`,
|
||||
IF(`caches_attributes`.`attrib_id` IS NULL, 0, 1) AS `oconly`
|
||||
IF(`caches_attributes`.`attrib_id` IS NULL, 0, 1) AS `oconly`
|
||||
FROM `caches`
|
||||
INNER JOIN `cache_type` ON `caches`.`type`=`cache_type`.`id`
|
||||
INNER JOIN `cache_status` ON `caches`.`status`=`cache_status`.`id`
|
||||
@ -246,6 +344,7 @@ function output_cachexml($sWaypoint)
|
||||
echo 'difficulty="' . xmlentities($rCache['difficulty']/2) . '" ';
|
||||
echo 'terrain="' . xmlentities($rCache['terrain']/2) . '" ';
|
||||
echo 'listed_since="' . xmlentities(strftime($opt['locale'][$opt['template']['locale']]['format']['date'], strtotime($rCache['date_created']))) . '" ';
|
||||
echo 'is_publishdate="' . xmlentities($rCache['is_publishdate']) . '" ';
|
||||
echo 'toprating="' . xmlentities($rCache['toprating']) . '" ';
|
||||
echo 'geokreties="' . xmlentities($nGeokretyCount) . '" ';
|
||||
echo 'found="' . xmlentities(($nFoundCount>0) ? 1 : 0) . '" ';
|
||||
@ -271,7 +370,7 @@ function output_namesearch($sName, $nLat, $nLon, $nResultId)
|
||||
`caches`.`name`, `caches`.`wp_oc`
|
||||
FROM `map2_data`
|
||||
INNER JOIN `caches` ON `map2_data`.`cache_id`=`caches`.`cache_id`
|
||||
INNeR JOIN `cache_status` ON `caches`.`status`=`cache_status`.`id`
|
||||
INNER JOIN `cache_status` ON `caches`.`status`=`cache_status`.`id`
|
||||
WHERE `caches`.`name` LIKE '&1'
|
||||
AND (`cache_status`.`allow_user_view`=1 OR `caches`.`user_id`='&3')
|
||||
AND `map2_data`.`result_id`='&2'
|
||||
@ -288,9 +387,9 @@ function output_namesearch($sName, $nLat, $nLon, $nResultId)
|
||||
exit;
|
||||
}
|
||||
|
||||
function output_searchresult($nResultId, $nLon1, $nLat1, $nLon2, $nLat2)
|
||||
function output_searchresult($nResultId, $compact, $nLon1, $nLon2, $nLat1, $nLat2, $cachenames)
|
||||
{
|
||||
global $opt, $login;
|
||||
global $login, $opt, $maxrecords;
|
||||
|
||||
// check if data is available and connect the right slave server
|
||||
$nSlaveId = sql_value("SELECT `slave_id` FROM `map2_result` WHERE `result_id`='&1' AND DATE_ADD(`date_created`, INTERVAL '&2' SECOND)>NOW()", -2, $nResultId, $opt['map']['maxcacheage']);
|
||||
@ -309,8 +408,9 @@ function output_searchresult($nResultId, $nLon1, $nLat1, $nLon2, $nLat2)
|
||||
// TODO: SQL_CALC_FOUND_ROWS + $nRecordCount = sql_value_slave("SELECT FOUND_ROWS()", 0);
|
||||
|
||||
$bMaxRecordReached = false;
|
||||
if ($nRecordCount > $opt['map']['maxrecords'])
|
||||
if ($nRecordCount > $maxrecords)
|
||||
$bMaxRecordReached = true;
|
||||
$namequery = ($cachenames ? ", `caches`.`name` AS `cachename`" : "");
|
||||
|
||||
echo '<searchresult count="' . $nRecordCount . '" available="1" maxrecordreached="' . ($bMaxRecordReached ? '1' : '0') . '">' . "\n";
|
||||
|
||||
@ -322,19 +422,21 @@ function output_searchresult($nResultId, $nLon1, $nLat1, $nLon2, $nLat2)
|
||||
`caches`.`status`>1 AS `inactive`,
|
||||
`user`.`user_id`='&6' AS `owned`,
|
||||
IF(`cache_logs`.`id` IS NULL, 0, 1) AS `found`,
|
||||
IF(`caches_attributes`.`attrib_id` IS NULL, 0, 1) AS `oconly`
|
||||
IF(`caches_attributes`.`attrib_id` IS NULL, 0, 1) AS `oconly`" .
|
||||
$namequery . "
|
||||
FROM `map2_data`
|
||||
INNER JOIN `caches` ON `map2_data`.`cache_id`=`caches`.`cache_id`
|
||||
LEFT JOIN `user` ON `user`.`user_id`=`caches`.`user_id`
|
||||
LEFT JOIN `cache_logs` ON `cache_logs`.`cache_id`=`caches`.`cache_id` AND `cache_logs`.`user_id`='&6' AND `cache_logs`.`type` IN (1,7)
|
||||
LEFT JOIN `caches_attributes` ON `caches_attributes`.`cache_id`=`caches`.`cache_id` AND `caches_attributes`.`attrib_id`=6
|
||||
WHERE `map2_data`.`result_id`='&1' AND `caches`.`longitude`>'&2' AND `caches`.`longitude`<'&3' AND `caches`.`latitude`>'&4' AND `caches`.`latitude`<'&5'
|
||||
WHERE `map2_data`.`result_id`='&1' AND `caches`.`longitude`>'&2' AND `caches`.`longitude`<'&3' AND `caches`.`latitude`>'&4' AND `caches`.`latitude`<'&5'
|
||||
ORDER BY `caches`.`status` DESC, `oconly` AND NOT `found`, NOT `found`, `caches`.`type`<>4, MD5(`caches`.`name`)
|
||||
LIMIT " . ($opt['map']['maxrecords']+0),
|
||||
LIMIT &7",
|
||||
// sort in reverse order, because last are on top of map;
|
||||
// fixed order avoids oscillations when panning;
|
||||
// MD5 pseudo-randomness gives equal changes for all kinds of caches to be on top
|
||||
$nResultId, $nLon1, $nLon2, $nLat1, $nLat2, $login->userid);
|
||||
$nResultId, $nLon1, $nLon2, $nLat1, $nLat2, $login->userid, $maxrecords);
|
||||
|
||||
while ($r = sql_fetch_assoc($rs))
|
||||
{
|
||||
$flags = 0;
|
||||
@ -342,7 +444,21 @@ WHERE `map2_data`.`result_id`='&1' AND `caches`.`longitude`>'&2' AND `caches`.`l
|
||||
if ($r['found']) $flags |= 2;
|
||||
if ($r['inactive']) $flags |= 4;
|
||||
if ($r['oconly']) $flags |= 8;
|
||||
echo '<cache wp="' . xmlentities($r['wp_oc']) . '" lon="' . xmlentities($r['longitude']) . '" lat="' . xmlentities($r['latitude']) . '" type="' . xmlentities($r['type']) . '" flags="' . xmlentities($flags) . '" />' . "\n";
|
||||
|
||||
if ($compact)
|
||||
echo '<c d="' . xmlentities($r['wp_oc']) . '/' .
|
||||
xmlentities(round($r['longitude'],5)) . '/' .
|
||||
xmlentities(round($r['latitude'],5)) . '/' .
|
||||
xmlentities($r['type']) . '/' . xmlentities($flags) . '"' .
|
||||
(isset($r['cachename']) ? ' n="' . xmlentities($r['cachename']) . '"' : '') .
|
||||
' />';
|
||||
else
|
||||
echo '<cache wp="' . xmlentities($r['wp_oc']) . '"' .
|
||||
' lon="' . xmlentities(round($r['longitude'],5)) . '"' .
|
||||
' lat="' . xmlentities(round($r['latitude'],5)) . '"' .
|
||||
' type="' . xmlentities($r['type']) . '"' .
|
||||
(isset($r['cachename']) ? ' n="' . xmlentities($r['cachename']) . '"' : '') .
|
||||
' f="' . xmlentities($flags) . '" />' . "\n";
|
||||
}
|
||||
sql_free_result($rs);
|
||||
}
|
||||
@ -350,4 +466,4 @@ WHERE `map2_data`.`result_id`='&1' AND `caches`.`longitude`>'&2' AND `caches`.`l
|
||||
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
@ -42,8 +42,7 @@ function change()
|
||||
|
||||
if (isset($_REQUEST['save']))
|
||||
{
|
||||
$rs = sql('SELECT `id` FROM `profile_options` ORDER BY `id`');
|
||||
|
||||
$rs = sql('SELECT `id` FROM `profile_options` WHERE `optionset`=1 ORDER BY `id`');
|
||||
$bError = false;
|
||||
$error = ': ';
|
||||
$errorlen = ': ';
|
||||
@ -111,6 +110,7 @@ function assignFromDB($userid)
|
||||
LEFT JOIN `user_options` AS `u` ON `p`.`id`=`u`.`option_id` AND (`u`.`user_id` IS NULL OR `u`.`user_id`='&1')
|
||||
LEFT JOIN `sys_trans` AS `st` ON `p`.`trans_id`=`st`.`id` AND `p`.`name`=`st`.`text`
|
||||
LEFT JOIN `sys_trans_text` AS `tt` ON `st`.`id`=`tt`.`trans_id` AND `tt`.`lang`='&2'
|
||||
WHERE `optionset`=1
|
||||
ORDER BY `p`.`internal_use` DESC, `p`.`option_order`",
|
||||
$userid+0,
|
||||
$opt['template']['locale']);
|
||||
|
@ -1,4 +1,4 @@
|
||||
function CacheMarker(latlng, wp, type, flags)
|
||||
function CacheMarker(latlng, wp, type, flags, map)
|
||||
{
|
||||
this.latlng = latlng;
|
||||
this.wp_ = wp;
|
||||
@ -13,16 +13,19 @@ function CacheMarker(latlng, wp, type, flags)
|
||||
this.image_ = 'resource2/ocstyle/images/map/24x24-found' + state + '.png';
|
||||
else
|
||||
this.image_ = 'resource2/ocstyle/images/map/24x24-cachetype-' + type + state + '.png';
|
||||
|
||||
this.height_ = 24;
|
||||
this.width_ = 24;
|
||||
this.map_ = map;
|
||||
this.setMap( map );
|
||||
}
|
||||
|
||||
CacheMarker.prototype = new GOverlay();
|
||||
CacheMarker.prototype = new google.maps.OverlayView;
|
||||
|
||||
/* Creates the DIV representing this CacheMarker.
|
||||
* @param map {GMap2} Map that bar overlay is added to.
|
||||
*/
|
||||
CacheMarker.prototype.initialize = function(map) {
|
||||
CacheMarker.prototype.onAdd = function() {
|
||||
var me = this;
|
||||
|
||||
// Create the DIV representing our CacheMarker
|
||||
@ -38,43 +41,41 @@ CacheMarker.prototype.initialize = function(map) {
|
||||
img.style.width = me.width_ + "px";
|
||||
img.style.height = me.height_ + "px";
|
||||
div.appendChild(img);
|
||||
GEvent.addDomListener(div, "click", function()
|
||||
google.maps.event.addDomListener(div, "click", function()
|
||||
{
|
||||
GEvent.trigger(me, "click", me.wp_);
|
||||
google.maps.event.trigger(me, "click", me.wp_);
|
||||
});
|
||||
map.getPane(G_MAP_MARKER_PANE).appendChild(div);
|
||||
|
||||
this.map_ = map;
|
||||
//map.getPane(G_MAP_MARKER_PANE).appendChild(div);
|
||||
var pane = this.getPanes().overlayMouseTarget;
|
||||
pane.appendChild(div);
|
||||
|
||||
this.div_ = div;
|
||||
};
|
||||
|
||||
/* Remove the main DIV from the map pane
|
||||
*/
|
||||
CacheMarker.prototype.remove = function() {
|
||||
CacheMarker.prototype.onRemove = function() {
|
||||
this.div_.parentNode.removeChild(this.div_);
|
||||
this.div_ = null;
|
||||
};
|
||||
|
||||
/* Redraw the CacheMarker based on the current projection and zoom level
|
||||
* @param force {boolean} Helps decide whether to redraw overlay
|
||||
*/
|
||||
CacheMarker.prototype.redraw = function(force) {
|
||||
|
||||
// We only need to redraw if the coordinate system has changed
|
||||
if (!force) return;
|
||||
|
||||
CacheMarker.prototype.draw = function() {
|
||||
// Calculate the DIV coordinates of two opposite corners
|
||||
// of our bounds to get the size and position of our CacheMarker
|
||||
var divPixel = this.map_.fromLatLngToDivPixel(this.latlng);
|
||||
var divPixel = this.getProjection().fromLatLngToDivPixel(this.latlng);
|
||||
|
||||
// Now position our DIV based on the DIV coordinates of our bounds
|
||||
this.div_.style.width = this.width_ + "px";
|
||||
this.div_.style.left = (divPixel.x) + "px"
|
||||
this.div_.style.left = (divPixel.x-this.width_/2) + "px"
|
||||
this.div_.style.height = (this.height_) + "px";
|
||||
this.div_.style.top = (divPixel.y) - this.height_ + "px";
|
||||
this.div_.style.top = (divPixel.y+this.height_/2) - this.height_ + "px";
|
||||
};
|
||||
|
||||
CacheMarker.prototype.getZIndex = function(m) {
|
||||
return GOverlay.getZIndex(marker.getPoint().lat())-m.clicked*10000;
|
||||
return google.maps.Overlay.getZIndex(marker.getPoint().lat())-m.clicked*10000;
|
||||
}
|
||||
|
||||
CacheMarker.prototype.getPoint = function() {
|
||||
|
After Width: | Height: | Size: 245 B |
After Width: | Height: | Size: 229 B |
After Width: | Height: | Size: 229 B |
After Width: | Height: | Size: 238 B |
@ -25,10 +25,6 @@ div#bg2 {
|
||||
background-position: top right;
|
||||
}
|
||||
|
||||
div#langstripe {
|
||||
background: #e17f28 url(bg-langstripe-autumn.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
/* Hack for Internet 'Exploder' */
|
||||
html {
|
||||
overflow-x:hidden;
|
||||
|
@ -0,0 +1,10 @@
|
||||
div#langstripe {
|
||||
background: #e17f28 url(bg-langstripe-autumn.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
div#maplangstripe {
|
||||
background: #e17f28 url(bg-langstripe-autumn-map.png) 0 100% repeat-x;
|
||||
}
|
||||
.faintseasoncolor {
|
||||
background: #f9ede1;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
div#langstripe {
|
||||
background: #9fbc00 url(bg-langstripe-spring.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
div#maplangstripe {
|
||||
background: #9fbc00 url(bg-langstripe-spring-map.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
.faintseasoncolor {
|
||||
background: #f2f5dd;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
div#langstripe {
|
||||
background: #9db820 url(bg-langstripe-summer.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
div#maplangstripe {
|
||||
background: #9db820 url(bg-langstripe-summer-map.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
.faintseasoncolor {
|
||||
background: #f2f5dd;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
div#langstripe {
|
||||
background: #fff url(bg-langstripe-winter.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
div#maplangstripe {
|
||||
background: #fff url(bg-langstripe-winter-map.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
.faintseasoncolor {
|
||||
background: #e1eef9;
|
||||
}
|
@ -25,10 +25,6 @@ div#bg2 {
|
||||
background-position: top right;
|
||||
}
|
||||
|
||||
div#langstripe {
|
||||
background: #9fbc00 url(bg-langstripe-spring.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
/* Hack for Internet 'Exploder' */
|
||||
html {
|
||||
overflow-x:hidden;
|
||||
|
@ -25,10 +25,6 @@ div#bg2 {
|
||||
background-position: top right;
|
||||
}
|
||||
|
||||
div#langstripe {
|
||||
background: #9db820 url(bg-langstripe-summer.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
/* Hack for Internet 'Exploder' */
|
||||
html {
|
||||
overflow-x:hidden;
|
||||
|
@ -25,10 +25,6 @@ div#bg2 {
|
||||
background-position: top right;
|
||||
}
|
||||
|
||||
div#langstripe {
|
||||
background: #fff url(bg-langstripe-winter.png) 0 100% repeat-x;
|
||||
}
|
||||
|
||||
/* Hack for Internet 'Exploder' */
|
||||
html {
|
||||
overflow-x:hidden;
|
||||
|
@ -329,6 +329,9 @@ div.default {
|
||||
font-size:110%;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a.nooutline:focus { outline: 0; }
|
||||
|
||||
/*--------------------*/
|
||||
/* 6.2 - Sidebar Area */
|
||||
/*--------------------*/
|
||||
@ -350,7 +353,7 @@ div.default {
|
||||
/*-------------------*/
|
||||
/* 6.4 - Hyperlinks */
|
||||
/*-------------------*/
|
||||
.content1 a, .content2 a, .content3 a, .sidebar-txtbox-noshade a, .sidebar-txtbox-shade a {color: rgb(75,75,75); text-decoration: underline;}
|
||||
.content1 a, .content2 a, .content3 a, .sidebar-txtbox-noshade a, .sidebar-txtbox-shade a, .popup a {color: rgb(75,75,75); text-decoration: underline;}
|
||||
.content1 a:hover, .content2 a:hover, .content3 a:hover, .sidebar-txtbox-noshade a:hover, .sidebar-txtbox-shade a:hover {color: rgb(0,0,0); text-decoration: none;}
|
||||
.content1 a:visited, .content2 a:visited, .content3 a:visited, .sidebar-txtbox-noshade a:visited, .sidebar-txtbox-shade a:visited {color: rgb(130,75,150);}
|
||||
.footer a {color: rgb(255,255,255); text-decoration: underline;}
|
||||
@ -899,6 +902,7 @@ a.info:hover span{ /*the span will display just on :hover state*/
|
||||
line-height:3ex;
|
||||
text-indent:1ex;
|
||||
}
|
||||
|
||||
#breadcrumb_fullsize
|
||||
{
|
||||
position: absolute;
|
||||
@ -947,7 +951,11 @@ ul.nodot li {
|
||||
|
||||
/* internal links without symbol */
|
||||
|
||||
#ocmain a[href^="http://www.opencaching"], #ocmain a[href^="http://blog.opencaching"],#ocmain a[href^="http://opencaching"], #ocmain a[href^="http://leute.geocaching.de"], #ocmain a[href^="http://geocaching.de"], #ocmain a[href^="http://cms.opencaching"], #ocmain a[href^="http://cms.geocaching.de"], #ocmain a[href^="http://oc-devel"], #ocmain a[href^="http://www.dietz"]
|
||||
/* This setting is especially important for popup InfoWindows on google maps,
|
||||
as the right-padding is not correctly calculated into the GM InfoWindow
|
||||
content size. */
|
||||
|
||||
#googlemap a[href], #ocmain a[href^="http://www.opencaching"], #ocmain a[href^="http://blog.opencaching"], #ocmain a[href^="http://wiki.opencaching"], #ocmain a[href^="http://opencaching"], #ocmain a[href^="http://test.opencaching"], #ocmain a[href^="http://local.opencaching"], #ocmain a[href^="http://oc-devel"]
|
||||
{
|
||||
padding-right: 0;
|
||||
background-image: none;
|
||||
@ -1026,61 +1034,55 @@ div.attribgroup table {
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
/* Searchfield Cachemap */
|
||||
/* Cachemap */
|
||||
|
||||
.maploading {
|
||||
position: absolute;
|
||||
float:left;
|
||||
left: 120px;
|
||||
top: 80px;
|
||||
font-size: 1.6em;
|
||||
z-index:0;
|
||||
}
|
||||
|
||||
.mapversion {
|
||||
position: absolute;
|
||||
right:5px;
|
||||
bottom:5px;
|
||||
z-index:0;
|
||||
}
|
||||
|
||||
.maplogin {
|
||||
text-align:left;
|
||||
white-space:nowrap;
|
||||
line-height:1.3em;
|
||||
}
|
||||
|
||||
#ocmain div.mapform {
|
||||
/*width: 570px;*/
|
||||
height: 30px;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
margin-left: 100px;
|
||||
margin-right: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
#ocmain table.mapsearch {
|
||||
border-collapse: collapse;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
width: 100%;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
#ocmain table.mapsearch td {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-collapse: collapse;
|
||||
height:40px;
|
||||
}
|
||||
|
||||
td.mapsearch-a {
|
||||
width: 300px;
|
||||
height: 30px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align:left;
|
||||
border-top: solid 2px grey;
|
||||
border-left: solid 2px grey;
|
||||
border-bottom: solid 2px grey;
|
||||
-moz-border-radius-topleft: 6;
|
||||
-moz-border-radius-bottomleft: 6;
|
||||
td.mapheader_spacer {
|
||||
width:40%;
|
||||
}
|
||||
|
||||
td.mapsearch-b {
|
||||
height: 30px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-top: solid 2px grey;
|
||||
border-right: solid 2px grey;
|
||||
border-bottom: solid 2px grey;
|
||||
-moz-border-radius-topright: 6;
|
||||
-moz-border-radius-bottomright: 6;
|
||||
}
|
||||
|
||||
td.mapsearch-c {
|
||||
width: 185px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.mapfilter {
|
||||
#fullmap .mapfilter, #smallmap .mapfilter {
|
||||
border: solid 1px rgb(219,230,241);
|
||||
border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
@ -1088,38 +1090,44 @@ td.mapsearch-c {
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
#fullmap .pad10, #smallmap .pad10 { padding: 5px; }
|
||||
|
||||
.mapfiltertopic {
|
||||
margin: 0px 0px 10px 0px;
|
||||
padding: 3px 5px 2px 13px;
|
||||
padding: 3px 14px 2px 12px;
|
||||
background-color: rgb(156,186,214);
|
||||
color: rgb(255,255,255);
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
font-size: 120%;
|
||||
font-size: 110%;
|
||||
width: 100%;
|
||||
white-space:nowrap;
|
||||
}
|
||||
|
||||
.mapfiltertopic_add {
|
||||
text-transform: none;
|
||||
font-weight: normal;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.mft_withcheckbox {
|
||||
padding-left: 1px;
|
||||
}
|
||||
|
||||
|
||||
#ocmain input.searchfield {
|
||||
font:15px arial, sans-serif;
|
||||
background-position:bottom;
|
||||
color:#000;
|
||||
cursor:text;
|
||||
width: 285px;
|
||||
margin-left: 4px;
|
||||
vertical-align:top;
|
||||
border: none;
|
||||
font-size:13px;
|
||||
width: 340px;
|
||||
}
|
||||
|
||||
#ocmain input.searchfield_fullscreen {
|
||||
font-size:12px;
|
||||
width: 290px;
|
||||
}
|
||||
|
||||
#ocmain input.searchbutton {
|
||||
font:15px arial, sans-serif;
|
||||
background-position:bottom;
|
||||
background: #ccc;
|
||||
color:#000;
|
||||
cursor:pointer;
|
||||
height:30px;
|
||||
margin:0;
|
||||
vertical-align:top;
|
||||
border: none;
|
||||
font-size:13px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
#ocmain input.searchbutton:hover {
|
||||
@ -1133,23 +1141,28 @@ td.mapsearch-c {
|
||||
background-color:white;
|
||||
border:solid 1px darkblue;
|
||||
padding:10px;
|
||||
margin-left:375px;
|
||||
margin-top:10px;
|
||||
right:15px;
|
||||
opacity:0.9;
|
||||
}
|
||||
|
||||
#ocmain div.mapselectgeocode {
|
||||
position:absolute;
|
||||
position:relative;
|
||||
z-index:998;
|
||||
margin-left:147px;
|
||||
margin-top:5px;
|
||||
width:376px;
|
||||
margin-top:0px;
|
||||
width:390px;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
#ocmain select.mapselectlist {
|
||||
display:none;
|
||||
width:100%;
|
||||
font-size:medium;
|
||||
font-size:13px;
|
||||
}
|
||||
|
||||
#ocmain select.mapselectlist_fullscreen {
|
||||
display:none;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
#ocmain option.resultitem {
|
||||
@ -1178,6 +1191,94 @@ td.mapsearch-c {
|
||||
width: 380px;
|
||||
}
|
||||
|
||||
div.mappopup {
|
||||
overflow:hidden; /* avoids double-scrollbars in MSIE; 'visible' wont work */
|
||||
}
|
||||
|
||||
table.mappopup td {
|
||||
font-size: 11px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.mapboxshadow {
|
||||
box-shadow: 1px 2px 3px #555;
|
||||
-moz-box-shadow: 1px 2px 3px #555;
|
||||
-webkit-box-shadow: 1px 2px 3px #555;
|
||||
}
|
||||
|
||||
div.mapcoord_normalscreen {
|
||||
position: absolute;
|
||||
top: 176px;
|
||||
right: 25px;
|
||||
text-align: right;
|
||||
margin-top: 8px;
|
||||
color: grey;
|
||||
}
|
||||
|
||||
div.mapcoord_fullscreen {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
right: 0px;
|
||||
padding: 1px 4px 1px 4px;
|
||||
}
|
||||
|
||||
div.mapstat_fullscreen {
|
||||
position:relative;
|
||||
top:21px;
|
||||
padding-right:5px;
|
||||
background:none;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#fullmap div.toomanycaches {
|
||||
position:absolute;
|
||||
left: 140px;
|
||||
top: 80px;
|
||||
border: 1px solid rgb(0,0,60);
|
||||
opacity: 0.7;
|
||||
background: #0035FF;
|
||||
padding:5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
#smallmap div.toomanycaches {
|
||||
position:absolute;
|
||||
left: 60px;
|
||||
top: 30px;
|
||||
border: 1px solid rgb(0,0,60);
|
||||
opacity: 0.7;
|
||||
background: #0035FF;
|
||||
padding:5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
div.toomanycaches td {
|
||||
width: 250px;
|
||||
color: white;
|
||||
text-align:center;
|
||||
font-size:13px;
|
||||
line-height:1.3em;
|
||||
}
|
||||
|
||||
div.mapoptions {
|
||||
position:absolute;
|
||||
right:100px;
|
||||
top: 80px;
|
||||
border: 1px solid rgb(0,0,60);
|
||||
opacity: 0.9;
|
||||
background: #FFFFFF;
|
||||
padding:10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
div.mapoptions td {
|
||||
padding:6px;
|
||||
}
|
||||
|
||||
/* GM POI InfoWindows */
|
||||
div.gm-stars { display:none; }
|
||||
div.gm-rev:after { content:" (Google)"; line-height:1.3em; }
|
||||
.gm-iw, .gm-iw-table { font-size:11px; }
|
||||
|
||||
/* end of cache map */
|
||||
|
||||
div.logs {
|
||||
border: 1px solid #ccc;
|
||||
margin: 0 0 10px 0;
|
||||
@ -1246,3 +1347,8 @@ div#havefound {
|
||||
.garmintext {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
/* a / no href / onclick=javascript:... */
|
||||
.jslink {
|
||||
cursor:pointer;
|
||||
}
|
||||
|
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 979 B |
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 979 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-1.png
Normal file
After Width: | Height: | Size: 912 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-10.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-11.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-12.png
Normal file
After Width: | Height: | Size: 956 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-13.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-14.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-15.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-2.png
Normal file
After Width: | Height: | Size: 868 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-3.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-4.png
Normal file
After Width: | Height: | Size: 1009 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-5.png
Normal file
After Width: | Height: | Size: 980 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-6.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-7.png
Normal file
After Width: | Height: | Size: 930 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-8.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
htdocs/resource2/ocstyle/images/cacheicon/20x20-9.png
Normal file
After Width: | Height: | Size: 849 B |
BIN
htdocs/resource2/ocstyle/images/cacheicon/cache/16x16-9.gif
vendored
Normal file
After Width: | Height: | Size: 979 B |
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 979 B |
BIN
htdocs/resource2/ocstyle/images/head/overlay/oc_logo_alpha3.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 687 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 638 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1002 B |
BIN
htdocs/resource2/ocstyle/images/map/32x32-left.png
Normal file
After Width: | Height: | Size: 515 B |
BIN
htdocs/resource2/ocstyle/images/map/32x32-right.png
Normal file
After Width: | Height: | Size: 489 B |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.9 KiB |
BIN
htdocs/resource2/ocstyle/images/map/35x35-normalscreen.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 651 B After Width: | Height: | Size: 651 B |
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 747 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 758 B After Width: | Height: | Size: 758 B |
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 663 B |
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 777 B After Width: | Height: | Size: 777 B |
After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 795 B After Width: | Height: | Size: 795 B |
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 737 B After Width: | Height: | Size: 737 B |
After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 617 B After Width: | Height: | Size: 617 B |
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 686 B After Width: | Height: | Size: 686 B |
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |