From 588f1db26340904db5eca59cd6cd56087d7aebbc Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Tue, 1 Sep 2020 10:38:19 +0200 Subject: [PATCH] PurchaseScreen: Change the text * Call it a Monthly Subscription - as that is exactly what it is --- assets/langs/en.yaml | 2 +- lib/screens/purchase_screen.dart | 7 ++----- lib/widgets/purchase_widget.dart | 1 - 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/assets/langs/en.yaml b/assets/langs/en.yaml index 9f210e0c..d5d495c4 100644 --- a/assets/langs/en.yaml +++ b/assets/langs/en.yaml @@ -252,7 +252,7 @@ feature_timeline: purchase_screen: title: Pro Version - desc: 'GitJournal is completely open source and is the result of significant development work. It has no venture capital or corporation backing. Your support directly sustains development. + desc: 'GitJournal is completely free software/open source and is the result of significant development work. It has no venture capital or corporation backing and it never will. Your support directly sustains development and make GitJournal possible. GitJournal operates on a "pay what you want model (with a minimum)".' diff --git a/lib/screens/purchase_screen.dart b/lib/screens/purchase_screen.dart index 28384c0c..b1d1fdbe 100644 --- a/lib/screens/purchase_screen.dart +++ b/lib/screens/purchase_screen.dart @@ -111,9 +111,7 @@ class MonthlyRentalWidget extends StatelessWidget { child: Column( children: [ // TODO: Translate this - Text("One Time Purchase", style: textTheme.headline5), - const SizedBox(height: 8.0), - Text("Paid Monthly", style: textTheme.subtitle1), + Text("Monthly Subscription", style: textTheme.headline5), const SizedBox(height: 32.0), PurchaseWidget( skus: _generateSkus(), @@ -123,7 +121,7 @@ class MonthlyRentalWidget extends StatelessWidget { ), const SizedBox(height: 32.0), Text( - "After 12 months or after paying $minYearlyPurchase, you will get all the benefits of the standard 'One Time Purchase'"), + "Enables all Pro Features. After 12 months or after paying $minYearlyPurchase, you will get all the benefits of the 'One Time Purchase'"), ], mainAxisAlignment: MainAxisAlignment.start, ), @@ -155,7 +153,6 @@ class YearlyPurchaseWidget extends StatelessWidget { child: Column( children: [ Text("One Time Purchase", style: textTheme.headline5), - const Spacer(), const SizedBox(height: 32.0), PurchaseWidget( skus: _generateSkus(), diff --git a/lib/widgets/purchase_widget.dart b/lib/widgets/purchase_widget.dart index 3b2def7d..1aefd250 100644 --- a/lib/widgets/purchase_widget.dart +++ b/lib/widgets/purchase_widget.dart @@ -1,5 +1,4 @@ import 'dart:async'; -import 'dart:io'; import 'package:flutter/material.dart';