mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-30 02:48:51 +08:00
PurchaseScreen: Change the text
* Call it a Monthly Subscription - as that is exactly what it is
This commit is contained in:
@ -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)".'
|
||||
|
@ -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(),
|
||||
|
@ -1,5 +1,4 @@
|
||||
import 'dart:async';
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
|
Reference in New Issue
Block a user