mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 16:38:24 +02:00
Wordsmith the timezone selection UX
Summary: Ref T3025. - Show current zone to make the current vs new more clear. - Tweak some text. Test Plan: {F1656534} Reviewers: chad Reviewed By: chad Maniphest Tasks: T3025 Differential Revision: https://secure.phabricator.com/D15965
This commit is contained in:
parent
3d3fff4991
commit
efd001b42f
2 changed files with 11 additions and 3 deletions
|
@ -81,16 +81,24 @@ final class PhabricatorSettingsTimezoneController
|
||||||
$guess = 'ignore';
|
$guess = 'ignore';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$current_zone = $viewer->getTimezoneIdentifier();
|
||||||
|
$current_zone = phutil_tag('strong', array(), $current_zone);
|
||||||
|
|
||||||
$form = id(new AphrontFormView())
|
$form = id(new AphrontFormView())
|
||||||
|
->appendChild(
|
||||||
|
id(new AphrontFormMarkupControl())
|
||||||
|
->setLabel(pht('Current Setting'))
|
||||||
|
->setValue($current_zone))
|
||||||
->appendChild(
|
->appendChild(
|
||||||
id(new AphrontFormSelectControl())
|
id(new AphrontFormSelectControl())
|
||||||
->setName('timezone')
|
->setName('timezone')
|
||||||
->setLabel(pht('Timezone'))
|
->setLabel(pht('New Setting'))
|
||||||
->setOptions($options)
|
->setOptions($options)
|
||||||
->setValue($guess));
|
->setValue($guess));
|
||||||
|
|
||||||
return $this->newDialog()
|
return $this->newDialog()
|
||||||
->setTitle(pht('Adjust Timezone'))
|
->setTitle(pht('Adjust Timezone'))
|
||||||
|
->setWidth(AphrontDialogView::WIDTH_FORM)
|
||||||
->appendParagraph(
|
->appendParagraph(
|
||||||
pht(
|
pht(
|
||||||
'Your browser timezone (%s) differs from your profile timezone '.
|
'Your browser timezone (%s) differs from your profile timezone '.
|
||||||
|
@ -100,7 +108,7 @@ final class PhabricatorSettingsTimezoneController
|
||||||
$this->formatOffset($server_offset)))
|
$this->formatOffset($server_offset)))
|
||||||
->appendForm($form)
|
->appendForm($form)
|
||||||
->addCancelButton(pht('Cancel'))
|
->addCancelButton(pht('Cancel'))
|
||||||
->addSubmitButton(pht('Submit'));
|
->addSubmitButton(pht('Change Timezone'));
|
||||||
}
|
}
|
||||||
|
|
||||||
private function formatOffset($offset) {
|
private function formatOffset($offset) {
|
||||||
|
|
|
@ -241,7 +241,7 @@ final class PhabricatorStandardPageView extends PhabricatorBarePageView
|
||||||
'uri' => '/settings/timezone/',
|
'uri' => '/settings/timezone/',
|
||||||
'message' => pht(
|
'message' => pht(
|
||||||
'Your browser timezone setting differs from the timezone '.
|
'Your browser timezone setting differs from the timezone '.
|
||||||
'setting in your profile.'),
|
'setting in your profile, click to reconcile.'),
|
||||||
'ignoreKey' => $ignore_key,
|
'ignoreKey' => $ignore_key,
|
||||||
'ignore' => $ignore,
|
'ignore' => $ignore,
|
||||||
));
|
));
|
||||||
|
|
Loading…
Add table
Reference in a new issue