審査用に文言などを修正 ver.4.5.1 467

This commit is contained in:
2024-05-15 17:59:25 +09:00
parent dd9343bef7
commit df4405aedf
28 changed files with 843 additions and 227 deletions

View File

@ -43,8 +43,8 @@ class RegisterPage extends StatelessWidget {
Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
const Text(
"サインアップ",
Text(
"sign_up".tr,
style: TextStyle(
fontSize: 30,
fontWeight: FontWeight.bold,
@ -54,7 +54,7 @@ class RegisterPage extends StatelessWidget {
height: 20,
),
Text(
"アカウントを作成し、無料です",
"create_account".tr,
style: TextStyle(
fontSize: 15,
color: Colors.grey[700],
@ -69,13 +69,13 @@ class RegisterPage extends StatelessWidget {
padding: const EdgeInsets.symmetric(horizontal: 40),
child: Column(
children: [
makeInput(label: "Eメール", controller: emailController),
makeInput(label: "email".tr, controller: emailController),
makeInput(
label: "パスワード",
label: "password".tr,
controller: passwordController,
obsureText: true),
makeInput(
label: "パスワードを認証する",
label: "confirm_password".tr,
controller: confirmPasswordController,
obsureText: true)
],
@ -150,13 +150,13 @@ class RegisterPage extends StatelessWidget {
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Flexible(child: Text("すでにアカウントをお持ちですか?")),
Flexible(child: Text("already_have_account".tr)),
TextButton(
onPressed: () {
Get.toNamed(AppPages.LOGIN);
},
child: const Text(
"ログイン",
child: Text(
"login".tr,
style: TextStyle(
fontWeight: FontWeight.w600, fontSize: 18),
),