X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fnoticeform.php;h=62df5c94100c6b2db4b7d1a2a7386b5653f86e74;hb=a43598c31ecee2ca77d8c686382c29ee5a0d42b1;hp=d35655a0b25a63b5534cc68aeffc2f7cd860730e;hpb=053b8c600d7db73ec19e5f1d3e26c4c98fdf3d8c;p=quix0rs-gnu-social.git diff --git a/lib/noticeform.php b/lib/noticeform.php index d35655a0b2..62df5c9410 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -207,11 +207,14 @@ class NoticeForm extends Form $this->out->hidden('notice_data-location_id', empty($this->location_id) ? (empty($this->profile->location_id) ? null : $this->profile->location_id) : $this->location_id, 'location_id'); $this->out->hidden('notice_data-location_ns', empty($this->location_ns) ? (empty($this->profile->location_ns) ? null : $this->profile->location_ns) : $this->location_ns, 'location_ns'); - $this->out->elementStart('div', array('id' => 'notice_data-location_wrap', - 'class' => 'success', + $this->out->elementStart('div', array('id' => 'notice_data-geo_wrap', 'title' => common_local_url('geocode'))); - $this->out->checkbox('notice_data-location_enabled', _('Share your location'), true); + $this->out->checkbox('notice_data-geo', _('Share my location'), true); $this->out->elementEnd('div'); + $this->out->inlineScript(' var NoticeDataGeo_text = {'. + 'ShareDisable: "'._('Do not share my location').'",'. + 'ErrorTimeout: "'._('Sorry, retrieving your geo location is taking longer than expected, please try again later').'"'. + '}'); } Event::handle('EndShowNoticeFormData', array($this));