Skip to content

Commit 0a980fb

Browse files
committed
[page] 一部文言を変更
1 parent a10c16e commit 0a980fb

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

lib/widget/dialog.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class EasyDialog {
4242
} else if (e is SodiumException) {
4343
errorTitle = "Sodiumエラー";
4444
errorMessage =
45-
"libSodiumでの処理中にエラーが発生しました。\nこの端末では、整合性確認機能などが利用できない可能性があります\n";
45+
"libSodiumでの処理中にエラーが発生しました。\nこの端末では、整合性確認機能などは利用できない可能性があります\n";
4646
exceptionMessage = "詳細:\n$e";
4747
} else {
4848
errorTitle = "不明なエラー";

lib/widget/receive_page.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class _ReceivePageState extends State<ReceivePage>
2828
List<Widget> sucsessWidght = Platform.isAndroid
2929
? <Widget>[
3030
const Text(
31-
"Androidでは、選択が可能なフォルダーでもファイルを保存できない場合があります。\n特に指定が無い場合、「ダウンロード」フォルダーにFileTrucker用のフォルダーを作成し、そこにファイルを保存することがおすすめです。",
31+
"Androidでは、選択が可能なフォルダーでもファイルを保存できない場合があります。\n特に指定が無い場合、「ダウンロード」フォルダーにFileTrucker用のフォルダーを作成し、ファイルを保存することがおすすめです。",
3232
textAlign: TextAlign.center,
3333
)
3434
]
@@ -139,7 +139,7 @@ class _ReceivePageState extends State<ReceivePage>
139139
SwitchListTile(
140140
value: bypassAdressCheck,
141141
title: const Text('IPアドレスの確認を行わない'),
142-
subtitle: const Text("正しいIPアドレスを入力しても正しくない判定になる場合に利用"),
142+
subtitle: const Text("IPアドレスの判定に問題がある場合に利用"),
143143
onChanged: (bool value) => setState(() {
144144
bypassAdressCheck = value;
145145
}),
@@ -208,7 +208,7 @@ class _ReceivePageState extends State<ReceivePage>
208208

209209
return AlertDialog(
210210
scrollable: true,
211-
title: Text(receiveReady ? "ファイルを受信しています..." : "端末に接続しています..."),
211+
title: Text(receiveReady ? "受信しています..." : "デバイスに接続しています..."),
212212
actions: receiveReady
213213
? <Widget>[
214214
TextButton(
@@ -372,7 +372,7 @@ class _ReceivePageState extends State<ReceivePage>
372372
final res = await ReceiveFile.savePhotoLibrary(dirPath, fileInfo);
373373
if (!res) {
374374
EasyDialog.showPermissionAlert(
375-
"写真ライブラリに画像を保存するには、ライブラリへの権限が必要です。", Navigator.of(context));
375+
"写真ライブラリに画像を保存するには、ライブラリへのアクセス権限が必要です。", Navigator.of(context));
376376
}
377377
} catch (e) {
378378
EasyDialog.showErrorDialog(e, Navigator.of(context));
@@ -391,7 +391,7 @@ class _ReceivePageState extends State<ReceivePage>
391391
fontSize: 25, color: Colors.red, fontWeight: FontWeight.bold)));
392392
if (Platform.isIOS) {
393393
sucsessWidght.add(const Text(
394-
'\niOSではファイルは、アプリ用のフォルダーに格納されています。\n内蔵の「ファイル」アプリなどから閲覧/操作したり、他のアプリでのファイル選択時にこのアプリのフォルダーを閲覧することによって、利用可能です。',
394+
'\niOSではファイルは、FileTrucker用のフォルダーに格納されています。\n「ファイル」アプリなどから閲覧/操作したり、他のアプリでのファイル選択時にこのアプリのフォルダーを閲覧することによって、利用可能です。',
395395
textAlign: TextAlign.start));
396396
}
397397
});

lib/widget/receive_qr.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ class _ScanQRCodePageState extends State<ScanQRCodePage> {
5454
setState(() {
5555
ScaffoldMessenger.of(context).showSnackBar(
5656
const SnackBar(
57-
content:
58-
Text("対応していない形式のQRコードです。\nバージョンを確認するか、正しいQRコードを読み取ってください。"),
57+
content: Text(
58+
"対応していない形式のQRコードです。\n両方の端末のバージョンが合っているか確認するか、正しいQRコードを読み取ってください。"),
5959
duration: Duration(seconds: 6),
6060
),
6161
);

lib/widget/send_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class _SendPageState extends State<SendPage>
247247
builder: (context) => EasyDialog.showSmallInfo(
248248
Navigator.of(context),
249249
"エラー",
250-
"WiFiやイーサーネットなどの、ローカルネットワークに接続してください。"));
250+
"WiFiやイーサーネットなどに接続してください。"));
251251
return;
252252
}
253253

0 commit comments

Comments
 (0)