GitSetup: Improve wording

This commit is contained in:
Vishesh Handa
2019-02-14 11:07:09 +01:00
parent 06dc62e967
commit e9304bd2d1
2 changed files with 3 additions and 3 deletions

View File

@ -117,14 +117,14 @@ class GitHostSetupAutoConfigureState extends State<GitHostSetupAutoConfigure> {
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
'We need to perform the following steps:',
'We need permission to perform the following steps:',
style: Theme.of(context).textTheme.title,
),
SizedBox(height: 32.0),
// Step 1
Text(
"1. Create a new private repo called 'journal'",
"1. Create a new private repo called 'journal' or use the existing one",
style: Theme.of(context).textTheme.body2,
),
SizedBox(height: 8.0),

View File

@ -520,7 +520,7 @@ class GitHostAutoConfigureChoicePage extends StatelessWidget {
),
SizedBox(height: 16.0),
GitHostSetupButton(
text: "Setup everything automatically",
text: "Setup Automatically",
onPressed: () {
onDone(GitHostSetupType.Auto);
},