-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
strings.xml
1058 lines (1055 loc) · 65.3 KB
/
strings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<resources>
<string name="app_name">Easy Diary</string>
<string name="common_create_seconds">Creation Seconds</string>
<string name="create_diary_title">Write Diary</string>
<string name="write_date">Date</string>
<string name="request_title_message">Please enter a title.</string>
<string name="request_content_message">Please enter your content.</string>
<string name="guide_message">Type or speak the title.</string>
<string name="contents_text_hint">Type or speak the contents.</string>
<string name="delete_photo_confirm_message">Are you sure you want to delete this photo?</string>
<string name="gallery_intent_not_found_message">The Gallery app is not installed or is disabled.</string>
<string name="create_diary_showcase_button_1">Next</string>
<string name="create_diary_showcase_button_2">Close</string>
<string name="create_diary_showcase_title_1">Weather</string>
<string name="create_diary_showcase_title_2">Title</string>
<string name="create_diary_showcase_title_3">Contents</string>
<string name="create_diary_showcase_title_4">Attach photo</string>
<string name="create_diary_showcase_title_5">Scale up font</string>
<string name="create_diary_showcase_title_6">Scale down font</string>
<string name="create_diary_showcase_title_7">Pick date</string>
<string name="create_diary_showcase_title_8">Pick time</string>
<string name="create_diary_showcase_title_9">Save</string>
<string name="create_diary_showcase_message_1">Select the weather for the diary creation time. Weather selection is not mandatory.</string>
<string name="create_diary_showcase_message_2">Type the title of the diary. Entering a subject is not mandatory.</string>
<string name="create_diary_showcase_message_3">Enter diaries, notes, summary notes, and more.</string>
<string name="create_diary_showcase_message_4">Attach a photo to the diary.</string>
<string name="create_diary_showcase_message_5">Enlarge the text used in the diary.</string>
<string name="create_diary_showcase_message_6">Reduce the font used in the diary.</string>
<string name="create_diary_showcase_message_7">Select the diary creation date. If you want to create a diary for the past date, you can change the date.</string>
<string name="create_diary_showcase_message_8">Select diary creation time. You can change the time if you want to create a diary for the last time.</string>
<string name="create_diary_showcase_message_9">Save the completed diary.</string>
<string name="read_diary_title">Search</string>
<string name="input_mode_a">Speech mode</string>
<string name="input_mode_c">Keypad mode</string>
<string name="guide_message_2">Type or speak the subject.</string>
<string name="recognizer_intent_not_found_message">The speech recognition module is not installed or is disabled.</string>
<string name="sample_diary_title_1">Be dangerous rather than careful.</string>
<string name="sample_diary_title_2">I repeat what I know when I speak.</string>
<string name="sample_diary_title_3">The more bad news we hear, the more we should be happy.</string>
<string name="sample_diary_title_4">Abundance calls comfort, constraint calls creativity.</string>
<string name="sample_diary_1">When you look back at your past life, you will surely know that you have been damaging your life because you are too careful not to be in danger.\nDanger of danger.\nDanger rather than being careful.\n- Grant money, In the law of</string>
<string name="sample_diary_2">When you talk, you are only repeating what you already know.\nBut if you listen, you may learn something new.\n-The Dalai Lama</string>
<string name="sample_diary_3">It is the bad news that you need to hear most as a leader. \nThe good news is good tomorrow, but the bad news will be worse tomorrow. \nThis is because even if the facts are heartbreaking, That\'s why it\'s safe to say. \n- Eric Schmidt, President of Google, \"How does Google work?\"</string>
<string name="sample_diary_4">Constraints are not a barrier to creativity, but creativity is used to overcome constraints. \nAll great works or creative solutions are those that have a lot of time constraints, physical constraints, and resource constraints. Creativity is born in a constrained environment. \n- Representative Kim Bong-Jin</string>
<string name="read_diary_showcase_button_1">Next</string>
<string name="read_diary_showcase_button_2">Close</string>
<string name="read_diary_showcase_title_1">Write diary</string>
<string name="read_diary_showcase_title_2">Search</string>
<string name="read_diary_showcase_title_3">Speech recognition</string>
<string name="read_diary_showcase_title_4">Calendar</string>
<string name="read_diary_showcase_title_5">Timeline</string>
<string name="read_diary_showcase_title_6">Chart</string>
<string name="read_diary_showcase_title_7">Advanced setting</string>
<string name="read_diary_showcase_title_8">View diary</string>
<string name="read_diary_showcase_message_1">You can create various diaries such as diary, memo, summary note, etc. according to the flow of time.</string>
<string name="read_diary_showcase_message_2">You can search for diaries using keywords. When a keyword is entered, the matching diary is searched and the keyword is highlighted.</string>
<string name="read_diary_showcase_message_3">You can use the speech recognition feature to enter search keywords without a keypad.</string>
<string name="read_diary_showcase_message_4">The created diary can be collected by date using the calendar.</string>
<string name="read_diary_showcase_message_5">The created diary is provided as a timeline.</string>
<string name="read_diary_showcase_message_6">You can view charts of diary entries for the entire period.</string>
<string name="read_diary_showcase_message_7">You can use advanced settings to change fonts, set lock number, backup and restore diary.</string>
<string name="read_diary_showcase_message_8">Click the diary card in the list to view the diary.</string>
<string name="diary_photo_migration_message">The image attachment method of the EasyDiary is changed so that the existing link information is compressed and stored in the EasyDiary folder.\nPlease wait for the operation to finish.</string>
<string name="read_diary_detail_title">Read Diary</string>
<string name="delete_confirm">Are you sure you want to delete?</string>
<string name="read_diary_detail_showcase_button_1">Next</string>
<string name="read_diary_detail_showcase_button_2">Close</string>
<string name="read_diary_detail_showcase_title_0">Diary View</string>
<string name="read_diary_detail_showcase_title_1">Move page</string>
<string name="read_diary_detail_showcase_title_2">Edit diary</string>
<string name="read_diary_detail_showcase_title_3">TTS</string>
<string name="read_diary_detail_showcase_title_4">Postcard</string>
<string name="read_diary_detail_showcase_title_5">Delete diary</string>
<string name="read_diary_detail_showcase_message_0">Browse the saved diary. You can modify a saved diary or create a diary card by specifying a custom color.</string>
<string name="read_diary_detail_showcase_message_1">Drag the screen left or right to view diaries created before or after.</string>
<string name="read_diary_detail_showcase_message_2">You can go to the diary editing screen to edit the diary being viewed.</string>
<string name="read_diary_detail_showcase_message_3">You can listen to the diary text by voice using the Google TTS feature.</string>
<string name="read_diary_detail_showcase_message_4">Use the diary to create post cards and share them with others.</string>
<string name="read_diary_detail_showcase_message_5">You can delete the current diary and go to the search screen.</string>
<string name="update_diary_title">Edit Diary</string>
<string name="back_pressed_confirm">Click the \'OK\' button to go to the previous screen without saving the current diary.</string>
<string name="rate_app">Rate App</string>
<string name="guide_message_3">Insufficient permission for the request feature.</string>
<string name="restore_diary">Recover diary</string>
<string name="restore_diary_summary">Recover all content except attachments using data backed up to Google Drive.</string>
<string name="restore_photo">Recover diary photos(Manual)</string>
<string name="restore_photo_summary">Users directly recover photos attached to the diary.</string>
<string name="backup_diary">Backup diary</string>
<string name="backup_diary_summary">Back up all content except attachments to Google Drive.</string>
<string name="font_setting">Font setting</string>
<string name="add_ttf_fonts_title">Add TTF font</string>
<string name="add_ttf_fonts_summary">Add your own TTF fonts to the Easy Diary.\nIf the fonts are added, you can use the added fonts with the built-in fonts.\nWhen you select a TTF file using the file explorer, the font is automatically registered in Easy Diary and activated in the font setting menu.</string>
<string name="add_ttf_fonts_info_url">https://raw.githubusercontent.com/hanjoongcho/aaf-easydiary/master/MANUAL.md</string>
<string name="diary_search_keyword_case_sensitive_title">Case sensitive</string>
<string name="diary_search_keyword_case_sensitive_summary">When the option is activated, it checks whether the diary matches case.</string>
<string name="setting_primary_color_title">Theme</string>
<string name="setting_primary_color_summary">Set the primary color of the application.</string>
<string name="pick_text_color_guide_message">The current version only supports theme color changes.\nText color changes will be available in the future.</string>
<string name="pick_background_color_guide_message">The current version only supports theme color changes.\nBackground color changes will be available in the future.</string>
<string name="easy_photo_map_title">Easy PhotoMap</string>
<string name="easy_photo_map_summary">Easy Photo Map is a photomap application that displays the location of the photo on the map using the location information included in the photo.</string>
<string name="easy_password_title">Easy Password</string>
<string name="easy_password_summary">Easy Password is an application that helps you manage passwords used for login, document security, door lock, lock, credit card, account management, etc. by using one pattern lock set by the user.</string>
<string name="font_line_spacing">Font line spacing</string>
<string name="font_line_spacing_summary">Change the line spacing of the font to the set ratio.</string>
<string name="calendar_title">Calendar</string>
<string name="guide_message_4">There is no diary created on that day.</string>
<string name="bar_chart_title">Chart</string>
<string name="bar_chart_status">Time Diary Creation Status</string>
<string name="range_a">1h~3h</string>
<string name="range_b">4h~6h</string>
<string name="range_c">7h~9h</string>
<string name="range_d">10h~12h</string>
<string name="range_e">13h~15h</string>
<string name="range_f">16h~18h</string>
<string name="range_g">19h~21h</string>
<string name="range_h">22h~24h</string>
<string name="write_time">write time</string>
<string name="write_count">write count</string>
<string name="unlock_guide_message">Please enter your lock number</string>
<string name="photo_view_error_info">No photos found.\nAttached photos from Gallery may have been deleted or moved.</string>
<string name="diary_card_export_info">Diary card saved path</string>
<string name="diary_card_share_info">Share diary card</string>
<string name="diary_card_export_error_message">An error occurred while generating the diary card. Please try again.</string>
<string name="post_card_showcase_button_1">Next</string>
<string name="post_card_showcase_button_2">Close</string>
<string name="post_card_showcase_title_0">Diary Post Card</string>
<string name="post_card_showcase_title_1">Text color</string>
<string name="post_card_showcase_title_2">Background color</string>
<string name="post_card_showcase_title_3">Create postcard</string>
<string name="post_card_showcase_title_4">Share postcard</string>
<string name="post_card_showcase_title_5">Exit Editing</string>
<string name="post_card_showcase_message_0">You can use the saved diary to create and save custom postcards.</string>
<string name="post_card_showcase_message_1">Change the postcard text color. You can select the desired color using the color picker.</string>
<string name="post_card_showcase_message_2">Change the postcard background color. You can select the desired color using the color picker.</string>
<string name="post_card_showcase_message_3">Postcard created can be saved as image files.</string>
<string name="post_card_showcase_message_4">Postcard created can be shared with friends. Share your postcard with email, mms, messenger, and more.</string>
<string name="post_card_showcase_message_5">Exit the postcard editing screen and return to the previous screen.</string>
<string name="timeline_title">Timeline</string>
<string name="postcard_viewer_title">Diary Postcard</string>
<string name="postcard_viewer_no_cards_saved">No saved diary post card.</string>
<string name="google_drive_connect_message">Google Drive in sync…</string>
<string name="diary_count"></string>
<string name="menu_calendar">Calendar</string>
<string name="menu_chart">Statistics</string>
<string name="menu_timeline">Timeline</string>
<string name="post_card">Diary Postcard</string>
<string name="menu_delete">Delete</string>
<!-- ////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- Resources added since version 1.4.41 here. -->
<!-- ////////////////////////////////////////////////////////////////////////////////////////////// -->
<string name="preferences_category_settings">Basic Settings</string>
<string name="preferences_category_information">Application Information</string>
<string name="preferences_information_licenses">Open Source Licenses</string>
<string name="preferences_information_licenses_summary">Open source software notices</string>
<string name="preferences_category_aaf">AAF Easy Series</string>
<string name="invite_friends">Invite friends</string>
<string name="invite_friends_summary">Share the %s application with your friends.</string>
<!-- ////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- Release notes here. -->
<!-- ////////////////////////////////////////////////////////////////////////////////////////////// -->
<string name="release_103">
v1.4.41 / 2018.05.28\n
Fixed a bug that abnormally terminated in Postcard browse mode when there is no working directory
</string>
<string name="release_105">
v1.4.42 / 2018.06.27\n
User Experience (UX) Optimization
</string>
<string name="release_110">
v1.4.47 / 2018.08.29\n
Added post card deletion function
</string>
<string name="release_114">
v1.4.51 / 2018.09.29\n
AAF common module update\n
Change app packaging environment to Android 9 Pie
</string>
<string name="release_116">
v1.4.53 / 2018.10.13\n
Added preview photo size setting function\n
Added preview photo toggle function(fold or unfold)
</string>
<string name="release_118">
v1.4.55 / 2018.11.01\n
Improving the time expression of diary writing\n
Boldface setting function added to diary title and timeline time information
</string>
<string name="release_120">
v1.4.57 / 2018.11.12\n
Added multi-picker setting function to attach multiple pictures at one time
</string>
<string name="release_126">
v1.4.63 / 2018.11.25\n
Added attached photos backup and recovery function using Google Drive
</string>
<string name="release_128">
v1.4.65 / 2018.12.19\n
Added lock function using fingerprint sensor
</string>
<string name="release_130">
v1.4.67 / 2019.01.01\n
Improved the ability to view attached photos on the postcard screen
</string>
<string name="release_131">
v1.4.68 / 2019.01.06\n
Solved security considerations for some items that are reported with low confidence in Sophos vaccine(Notification listener, Trigger installation)\n
Add Postcard font size adjustment function
</string>
<string name="release_132">
v1.4.69 / 2019.01.16\n
User Experience (UX) Optimization\n
Fixed an error that screen transition is not normal in Android 9 Pie version\n
Add timeline diary creation button
</string>
<string name="release_133">
v1.4.70 / 2019.01.25\n
Added option to view summary of diary content
</string>
<string name="release_134">
v1.4.71 / 2019.01.26\n
Fixed an error that the application terminated abnormally when changing device fingerprint information
</string>
<string name="release_136">
v1.4.73 / 2019.02.11\n
Improved the ability to correct input digits when PIN is set and unlocked
</string>
<string name="release_137">
v1.4.74 / 2019.03.06\n
Improved the ability to apply filters to postcard images\n
Added ability to export diary to Excel file
</string>
<string name="release_138">
v1.4.75 / 2019.03.22\n
Add application-specific information pages, including FAQs and privacy policies\n
Improved pin and fingerprint unlock toggle
</string>
<string name="release_139">
v1.4.76 / 2019.04.24\n
Add 50 kinds of diary symbol icons
</string>
<string name="release_140">
v1.4.77 / 2019.05.11\n
Add diary symbols and apply categories
</string>
<string name="release_141">
v1.4.78 / 2019.05.13\n
Fixed an error that ended abnormally if some function of the setting screen does not have access to device storage
</string>
<string name="release_143">
v1.4.80 / 2019.06.07\n
Changed Google Drive Android API to Google Drive REST API (Google Drive Android API will be shut down on December 6, 2019)
</string>
<string name="release_147">
v1.4.83 / 2019.06.09\n
Apply Android App Bundle to reduce and optimize installation file size
</string>
<string name="release_149">
v1.4.84 / 2019.06.15\n
Improved diary statistics
</string>
<string name="release_150">
v1.4.85 / 2019.06.18\n
Google Drive(REST API) user rights acquisition error correction
</string>
<string name="release_151">
v1.4.86 / 2019.06.19\n
Google Drive(REST API) Recovering photos with diary Fixing errors
</string>
<string name="release_152">
v1.4.87 / 2019.06.20\n
Fixed authentication token error for users authenticated to use Google Drive in v1.4.80 earlier
</string>
<string name="release_154">
v1.4.88 / 2019.07.16\n
Migrated Android support library to AndroidX version\n
Add diary symbol icon
</string>
<string name="release_157">
v1.4.91 / 2019.08.12\n
Added backup and recovery function using device storage\n
Fixed an issue that caused some text to be truncated on calendars on some devices
</string>
<string name="release_159">
v1.4.93 / 2019.08.29\n
User Experience (UX) Optimization\n
Bug fixes that crash abnormally when entering the configuration screen on older OS
</string>
<string name="release_160">
v1.4.94 / 2019.09.03\n
Added calendar weekday start setting\n
Fixed an issue that prevented the calendar from showing in tablet landscape
</string>
<string name="release_163">
v1.4.97 / 2019.09.17\n
Improved timeline search filter\n
Diary copy function added
</string>
<string name="release_165">
v1.4.99 / 2019.09.26\n
Diary text counting function added
</string>
<string name="release_167">
v1.4.101 / 2019.10.03\n
Respond to Android 10 storage access issues (targetSdkVersion temporary downgrade to avoid scoped storage policy)
</string>
<string name="release_169">
v1.4.103 / 2019.10.09\n
Change storage location and migrate to respond to Android 10 Scoped Storage policies
</string>
<string name="release_170">
v1.4.104 / 2019.10.19\n
Added calendar font scale setting\n
Apply sliding page to setting screen
</string>
<string name="release_171">
v1.4.105 / 2019.10.20\n
Fixed an error that occurred when using the Excel file device saving function\n
Fixed error when deleting diary from timeline
</string>
<string name="release_172">
v1.4.106 / 2019.10.25\n
Fixed the error that the changed contents are not immediately visible after editing the diary\n
Remediation for Vulnerable Libraries with known Security Issues
</string>
<string name="release_173">
v1.4.107 / 2019.10.31\n
User Experience (UX) Optimization
</string>
<string name="release_174">
v1.4.108 / 2019.11.18\n
Fixed an error that occurred when setting the calendar font scale on a device set to French
</string>
<string name="release_176">
v1.4.110 / 2019.12.13\n
Added Diary Dashboard feature\n
Added the ability to delete the diary backup file stored in the device
</string>
<string name="release_178">
v1.4.112 / 2019.12.31\n
Add photo attachment function through camera app integration\n
Diary Dashboard Improvements
</string>
<string name="release_179">
v1.4.113 / 2020.01.04\n
Added date movement function using date picker on calendar screen
</string>
<string name="release_180">
v1.4.114 / 2020.01.15\n
Added diary symbol icon\n
Added French support
</string>
<string name="release_182">
v1.4.116 / 2020.01.21\n
License policy changed from 「Apache License 2.0」 to 「GNU General Public License v3.0」
</string>
<string name="release_184">
v1.4.118 / 2020.02.11\n
[BETA] Added full data backup feature
</string>
<string name="release_185">
v1.4.119 / 2020.02.15\n
Added diary symbol icon
</string>
<string name="release_186">
v1.4.120 / 2020.02.19\n
Added diary symbol icon\n
Added search function using diary symbol
</string>
<string name="release_187">
v1.4.121 / 2020.03.02\n
Improved the speed of the calendar screen(1st improvement)
</string>
<string name="release_188">
v1.4.122 / 2020.03.09\n
[BETA] Added full data recovery feature\n
Some symbols appear unusually large in dashboard statistics\n
Added sort option of the diary list in the calendar screen
</string>
<string name="release_190">
v1.4.124 / 2020.03.15\n
Separate font-related setting option from basic setting screen
</string>
<string name="release_191">
v1.4.125 / 2020.03.23\n
Added cursor position setting option when entering diary edit screen\n
Added the function to set the maximum number of lines in the content summary view option\n
Fixed an issue where the day of the week was cut off on the calendar screen
</string>
<string name="release_192">
v1.4.126 / 2020.04.05\n
Added diary encryption feature using pin number\n
Temporarily apply the requestLegacyExternalStorage option to respond to multi-picker scoped storage issues in Android 10
</string>
<string name="release_193">
v1.4.127 / 2020.04.12\n
Removed requestLegacyExternalStorage option\n
Adding database file backup and recovery feature using SAF (Storage Access Framework)
</string>
<string name="release_195">
v1.4.129 / 2020.04.21\n
Added feature to attach animated GIF files\n
Added diary multiple copy and delete feature
</string>
<string name="release_196">
v1.4.130 / 2020.05.20\n
Added diary schedule setting feature
</string>
<string name="release_197">
v1.4.131 / 2020.05.26\n
Fixed an error that caused abnormal termination of some screens in Android 4.4 version
</string>
<string name="release_198">
v1.4.132 / 2020.05.31\n
Fixed an issue where buttons included inside the card view could not be identified when the theme color and the card view background color were set to the same color
</string>
<string name="release_199">
v1.4.133 / 2020.06.02\n
Fixed an issue where the lock screen icon was not identified when the screen background color was set to white
</string>
<string name="release_200">
v1.4.134 / 2020.06.14\n
User Experience (UX) Optimization
</string>
<string name="release_201">
v1.4.135 / 2020.06.18\n
Added RTL language support
</string>
<string name="release_202">
v1.4.136 / 2020.06.29\n
Added diary list widget feature
</string>
<string name="release_203">
v1.4.137 / 2020.07.05\n
Applied Google Play security policy
</string>
<string name="release_205">
v1.4.139 / 2020.07.11\n
Added feature to display the information of the connected Google account\n
Added Google Drive backup feature using scheduler
</string>
<string name="release_206">
v1.4.140 / 2020.07.20\n
Fixed an error that the scheduler did not work in the application termination state
</string>
<string name="release_207">
v1.4.141 / 2020.08.03\n
User Experience (UX) Optimization\n
French translation updates
</string>
<string name="release_209">
v1.4.143 / 2020.08.26\n
Fixed an issue where some devices were abnormally terminated in the setting screen
</string>
<string name="release_211">
v1.4.145 / 2020.09.04\n
German translation updates
</string>
<string name="release_212">
v1.4.146 / 2020.09.10\n
German translation updates\n
Added location information display option
</string>
<string name="release_214">
v1.4.148 / 2020.09.15\n
Added task symbol sorting option
</string>
<string name="release_216">
v1.4.150 / 2020.09.22\n
Fixed a bug where the widget was not displayed normally
</string>
<string name="release_217">
v1.4.151 / 2020.10.05\n
Diary creation button added to the calendar screen
</string>
<string name="release_218">
v1.4.152 / 2020.10.19\n
Russian translation updates\n
User Experience (UX) Optimization
</string>
<string name="release_219">
v1.4.153 / 2020.11.10\n
Hindi translation added\n
User Experience (UX) Optimization
</string>
<string name="release_220">
v1.4.154 / 2020.11.28\n
Add diary symbols\n
Added daily symbol usage filtering function to dashboard
</string>
<string name="release_221">
v1.4.155 / 2020.12.14\n
Add diary symbols\n
When creating a post card, the function has been improved so that the attached photo can be cropped or a filter can be applied
</string>
<string name="release_222">
v1.4.156 / 2021.01.11\n
Add diary symbols\n
Improved calendar screen UX
</string>
<string name="release_225">
v1.4.159 / 2021.01.30\n
Chinese translation added
</string>
<string name="release_227">
v1.4.161 / 2021.02.12\n
User Experience (UX) Optimization
</string>
<string name="release_229">
v1.4.163 / 2021.03.23\n
Added function to save diary as HTML
</string>
<string name="release_230">
v1.4.164 / 2021.04.26\n
Fixed an issue where the date on the calendar was not visible when the card view color was black
</string>
<string name="release_232">
v1.4.166 / 2021.05.11\n
Italian translation added\n
Improved landscape screen UX
</string>
<string name="release_233">
v1.4.167 / 2021.05.18\n
Fixed a bug that abnormally terminated on some devices when rotating the device
</string>
<string name="release_234">
v1.4.168 / 2021.06.10\n
User Experience (UX) Optimization
</string>
<string name="release_235">
v1.4.169.0 / 2021.06.19\n
Spanish translation added
</string>
<string name="release_237">
v1.4.170.1 / 2021.07.04\n
Added temporary save and recovery function\n
Added the option to disable In-App Review
</string>
<string name="release_238">
v1.4.171.0 / 2021.07.21\n
User Experience (UX) Optimization
</string>
<string name="release_241">
v1.4.172.2 / 2021.08.24\n
User Experience (UX) Optimization
</string>
<string name="release_242">
v1.4.172.3 / 2021.08.28\n
Improved custom app theme and color settings\n
Fixed Showcase View error related to toolbar menu change
</string>
<string name="release_243">
v1.4.172.4 / 2021.08.29\n
User Experience (UX) Optimization
</string>
<string name="release_244">
v1.4.172.5 / 2021.09.04\n
Multilingual translation updated
</string>
<string name="release_246">
v1.4.172.7 / 2021.09.17\n
Change the initial font setting policy
</string>
<string name="release_250">
v1.4.172.11 / 2021.10.27\n
User Experience (UX) Optimization
</string>
<string name="release_251">
v1.4.172.12 / 2021.11.13\n
Improved diary list screen fast scrolling
</string>
<string name="release_252">
v1.4.172.13 / 2021.11.20\n
Fixed an error that caused abnormal termination when entering the main screen after cleaning the memory
</string>
<string name="release_257">
v1.4.172.18 / 2021.12.15\n
Added grid setting option to main screen
</string>
<string name="release_258">
v1.4.172.19 / 2022.01.12\n
Diary detail screen UX improvement
</string>
<string name="release_259">
v1.4.172.20 / 2022.01.19\n
Fixed an error that caused abnormal termination in Android 7.1 or lower version when attaching a photo\n
Fixed some errors that caused abnormal termination in Android 12 version
</string>
<string name="release_260">
v1.4.172.21 / 2022.01.22\n
Fixed an error that caused abnormal termination when the schedule function was set in Android 12 version
</string>
<string name="release_261">
v1.4.173.0 / 2022.02.03\n
Added attached photo highlight function
</string>
<string name="release_262">
v1.4.173.1 / 2022.02.09\n
Fixed an error where all yearly labels in the attached photo highlights were displayed as one year\n
Fixed an error that caused abnormal termination when using a filter on the diary post card creation screen
</string>
<string name="release_263">
v1.4.173.2 / 2022.02.12\n
Fixed an error where the diary list could not be loaded when using widgets in Android 12 version
</string>
<string name="release_264">
v1.4.173.3 / 2022.03.08\n
Added welcome dashboard feature\n
Added DDay setting feature to dashboard screen (Beta)
</string>
<string name="release_265">
v1.4.173.4 / 2022.03.09\n
Improved dashboard DDay setting feature
</string>
<string name="release_266">
v1.4.266.202203210 / 2022.03.21\n
Improved dashboard DDay setting feature
</string>
<string name="release_267">
v1.4.267.202203300 / 2022.03.30\n
Improved dashboard chart feature
</string>
<string name="release_268">
v1.4.268.202204040 / 2022.04.04\n
Change the policy so that the diary list is not displayed in the widget when the lock function is used
</string>
<string name="release_269">
v1.4.269.202204110 / 2022.04.11\n
Change the policy so that the content is not visible in the list of recently used apps when using the lock function
</string>
<string name="release_271">
v1.4.271.202204150 / 2022.04.15\n
User Experience (UX) Optimization
</string>
<string name="release_272">
v1.4.272.202204220 / 2022.04.22\n
Fixed abnormal termination error when exporting excel
</string>
<string name="release_273">
v1.4.273.202205070 / 2022.05.07\n
User Experience (UX) Optimization
</string>
<string name="release_274">
v1.4.274.202206010 / 2022.06.01\n
Added the recently used symbol selection function to the symbol dialog
</string>
<string name="release_275">
v1.4.275.202207150 / 2022.07.15\n
User Experience (UX) Optimization
</string>
<string name="release_277">
v1.4.277.202208170 / 2022.08.17\n
User Experience (UX) Optimization
</string>
<string name="release_279">
v1.4.279.202208250 / 2022.08.25\n
Improved main screen and dashboard screen UX
</string>
<string name="release_280">
v1.4.280.202209160 / 2022.09.16\n
Improved Dashboard UX
</string>
<string name="release_284">
v1.4.284.202210260 / 2022.10.26\n
Improved Dashboard UX
</string>
<string name="release_285">
v1.4.285.202211170 / 2022.11.17\n
Changed not to check storage access permission in TIRAMISU (Android 13) version
</string>
<string name="release_286">
v1.4.286.202212110 / 2022.12.11\n
Fixed an error in which the timeline filter was activated abnormally
</string>
<string name="release_287">
v1.4.287.202301140 / 2023.01.14\n
User Experience (UX) Optimization
</string>
<string name="release_288">
v1.4.288.202302030 / 2023.02.03\n
Fixed an error where Photo Multi-Picker did not work in TIRAMISU (Android 13) version
</string>
<string name="release_289">
v1.4.289.202302031 / 2023.02.03\n
Fixed an error where diary notifications did not work in TIRAMISU (Android 13) version
</string>
<string name="release_291">
v1.4.291.202302260 / 2023.02.26\n
Added date and time formatting settings
</string>
<string name="release_292">
v1.4.292.202303100 / 2023.03.10\n
Added support for Markdown syntax
</string>
<string name="release_293">
v1.4.293.202303240 / 2023.03.24\n
Improved markdown mode style
</string>
<string name="release_294">
v1.4.294.202304080 / 2023.04.08\n
Added user manual link
</string>
<string name="release_295">
v1.4.295.202304180 / 2023.04.18\n
Added attached photo gallery
</string>
<string name="release_297">
v1.4.297.202304260 / 2023.04.26\n
Improve to support markdown in widget
</string>
<string name="release_298">
v1.4.298.202306010 / 2023.06.01\n
User Experience (UX) Optimization
</string>
<string name="release_299">
v1.4.299.202306100 / 2023.06.10\n
User Experience (UX) Optimization
</string>
<string name="release_300">
v1.4.300.202307110 / 2023.07.11\n
Added Dashboard Calendar Component
</string>
<string name="release_301">
v1.4.301.202308250 / 2023.08.25\n
Dashboard UX Improvements
</string>
<string name="release_302">
v1.4.302.202309180 / 2023.09.18\n
Added automatic diary creation function using Google Calendar events
</string>
<string name="release_303">
v1.4.303.202310160 / 2023.10.16\n
User Experience (UX) Optimization
</string>
<string name="release_304">
v1.4.304.202312270 / 2023.12.27\n
Dashboard UX Improvements
</string>
<string name="release_305">
v1.4.305.202402230 / 2024.02.23\n
Added scheduler option to create diaries with Google Calendar events
</string>
<string name="release_306">
v1.4.306.202402250 / 2024.02.25\n
Android 14 SCHEDULE_EXACT_ALARM permission acquisition
</string>
<string name="release_307">
v1.4.307.202406020 / 2024.06.02\n
Discontinuation of support for devices prior to Android Version 5.0 (Android Lollipop)\n
Apply Jetpack Compose to some screens to improve functionality\n
Add option to use quick settings
</string>
<string name="release_308">
v1.4.308.202406030 / 2024.06.03\n
Applying the detailed consent guide policy for OAuth
</string>
<string name="release_309">
v1.4.309.202406100 / 2024.06.10\n
Fixed Android 14 Foreground Service permission issue
</string>
<string name="release_312">
v1.4.312.202406200 / 2024.06.20\n
Applied Android 12 Splash API
</string>
<string name="release_313">
v1.4.313.202410010 / 2024.10.01\n
User Experience (UX) Optimization
</string>
<string name="release_317">
v1.4.317.202410240 / 2024.10.24\n
Changed multi-picker support policy
</string>
<!-- ////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- Resources added since version 1.4.47 here. -->
<!-- ////////////////////////////////////////////////////////////////////////////////////////////// -->
<string name="speech_to_text">Voice input</string>
<string name="write_diary">Write a diary</string>
<string name="date_picker">Select date</string>
<string name="time_picker">Select time</string>
<string name="seconds_picker">Select seconds</string>
<string name="save_diary">Save diary</string>
<string name="photo_registration">Photo registration</string>
<string name="zoom_in">Zoom In</string>
<string name="zoom_out">Zoom Out</string>
<string name="edit_diary">Edit diary</string>
<string name="text_to_speech">Diary to speech</string>
<string name="diary_postcard">Diary Postcard</string>
<string name="thumbnail_setting_title">Thumbnail size</string>
<string name="thumbnail_setting_summary">Sets the thumbnail size of the photo attached to the diary. The set size only applies to the diary creation and modification screen, not to the search screen.</string>
<string name="collapse_attached_photo">Collapse attached photo</string>
<string name="expand_attached_photo">Expand attached photo</string>
<string name="release_notes_title">Release Notes</string>
<string name="release_notes_summary">Check for new features by release version.</string>
<string name="attached_photo_count">%d Attached Photos</string>
<string name="all_day">All day</string>
<string name="bold_style_option_title">Boldface configuration</string>
<string name="bold_style_option_summary">Set the diary title and timeline time to be displayed in bold.</string>
<string name="multi_picker_option_title">Multi picker setting</string>
<string name="multi_picker_option_summary">When attaching a diary photo, I use the multi-picker provided in the diary without using the gallery app. When Multi-picker is enabled, you can attach multiple pictures at once.</string>
<string name="preferences_category_backup_restore">Backup and Restore</string>
<string name="preferences_category_backup_restore_sub">Google API</string>
<string name="backup_attach_photo_title">Backup attached photos</string>
<string name="backup_attach_photo_summary">Backup your attached photos to Google Drive. This feature may not work on some devices due to beta service.</string>
<string name="recover_attach_photo_title">Recover attached photos</string>
<string name="recover_attach_photo_summary">Recover attached photos backed up to Google Drive. This feature may not work on some devices due to beta service.</string>
<string name="notification_msg_device_file_count">%s Number of backup files: %d%s</string>
<string name="notification_msg_upload_file_count">Number of files to upload</string>
<string name="notification_msg_upload_invalid">All backup target files already exist.</string>
<string name="notification_msg_upload_empty">The file to be backed up does not exist.</string>
<string name="notification_msg_upload_progress">Uploading…</string>
<string name="notification_msg_upload_complete">Upload Complete</string>
<string name="notification_msg_upload_success">%s Upload Success: %d%s</string>
<string name="notification_msg_upload_fail">%s Upload Fail: %d%s</string>
<string name="notification_msg_google_drive_file_count">%s Number of recover files: %d%s</string>
<string name="notification_msg_download_file_count">Number of files to download</string>
<string name="notification_msg_download_invalid">All recovery target files already exist.</string>
<string name="notification_msg_download_empty">The file to be recovered does not exist.</string>
<string name="notification_msg_download_progress">Downloading…</string>
<string name="notification_msg_download_complete">Download Complete</string>
<string name="notification_msg_download_success">%s Download Success: %d%s</string>
<string name="notification_msg_download_fail">%s Download Fail: %d%s</string>
<string name="notification_msg_duplicate_file_count">%s Number of exist files: %d%s</string>
<string name="preferences_category_lock">Lock setting</string>
<string name="fingerprint_lock_title">Fingerprint lock</string>
<string name="fingerprint_lock_summary">If the device supports fingerprint recognition and has a registered fingerprint, lock the application with the registered fingerprint.</string>
<string name="fingerprint_not_available">The operating system installed on the device does not support fingerprint recognition.</string>
<string name="fingerprint_setting_complete">Fingerprint lock setting is completed.</string>
<string name="fingerprint_setting_release">Fingerprint lock is off.</string>
<string name="fingerprint_lock_need_pin_setting">To use fingerprint lock, you need to set PIN first.</string>
<string name="fingerprint_authentication_fail_try_again">Fingerprint authentication failed. please try again.</string>
<string name="fingerprint_authentication_info_changed">The fingerprint authentication information of the device has changed and the previously set authentication information can not be used.</string>
<string name="pin_lock_title">PIN lock setting</string>
<string name="pin_lock_summary">Set the PIN to lock the application.</string>
<string name="pin_setting_complete">Do you want to set the PIN lock number to 「%s」?</string>
<string name="pin_setting_release">PIN lock disabled.</string>
<string name="pin_release_need_fingerprint_disable">To disable PIN lock, you need to turn off fingerprint lock.</string>
<string name="pin_setting_guide_message">Please enter a number to use as a PIN.</string>
<string name="pin_unlock_guide_message">Please enter the PIN.</string>
<string name="pin_verification_fail">PIN verification failed.</string>
<string name="change_pin_lock_mode">Changing to PIN lock mode</string>
<string name="diary_creation_time_disable_message">No time information</string>
<string name="enable_card_view_policy_title">Optimize card view design</string>
<string name="enable_card_view_policy_summary">Optimize the card view design for device.</string>
<string name="font_size_title">Set font size</string>
<string name="font_size_summary">Reduce or enlarge font size.</string>
<string name="contents_summary_title">Diary content summary</string>
<string name="contents_summary_description">Summarize the contents of the diary provided in the calendar, timeline, search screen, and so on.</string>
<string name="init_cipher_error_guide_message">The fingerprint information of the device has been changed. Change the PIN lock mode to unlock, then unlock the fingerprint lock and set it again.</string>
<string name="export_excel_title">Export excel</string>
<string name="export_excel_description">Save all content except the attached photo as an Excel file.</string>
<string name="export_excel_xls_location">Location</string>
<string name="export_excel_header_seq">Sequence</string>
<string name="export_excel_header_write_date">Write date</string>
<string name="export_excel_header_title">Diary title</string>
<string name="export_excel_header_contents">Diary contents</string>
<string name="export_excel_header_attach_photo_path">Attached photo path</string>
<string name="export_excel_header_attach_photo_size">Attached photo size</string>
<string name="export_excel_header_write_time_millis">Write date\n(Since January 1st 1970 in milliseconds.)</string>
<string name="export_excel_header_weather">Weather</string>
<string name="export_excel_header_symbol">Symbol</string>
<string name="export_excel_header_is_all_day">AllDay</string>
<string name="faq_title">FAQs</string>
<string name="faq_description">You can check frequently asked questions and answers.</string>
<string name="faq_url">https://raw.githubusercontent.com/hanjoongcho/aaf-easydiary/master/FAQs.md</string>
<string name="privacy_policy_title">Privacy Policy</string>
<string name="privacy_policy_description">Easy Diary Privacy Policy.</string>
<string name="privacy_policy_url">https://raw.githubusercontent.com/hanjoongcho/aaf-easydiary/master/Privacy.md</string>
<string name="diary_symbol">Diary Symbol</string>
<string name="diary_symbol_guide_message">Choose a symbol that matches the current weather or diary content.</string>
<string name="category_weather">Weather</string>
<string name="category_emotion">Emotion</string>
<string name="category_daily">Daily life&Things</string>
<string name="category_food">Food&Beverage</string>
<string name="category_leisure">Leisure life</string>
<string name="category_landscape">Landscape&Building</string>
<string name="rotate_photo">Rotate</string>
<string name="task_progress_message">Request work in process…</string>
<string name="open_realm_file_title">Diary Recovery</string>
<string name="open_realm_file_message">Please choose a recovery target file.</string>
<string name="backup_completed_message">Diary backup job is complete.</string>
<string name="backup_confirm_message">Do you want to start an attached photo backup task?</string>
<string name="recover_confirm_attached_photo">Do you want to start an attached photo recovery task?</string>
<string name="category_symbol">Symbol</string>
<string name="statistics_creation_time">Statistics by creation time</string>
<string name="statistics_symbol_all">All statistics by symbol</string>
<string name="statistics_symbol_top_ten">Top 10 statistics by symbol</string>
<string name="category_flag">FLAG</string>
<string name="preferences_category_backup_restore_device">Backup and Restore</string>
<string name="preferences_category_backup_restore_device_sub">Device Storage</string>
<string name="export_realm_title">Backup diary</string>
<string name="export_realm_description">Back up database files except the attached photo to the device storage.\nSince files backed up in the internal storage are deleted when the application is deleted, use the external public storage or Google Drive backup function to permanently store the created data.</string>
<string name="export_realm_guide_message">The database file has been saved to the device storage at the path below.</string>
<string name="import_realm_title">Recover diary</string>
<string name="import_realm_description">Recovers database files from device storage except attachments.</string>
<string name="diary_item_count">+%d</string>
<string name="calendar_start_day_title">Calendar start day</string>
<string name="calendar_start_day_summary">Set the start day of the week.</string>
<string name="calendar_start_day_sunday">Sunday</string>
<string name="calendar_start_day_monday">Monday</string>
<string name="calendar_start_day_saturday">Saturday</string>
<string name="calendar_menu_previous">Previous</string>
<string name="calendar_menu_next">Next</string>
<string name="filter_start_date">Start Date</string>
<string name="filter_start_date_hint">Please enter a start date.</string>
<string name="filter_end_date">End Date</string>
<string name="filter_end_date_hint">Please enter an end date.</string>
<string name="filter_search_word">Search Word</string>
<string name="filter_search_word_hint">Please enter your search term.</string>
<string name="filter_clear">Reset filter</string>
<string name="filter_close">Close</string>
<string name="copy_diary_item">Do you want to copy the selected diary?</string>
<string name="diary_contents_length">Characters: %d</string>
<string name="count_characters_title">Text counting</string>
<string name="count_characters_summary">Count the number of characters in the diary body.</string>
<string name="send_email_attach_excel_title">Excel file creation and email sending</string>
<string name="send_email_attach_excel_description">All content except the attached photo is created as an Excel file and attached to the email.</string>
<string name="storage_migration_message">Storage location changes will be made in accordance with the Android 10 Scoped Storage policy. This job runs only once.</string>
<string name="google_drive_account_sign_out_title">Reset Google linked account</string>
<string name="google_drive_account_sign_out_description">Remove token information published by Easy Diary using Google linked account.</string>
<string name="calendar_font_scale_title">Set calendar font size</string>
<string name="calendar_font_scale_description">Scales the font size inside the calendar based on the set global font size.</string>
<string name="calendar_font_scale_disable">Do not use</string>
<string name="calendar_font_scale_factor">Global font size x %.1f</string>
<string name="dashboard_title_lifetime">Lifetime</string>
<string name="dashboard_title_last_month">Last Month</string>
<string name="dashboard_title_last_week">Last Week</string>
<string name="dashboard_guide_message">There is not enough data to generate ranking data. You need to write a diary using at least 4 symbols to activate dash board ranking.</string>
<string name="delete_realm_title">Delete backup file</string>
<string name="delete_realm_description">Delete the backup file stored in the storage.</string>
<string name="menu_dashboard">Dashboard</string>
<string name="dashboard_title_backup_drive">Google Drive Backup History</string>
<string name="dashboard_title_backup_local">Local Device Backup History</string>
<string name="dashboard_backup_guide_message">No backup information</string>
<string name="last_diary_backup_time">Diary last backup time:</string>
<string name="last_photo_backup_time">Attached photo last backup time:</string>
<string name="export_full_backup_title">[BETA] Backup full data</string>
<string name="export_full_backup_description">Compress and back up all the data related to the diary such as database, attached photo, post card, font, etc. into one file.\nThis feature is a beta feature therefore may not work properly on some devices.</string>
<string name="diary_symbol_search_message">Select the diary symbol you want to filter.</string>
<string name="import_full_backup_title">[BETA] Recover full data</string>
<string name="import_full_backup_description">Decompress and recover all the data related to the diary such as database, attached photo, post card, font, etc.\nThis feature is a beta feature therefore may not work properly on some devices.</string>
<string name="calendar_sort_ascending">Ascending</string>
<string name="calendar_sort_descending">Descending</string>
<string name="calendar_sort_title">Calendar sort option</string>
<string name="calendar_sort_summary">Set the sort order of the daily diary list in the calendar screen.</string>
<string name="preferences_category_font">Font setting</string>
<string name="hold_position_title">Scroll position setting</string>
<string name="hold_position_summary">When the edit screen starts, the scroll position on the browse screen is maintained. If this setting is not set, scrolling moves to the last position of the text.</string>
<string name="max_lines_title">Max Lines</string>
<string name="max_lines_summary">Set the maximum number of lines to be displayed when the content summary option is activated.</string>
<string name="max_lines_value">%d Lines</string>
<string name="diary_encryption_title">Diary Encryption</string>
<string name="diary_encryption_guide">Please enter the pin number to be used for diary encryption.\nEncrypt the title and body of the currently selected diary using the entered pin number. (In the case of attached photos, the file itself is not encrypted, but if the diary is encrypted, viewing of the attached photos is restricted.)\nThe pin number cannot be recovered, so be careful not to forget the set pin number.</string>
<string name="diary_decryption_title">Diary Decryption</string>
<string name="diary_decryption_guide">Enter the pin number to be used for diary decoding.\nDecrypt the diary\'s title and body content using the entered pin number.</string>
<string name="diary_pin_number_confirm_guide">Enter the pin number to be used for diary encryption once more.</string>
<string name="diary_pin_number_confirm_error">The first entered PIN number does not match the confirmation PIN number.\nPlease enter the PIN number again.</string>
<string name="diary_pin_number_verification_error">The PIN numbers do not match.\nPlease enter the PIN number you set when encrypting the diary.</string>
<string name="diary_decryption_guide_before_editing">Enter the PIN number you set when encrypting the diary.\nWhen the diary is edited, it is encrypted again with the existing password.</string>
<string name="diary_decryption_mode_once">Decrypt once for viewing</string>
<string name="diary_decryption_mode_permanent">Remove the pin number setting after decryption</string>
<string name="backup_internal_title">Backup to internal storage</string>
<string name="backup_internal_description">The backup file is saved in the Easy Diary internal storage. The backed up files cannot be accessed using applications other than Easy Diary.</string>
<string name="backup_external_title">Backup to external storage</string>
<string name="backup_external_description">The backup file is stored in an external public storage. The backed up files can be accessed using File Explorer.</string>
<string name="recovery_internal_title">Restore from internal storage</string>
<string name="recovery_internal_description">Diary contents are restored using the database backup file stored in the Easy Diary internal storage.</string>
<string name="recovery_external_title">Restore from external storage</string>
<string name="recovery_external_description">Diary contents are restored using the database backup file stored in the external public storage.</string>
<string name="delete_selected_items_confirm">Are you sure you want to delete the %d selected items?</string>
<string name="duplicate_selected_items_confirm">Are you sure you want to duplicate the %d selected items?</string>
<string name="no_items_warning">There are no items selected.</string>
<string name="preferences_category_schedule">Schedule setting</string>
<string name="schedule_time">Day and time</string>
<string name="schedule_type">Schedule type</string>
<string name="schedule_description">Schedule description</string>
<string name="schedule_description_hint">Alarm description</string>
<string name="schedule_diary_writing_description">Diary writing\nRegister the diary writing schedule.\nWhen the schedule is registered, a notification message is provided according to the set day and time.</string>
<string name="schedule_backup_local_description">Diary backup (Device storage)\nRegistering the schedule backs up the database files excluding attached photos to the device local storage according to the set day and time and provides the result of the operation as a notification message.</string>
<string name="schedule_empty_message">There is no set schedule information.\nClick the plus button on the top right to add a new schedule.</string>
<string name="permission_confirmation_dialog_title">Request authorization</string>
<string name="permission_confirmation_dialog_message">Authorization is required to use Easy Diary.</string>
<string name="google_drive_account_information_title">Linked Google account information</string>
<string name="schedule_backup_gms_description">Diary backup (Google Drive)\nRegistering the schedule backs up the database files and attached photos to the Google Drive according to the set day and time and provides the result of the operation as a notification message.</string>
<string name="google_drive_account_sign_in_title">Sign in with Google</string>
<string name="google_drive_account_sign_in_description">Sign in to your Google account to back up and restore your diary using Google Drive or automatically create a diary using Google Calendar events.</string>
<string name="schedule_gms_error_title">Waiting for scheduled work</string>
<string name="schedule_gms_error_message">The device entered doze mode and the backup operation using the network failed. If you touch the notification window, the backup operation will resume.</string>
<string name="schedule_pending_guide_message">The waiting schedule starts.</string>
<string name="schedule_diary_writing_complete">Touch the notification window to go to the diary screen.</string>
<string name="schedule_backup_local_complete">Diary backup completed on local device.</string>
<string name="schedule_backup_gms_complete">The diary backup file and attached photo were saved in Google Drive.%s</string>
<string name="ok">OK</string>
<string name="cancel">Cancel</string>
<string name="settings">Settings</string>
<string name="location_info_title">Location information display</string>
<string name="location_info_description">The location information is displayed in the diary using GPS information.</string>
<string name="location_info_error_message">Location information cannot be received.</string>