@@ -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- '\n iOSではファイルは、アプリ用のフォルダーに格納されています。 \n 内蔵の 「ファイル」アプリなどから閲覧/操作したり、他のアプリでのファイル選択時にこのアプリのフォルダーを閲覧することによって、利用可能です。' ,
394+ '\n iOSではファイルは、FileTrucker用のフォルダーに格納されています。 \n 「ファイル」アプリなどから閲覧/操作したり、他のアプリでのファイル選択時にこのアプリのフォルダーを閲覧することによって、利用可能です。' ,
395395 textAlign: TextAlign .start));
396396 }
397397 });
0 commit comments