PurchaseScreen: Change the text

* Call it a Monthly Subscription - as that is exactly what it is
This commit is contained in:
Vishesh Handa
2020-09-01 10:38:19 +02:00
parent 4c324a1194
commit 588f1db263
3 changed files with 3 additions and 7 deletions

View File

@ -252,7 +252,7 @@ feature_timeline:
purchase_screen: purchase_screen:
title: Pro Version 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)".' GitJournal operates on a "pay what you want model (with a minimum)".'

View File

@ -111,9 +111,7 @@ class MonthlyRentalWidget extends StatelessWidget {
child: Column( child: Column(
children: [ children: [
// TODO: Translate this // TODO: Translate this
Text("One Time Purchase", style: textTheme.headline5), Text("Monthly Subscription", style: textTheme.headline5),
const SizedBox(height: 8.0),
Text("Paid Monthly", style: textTheme.subtitle1),
const SizedBox(height: 32.0), const SizedBox(height: 32.0),
PurchaseWidget( PurchaseWidget(
skus: _generateSkus(), skus: _generateSkus(),
@ -123,7 +121,7 @@ class MonthlyRentalWidget extends StatelessWidget {
), ),
const SizedBox(height: 32.0), const SizedBox(height: 32.0),
Text( 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, mainAxisAlignment: MainAxisAlignment.start,
), ),
@ -155,7 +153,6 @@ class YearlyPurchaseWidget extends StatelessWidget {
child: Column( child: Column(
children: [ children: [
Text("One Time Purchase", style: textTheme.headline5), Text("One Time Purchase", style: textTheme.headline5),
const Spacer(),
const SizedBox(height: 32.0), const SizedBox(height: 32.0),
PurchaseWidget( PurchaseWidget(
skus: _generateSkus(), skus: _generateSkus(),

View File

@ -1,5 +1,4 @@
import 'dart:async'; import 'dart:async';
import 'dart:io';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';