aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/values/strings.xml
blob: 68f2014c08a3985f93315d910c58a398ceb157e1 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">

    <string name="app_name">c:geo</string>

    <!-- basics -->
    <string name="cache">Cache</string>
    <string name="detail">Details</string>
    <string name="search">Search</string>
    <string name="helpers">Useful apps</string>
    <string name="about">About c:geo</string>
    <string name="latitude">Latitude</string>
    <string name="longitude">Longitude</string>

    <!-- actionbar -->
    <string name="settings_titlebar">c:geo Settings</string>
    
    <!-- caches -->
    <string name="all_types">All Cache Types</string>
    <string name="traditional">Traditional Cache</string>
    <string name="multi">Multi-cache</string>
    <string name="mystery">Mystery Cache</string>
    <string name="letterbox">Letterbox Hybrid</string>
    <string name="event">Event Cache</string>
    <string name="mega">Mega-Event Cache</string>
    <string name="giga">Giga-Event Cache</string>
    <string name="earth">Earthcache</string>
    <string name="cito">Cache In Trash Out Event</string>
    <string name="webcam">Webcam Cache</string>
    <string name="virtual">Virtual Cache</string>
    <string name="wherigo">Wherigo Cache</string>
    <string name="lostfound">Lost &amp; Found Event Cache</string>
    <string name="ape">Project APE Cache</string>
    <string name="gchq">Groundspeak HQ</string>
    <string name="gps">GPS Adventures Exhibit</string>
    <string name="block">Groundspeak Block Party</string>
    <string name="unknown">Unknown Type</string>

    <!-- cache sizes -->
    <string name="cache_size_micro">Micro</string>
    <string name="cache_size_small">Small</string>
    <string name="cache_size_regular">Regular</string>
    <string name="cache_size_large">Large</string>
    <string name="cache_size_other">Other</string>
    <string name="cache_size_virtual">Virtual</string>
    <string name="cache_size_notchosen">Not chosen</string>
    <string name="cache_size_unknown">Unknown</string>
    <string name="cache_size_nano">Nano</string>
    <string name="cache_size_very_large">Very large</string>
    
    <!-- waypoints -->
    <string name="wp_final">Final Location</string>
    <string name="wp_stage">Stage of a Multicache</string>
    <string name="wp_puzzle">Question to Answer</string>
    <string name="wp_pkg">Parking Area</string>
    <string name="wp_trailhead">Trailhead</string>
    <string name="wp_waypoint">Reference Point</string>
    <string name="wp_original">Original Coordinates</string>

    <!-- logs -->
    <string name="log_found">Found it</string>
    <string name="log_dnf">Didn\'t find it</string>
    <string name="log_note">Write note</string>
    <string name="log_published">Published</string>
    <string name="log_enabled">Enabled</string>
    <string name="log_disabled">Disabled</string>
    <string name="log_attend">Will Attend</string>
    <string name="log_attended">Attended</string>
    <string name="log_retrieved">Retrieved</string>
    <string name="log_placed">Placed</string>
    <string name="log_grabbed">Grabbed Somewhere</string>
    <string name="log_movecollection">Move to Collection</string>
    <string name="log_moveinventory">Move to Inventory</string>
    <string name="log_maintained">Maintenance Performed</string>
    <string name="log_maintenance_needed">Needs Maintenance</string>
    <string name="log_update">Updated Coordinates</string>
    <string name="log_archived">Archived</string>
    <string name="log_unarchived">Unarchived</string>
    <string name="log_needs_archived">Needs Archived</string>
    <string name="log_discovered">Discovered</string>
    <string name="log_reviewer">Review Note</string>
    <string name="log_submit_for_review">Submit for Review</string>
    <string name="log_retractlisting">Retract Listing</string>
    <string name="log_marked_missing">Marked Missing</string>
    <string name="log_tb_nothing">Do Nothing</string>
    <string name="log_tb_visit">Visited</string>
    <string name="log_tb_drop">Dropped Off</string>
    <string name="log_tb_changeall">Change All</string>
    <string name="log_save">Save offline</string>
    <string name="log_saving">Sending log…</string>
    <string name="log_saving_and_uploading">Sending log and uploading image…</string>
    <string name="log_clear">Clear</string>
    <string name="log_post_not_possible">Loading Log Page…</string>
    <string name="log_date_future_not_allowed">Future log dates are not allowed.</string>
    <string name="log_add">Add</string>
    <string name="log_repeat">Repeat last log</string>
    <string name="log_no_rating">No rating</string>
    <string name="log_stars_1_description">Poor</string>
    <string name="log_stars_15_description">Fairly poor</string>
    <string name="log_stars_2_description">Below average</string>
    <string name="log_stars_25_description">Not so bad</string>
    <string name="log_stars_3_description">Average</string>
    <string name="log_stars_35_description">Not bad at all</string>
    <string name="log_stars_4_description">Better than average</string>
    <string name="log_stars_45_description">Very good</string>
    <string name="log_stars_5_description">Awesome</string>
    <string name="log_webcam">Webcam Photo Taken</string>
    <string name="log_new_log">Log</string>
    <string name="log_new_log_text">Log Text</string>
    <string name="log_announcement">Announcement</string>
    <string name="log_today">Today</string>
    <string name="log_yesterday">Yesterday</string>
    <string name="log_smilies">Smilies</string>
    <string name="log_image">Image</string>
    <string name="log_image_attach">Attach Image</string>
    <string name="log_image_stored">Existing</string>
    <string name="log_image_camera">New</string>
    <string name="log_image_caption">Caption</string>
    <string name="log_image_description">Description</string>
    <string name="log_image_scale">Scaling</string>
    <string name="log_password_title">Log Password:</string>
    <string name="log_hint_log_password">Enter your log password</string>
    <string name="log_oc_team_comment">OC Team comment</string>
    <string name="log_your_saved_log">Your saved log</string>
    
    <string-array name="log_image_scales">
        <item>No scaling</item>
        <item>512 px</item>
        <item>640 px</item>
        <item>800 px</item>
        <item>1024 px</item>
    </string-array>

    <!-- translation -->
    <string name="translate_to_sys_lang">Translate to %s</string>
    <string name="translate_to_english">Translate to English</string>
    <string name="translate_length_warning">Translation may fail with a large amount of text.</string>

    <!-- errors, warnings, info toasts -->
    <string name="err_none">OK</string>
    <string name="err_parse">Failed Login page parsing</string>
    <string name="err_server">Unable to contact Geocaching.com. The website may be down or your internet connection not working.</string>
    <string name="err_server_ec">Unable to contact Extremcaching.com. The website may be down or your internet connection not working.</string>
    <string name="err_login">No Login information stored</string>
    <string name="err_login_failed_toast">c:geo can\'t log in. c:geo works offline with Stored caches. Check Login settings or enable your internet connection.</string>
    <string name="err_unknown">Unknown error</string>
    <string name="err_unknown_address">c:geo was unable to map this address to an existing location</string>
    <string name="err_comm">Unknown communication error</string>
    <string name="err_missing_auth">No username and/or password set.</string>
    <string name="err_wrong">Login information incorrect</string>
    <string name="err_maintenance">Geocaching.com is down for maintenance. c:geo works offline with Stored caches.</string>
    <string name="err_license">You have not agreed to the Geocaching.com license agreement, so c:geo can\'t load cache coordinates.</string>
    <string name="err_unvalidated_account">You must validate your account on the Geocaching.com website first.</string>
    <string name="err_unpublished">The requested cache is unpublished.</string>
    <string name="err_premium_only">This Cache is only available to Geocaching.com Premium Members.</string>
    <string name="err_detail_open">c:geo can\'t open geocache details.</string>
    <string name="err_detail_cache">c:geo can\'t display the geocache you want. Is it really a geocache?</string>
    <string name="err_detail_cache_find">c:geo can\'t find geocache</string>
    <string name="err_detail_cache_find_some">c:geo can\'t find that geocache.</string>
    <string name="err_detail_cache_find_any">c:geo can\'t find any geocaches.</string>
    <string name="err_detail_google_maps_limit_reached">c:geo failed to download static maps. Maybe the Google Maps API limit was reached.</string>
    <string name="err_detail_no_spoiler">c:geo found no spoiler images for this cache.</string>
    <string name="err_detail_no_map_static">c:geo found no static maps for this cache.</string>
    <string name="err_detail_not_load_map_static">c:geo failed to load static maps.</string>
    <string name="err_detail_still_working">Still working on another task.</string>
    <string name="err_watchlist_still_managing">Still managing your watchlist.</string>
    <string name="err_watchlist_failed">Changing your watchlist failed.</string>
    <string name="err_application_no">c:geo can\'t find any suitable application.</string>
    <string name="err_auth_initialize">c:geo failed to initialize authorization process.</string>
    <string name="err_auth_process">Authorization process failed.</string>
    <string name="err_cannot_log_visit">c:geo is unable to log your visit. Please log your visit from the full cache details screen.</string>
    <string name="err_download_fail">c:geo failed to download caches.</string>
    <string name="err_dwld_details_failed">c:geo failed to download cache details.</string>
    <string name="err_load_descr_failed">c:geo can\'t load description.</string>
    <string name="err_location_unknown">c:geo doesn\'t know location of cache.</string>
    <string name="err_missing_device_name">Please enter a device name before registering.</string>
    <string name="err_favorite_failed">Changing favorite status failed.</string>
    <string name="err_select_logimage_failed">Selecting an image for the log failed.</string>
    <string name="err_acquire_image_failed">Acquiring an image failed.</string>
    <string name="err_tb_display">c:geo can\'t display the trackable you want. Is it really a trackable?</string>
    <string name="err_tb_details_open">c:geo can\'t open trackable details.</string>
    <string name="err_tb_find">c:geo can\'t find trackable</string>
    <string name="err_tb_find_that">c:geo can\'t find that trackable.</string>
    <string name="err_waypoint_cache_unknown">c:geo doesn\'t know to which cache you want to add a waypoint for.</string>
    <string name="err_waypoint_add_failed">c:geo failed to add your waypoint.</string>
    <string name="err_point_unknown_position">c:geo can\'t recognize where you are.</string>
    <string name="err_point_no_position_given_title">Info required</string>
    <string name="err_point_no_position_given">Fill at least latitude and longitude or distance and bearing. You can also fill all four fields.</string>
    <string name="err_point_bear_and_dist_title">Need some help?</string>
    <string name="err_point_bear_and_dist">Fill both bearing and distance. Bearing is angle 0 to 360 degrees relative to north. Distance doesn\'t require units.</string>
    <string name="err_log_load_data">c:geo can\'t load data required to log visit.</string>
    <string name="err_log_load_data_again">c:geo can\'t load data required to log visit. Trying again.</string>
    <string name="err_log_load_data_still">c:geo is still loading data required to post log. Please wait a little while longer.</string>
    <string name="err_log_post_failed">It seems that your log was not posted. Please check it on the cache originating website.</string>
    <string name="err_logimage_post_failed">It seems that your log image was not uploaded. Please check it on the cache originating website.</string>
    <string name="err_search_address_forgot">c:geo forgot the address you tried to find.</string>
    <string name="err_parse_lat">c:geo can\'t parse latitude.</string>
    <string name="err_parse_lon">c:geo can\'t parse longitude.</string>
    <string name="err_parse_dist">c:geo can\'t parse distance.</string>
    <string name="err_parse_lat_lon">c:geo can\'t parse latitude or longitude.</string>
    <string name="warn_save_nothing">There is nothing to be saved.</string>
    <string name="warn_no_cache_coord">There are no caches with coordinates.</string>
    <string name="warn_no_coordinates">No Coordinates given.</string>
    <string name="warn_no_keyword">No Keyword given.</string>
    <string name="warn_no_username">No Username given.</string>
    <string name="warn_search_help_title">Need some help?</string>
    <string name="warn_search_help_address">Enter an address or location name. For example use a postal address \"Radlicka 100, Prague, Czech Republic\", a city name \"Berlin\" or just a name of something like \"Yellowstone Park\".</string>
    <string name="warn_search_help_gccode">Enter the code for a geocache. For example \"GC1VCAZ\".</string>
    <string name="warn_search_help_keyword">Enter all or part of a geocache\'s name. For example \"Night Cache\".</string>
    <string name="warn_search_help_user">Enter a username from Geocaching.com.</string>
    <string name="warn_search_help_tb">Enter the code for a trackable. For example \"TB29QMZ\".</string>
    <string name="warn_log_text_fill">Please input some text for your log.</string>
    <string name="warn_load_images">c:geo failed to load images.</string>
    <string name="warn_invalid_mapfile">The selected map file is not a valid mapsforge version 0.3.0 map file.\nOffline maps are not available.</string>
    <string name="warn_deprecated_mapfile">You are using a deprecated version of map file (0.2.4).\nConsider switching to a version 0.3.0 map.\nWe will drop support for version 0.2.4 in the next release.</string>
    <string name="warn_nonexistant_mapfile">The selected map file does not exist.\nOffline maps are not available.</string>
    <string name="warn_rendertheme_missing">Map theme not found.</string>
    <string name="warn_pocket_query_select">No Pocket query selected.</string>
    <string name="warn_no_pocket_query_found">No Pocket query found online.</string>
    <string name="info_log_posted">c:geo successfully submitted the log.</string>
    <string name="info_log_saved">c:geo successfully saved the log.</string>
    <string name="info_log_cleared">Log was cleared.</string>
    <string name="info_log_type_changed">Type of log has been changed!</string>
    <string name="info_select_logimage_cancelled">Image selection or capture was cancelled.</string>
    <string name="info_stored_image">New image saved to:</string>
    <string name="info_storing_static_maps">Trying to store static maps</string>
    <string name="info_cache_saved">The cache has been stored locally</string>

    <!-- location service -->
    <string name="loc_last">Last known</string>
    <string name="loc_net">Network</string>
    <string name="loc_fused">Fused</string>
    <string name="loc_low_power">Low-power</string>
    <string name="loc_home">Home coordinates</string>
    <string name="loc_gps">GPS</string>
    <string name="loc_sat">Sat</string>
    <string name="loc_trying">Trying to Locate</string>
    <string name="loc_no_addr">Unknown address</string>
    <string name="loc_gps_disabled">GPS disabled</string>
    <string name="menu_centerposition">Center on my position</string>


    <!-- standard menu -->
    <string name="menu_about">About c:geo</string>
    <string name="menu_helpers">Utility programs</string>
    <string name="menu_settings">Settings</string>
    <string name="menu_history">History</string>
    <string name="menu_filter">Filter</string>
    <string name="menu_scan_geo">Scan geocode</string>
    <string name="menu_pocket_queries">Pocket queries</string>
    <string name="menu_scan_description">c:geo can scan geocodes which are printed as QR code. The necessary app is not installed. Do you want to open Google Play to install it?</string>
    
    <!-- main screen -->
    <string name="live_map_button">Live map</string>
    <string name="caches_nearby_button">Nearby</string>
    <string name="advanced_search_button">Search</string>
    <string name="stored_caches_button">Stored</string>
    <string name="any_button">Go to</string>
    <string name="unknown_scan">Didn\'t find any geocodes in the scan result.</string>

    <!-- caches -->
    <string name="caches_no_cache">No caches here</string>
    <string name="caches_more_caches">Load more caches</string>
    <string name="caches_more_caches_no">No more caches</string>
    <string name="caches_more_caches_loading">Loading caches…</string>
    <string name="caches_more_caches_currently">currently</string>
    <string name="caches_downloading">Downloading caches…\nETA: </string>
    <string name="caches_eta_ltm">Less than a minute</string>

    <plurals name="caches_eta_mins">
        <item quantity="one">%d minute</item>
        <item quantity="other">%d minutes</item>
    </plurals>

    <string name="caches_store_offline">Store Offline</string>
    <string name="caches_store_selected">Store Selected</string>
    <string name="caches_history">History</string>
    <string name="caches_on_map">Show on map</string>
    <string name="caches_sort">Sort</string>
    <string name="caches_sort_distance">Distance</string>
    <string name="caches_sort_difficulty">Difficulty</string>
    <string name="caches_sort_terrain">Terrain</string>
    <string name="caches_sort_size">Size</string>
    <string name="caches_sort_favorites">Favorites</string>
    <string name="caches_sort_favorites_ratio">Favorites [%]</string>
    <string name="caches_sort_name">Name</string>
    <string name="caches_sort_geocode">Geo Code</string>
    <string name="caches_sort_rating">Rating</string>
    <string name="caches_sort_vote">Vote (Own Rating)</string>
    <string name="caches_sort_inventory">Count of Inventory</string>
    <string name="caches_sort_date_hidden">Date Hidden</string>
    <string name="caches_sort_date_logged">Date Logged</string>
    <string name="caches_sort_finds">Finds</string>
    <string name="caches_sort_state">State</string>
    <string name="caches_sort_storage">Date stored on device</string>
    <string name="caches_select_mode">Select mode</string>
    <string name="caches_select_mode_exit">Exit select mode</string>
    <string name="caches_select_invert">Invert selection</string>
    <string name="caches_nearby">Nearby</string>
    <string name="caches_manage">Manage</string>
    <string name="caches_remove_all">Remove all</string>
    <plurals name="caches_remove_all_confirm">
        <item quantity="one">Do you want to remove this cache from current list?</item>
        <item quantity="other">Do you want to remove all %d caches from current list?</item>
    </plurals>
    <string name="caches_remove_selected">Remove selected</string>
    <plurals name="caches_remove_selected_confirm">
        <item quantity="one">Do you want to remove this cache from your device?</item>
        <item quantity="other">Do you want to remove the selected %d caches from your device?</item>
    </plurals>
    <string name="caches_remove_progress">Removing caches</string>
    <string name="caches_delete_events">Delete past events</string>
    <string name="caches_refresh_selected">Refresh selected</string>
    <string name="caches_refresh_all">Refresh all</string>
    <string name="caches_move_selected">Move selected</string>
    <string name="caches_move_all">Move all</string>
    <string name="caches_map_locus">Locus</string>
    <string name="caches_map_locus_export">Export to Locus</string>
    <string name="caches_recaptcha_title">reCAPTCHA</string>
    <string name="caches_recaptcha_explanation">Please enter the text you see in the image. This enables downloading of cache coordinates, which can be disabled in Settings.</string>
    <string name="caches_recaptcha_hint">Text from image</string>
    <string name="caches_recaptcha_continue">Continue</string>
    <string name="caches_filter">Filter</string>
    <string name="caches_filter_title">Filter by</string>
    <string name="caches_filter_size">Size</string>
    <string name="caches_filter_type">Type</string>
    <string name="caches_filter_track">With Trackables</string>
    <string name="caches_filter_clear">Clear filters</string>
    <string name="caches_filter_modified">With modified coordinates</string>
    <string name="caches_filter_offline_log">With offline log</string>
    <string name="caches_filter_origin">Origin</string>
    <string name="caches_filter_distance">Distance</string>
    <string name="caches_filter_personal_note">With personal note</string>
    <string name="caches_filter_popularity">Favorites</string>
    <string name="caches_filter_popularity_ratio">Favorites [%]</string>
    <string name="caches_filter_personal_data">With personal data</string>
    <string name="caches_filter_rating">With rating</string>
    <string name="caches_filter_own_rating">With own rating</string>
    <string name="caches_removing_from_history">Removing from History…</string>
    <string name="caches_clear_offlinelogs">Clear offline logs</string>
    <string name="caches_clear_offlinelogs_message">Do you want to clear the offline logs?</string>
    <string name="caches_clear_offlinelogs_progress">Clearing offline logs</string>

    <!-- caches lists -->
    <string name="list_menu_create">Create new list</string>
    <string name="list_menu_drop">Drop current list</string>
    <string name="list_menu_rename">Rename current list</string>
    <string name="list_menu_import">Import</string>
    <string name="list_title">Pick a list</string>
    <string name="list_inbox">Stored</string>
    <string name="list_all_lists">All caches</string>
    <string name="list_dialog_create_title">New list</string>
    <string name="list_dialog_create">Create</string>
    <string name="list_dialog_create_ok">A new list was created</string>
    <string name="list_dialog_create_err">c:geo failed to create the new list</string>
    <string name="list_dialog_remove_title">Remove list</string>
    <string name="list_dialog_remove_description">Do you want to remove the current list? All caches remaining in the list will be moved to \"Stored\".</string>
    <string name="list_dialog_remove">Remove</string>
    <string name="list_dialog_remove_ok">The list was removed</string>
    <string name="list_dialog_remove_err">c:geo failed to remove the current list</string>
    <string name="list_dialog_rename_title">Rename list</string>
    <string name="list_dialog_rename">Rename</string>
    <string name="list_not_available">List no longer available, switching to standard list</string>
    
    <!-- about -->
    <string name="about_version">Version</string>
    <string name="about_changelog">Changelog</string>
    <string name="about_system">System</string>
    <string name="about_donate">Donate</string>
    <string name="about_donation_more">Donate\ndevelopment</string>
    <string name="about_contributors">Contributors</string>
    <string name="about_license">License</string>
    <string name="about_apache_license"><a href="">Apache License, Version 2.0</a></string>
    <string name="about_help">Help</string>
    <string name="about_system_include">Please include the following system information when sending a bug report or asking for more information about c:geo:</string>
    <string name="changelog_github">List of all changes</string>
    
    <!-- settings -->
    <string name="settings_title_services">Services</string>
    <string name="settings_summary_services">Configure user account information and access to optional services.</string>
    <string name="settings_title_appearance">Appearance</string>
    <string name="settings_title_cachedetails">Cache Details</string>
    <string name="settings_title_offlinedata">Offline Data</string>
    <string name="settings_title_logging">Logging</string>
    <string name="settings_title_map">Map</string>
    <string name="settings_title_map_data">Map Data</string>
    <string name="settings_title_map_content">Map Content</string>
    <string name="settings_title_gpx">GPX</string>
    <string name="settings_title_basicmembers">Options for Basic Members</string>
    <string name="settings_title_navigation">Navigation</string>
    <string name="settings_title_system">System</string>
    <string name="settings_title_navigation_menu">Navigation Menu</string>
    
    <string name="settings_category_browser">Browser</string>
    <string name="settings_category_geocaching">Geocaching</string>
    <string name="settings_category_social">Social media</string>
    <string name="settings_category_logging_other">Other Logging Options</string>
    
    <string name="settings_goto_url_button">more …</string>

    <string name="settings_title_gc">Geocaching.com</string>
    <string name="settings_title_ec">Extremcaching.com</string>
    <string name="settings_title_ox">Opencaching.com (Garmin)</string>
    <string name="settings_activate_gc">Activate</string>
    <string name="settings_activate_ec">Activate</string>
    <string name="settings_activate_ox">Activate</string>
    <string name="settings_gc_legal_note">With using the service of geocaching.com, you accept the Groundspeak Terms of Use.</string>
    <string name="settings_info_facebook_login_title">Facebook Login</string>
    <string name="settings_info_facebook_login">You can\'t make c:geo login to geocaching.com with your Facebook account. But there is a simple workaround…</string>
    <string name="settings_authorize">Authorize c:geo</string>
    <string name="settings_reauthorize">Authorize c:geo again</string>
    <string name="init_oc">Opencaching.de</string>
    <string name="settings_activate_oc">Activate</string>
    <string name="init_oc_de_description">Authorize c:geo with opencaching.de to search for caches and access/filter your found caches.</string>
    <string name="init_oc_pl">Opencaching.pl</string>
    <string name="settings_activate_oc_pl">Activate</string>
    <string name="init_oc_pl_description">Authorize c:geo with opencaching.pl to search for caches and access/filter your found caches.</string>
    <string name="init_oc_nl">Opencaching.nl</string>
    <string name="settings_activate_oc_nl">Activate</string>
    <string name="init_oc_nl_description">Authorize c:geo with opencaching.nl to search for caches and access/filter your found caches.</string>
    <string name="init_oc_us">Opencaching.us</string>
    <string name="settings_activate_oc_us">Activate</string>
    <string name="init_oc_us_description">Authorize c:geo with opencaching.us to search for caches and access/filter your found caches.</string>
    <string name="init_oc_ro">Opencaching.ro</string>
    <string name="settings_activate_oc_ro">Activate</string>
    <string name="init_oc_ro_description">Authorize c:geo with opencaching.ro to search for caches and access/filter your found caches.</string>
    <string name="init_oc_uk">Opencaching.org.uk</string>
    <string name="settings_activate_oc_uk">Activate</string>
    <string name="init_oc_uk_description">Authorize c:geo with opencaching.org.uk to search for caches and access/filter your found caches.</string>
    <string name="init_gcvote">GCvote.com</string>
    <string name="init_gcvote_password_description">To be able to rate a cache, you need to follow the instructions at GCVote.com and enter your GCVote password here.</string>
    <string name="err_gcvote_send_rating">Error while sending rating, check GCVote password in settings or empty it.</string>
    <string name="gcvote_sent">Voting successfully sent</string>
    <string name="init_twitter">Twitter</string>
    <string name="settings_activate_twitter">Activate</string>
    <string name="init_username">Username</string>
    <string name="init_password">Password</string>
    <string name="init_login">Check Login</string>
    <string name="init_login_popup">Login</string>
    <string name="init_login_popup_working">Logging in…</string>
    <string name="init_login_popup_ok">Login OK</string>
    <string name="init_login_popup_failed">Login failed</string>
    <string name="init_login_popup_failed_reason">Login failed:</string>
    <string name="init_login_popup_not_authorized">Not authorized</string>
    <string name="init_login_popup_invalid_timestamp">Local time invalid, adjust device time</string>
    <string name="init_login_popup_invalid_token">Authorization invalid, re-authorize</string>
    <string name="settings_service_active">Active</string>
    <string name="init_signature">Signature</string>
    <string name="init_template_help">Placeholder strings like [NAME] will be expanded later when this template is used.</string>
    <string name="init_signature_template_button">Insert Template</string>
    <string name="init_signature_template_date">Date</string>
    <string name="init_signature_template_time">Time</string>
    <string name="init_signature_template_datetime">Date &amp; Time</string>
    <string name="init_signature_template_user">User</string>
    <string name="init_signature_template_number">Number</string>
    <string name="init_signature_template_owner">Owner</string>
    <string name="init_signature_template_name">Name</string>
    <string name="init_signature_template_url">URL</string>
    <string name="init_signature_template_log">Log text</string>
    <string name="init_ratingwanted">GCvote Rating</string>
    <string name="init_summary_ratingwanted">Load cache rating from GCvote.com</string>
    <string name="init_friends_and_own_logs_wanted">Show Friends\'/Own</string>
    <string name="init_summary_friends_and_own_logs_wanted">Display additional logbook page for friends\' and own logs</string>
    <string name="init_openlastdetailspage">Last Details Page</string>
    <string name="init_summary_openlastdetailspage">Open details with last used page</string>
    <string name="init_autoload">Long Description</string>
    <string name="init_summary_autoload">Always load long description</string>
    <string name="init_skin">Light Skin</string>
    <string name="init_summary_skin">Use light skin (Restart needed)</string>
    <string name="init_address">Show Address</string>
    <string name="init_summary_address">Show address instead of coordinates on main screen</string>
    <string name="init_captcha">Show CAPTCHA</string>
    <string name="init_summary_captcha">Show CAPTCHA if necessary (only Basic Member)</string>
    <string name="init_useenglish">Use English</string>
    <string name="init_summary_useenglish">Use English language for c:geo (Restart needed)</string>
    <string name="init_exclude">Exclude Own and Found</string>
    <string name="init_summary_exclude">Exclude caches you own or have found</string>
    <string name="init_showwaypoints">Show Waypoints</string>
    <string name="init_showwaypoint_description">If less than the given amount of caches are displayed on the map, their waypoints are shown additionally.</string>
    <string name="init_disabled">Exclude Disabled</string>
    <string name="init_summary_disabled">Exclude disabled caches</string>
    <string name="init_offline">Static Maps</string>
    <string name="init_summary_offline">Store cache static maps for offline use</string>
    <string name="init_offline_wp">Static Maps (WP)</string>
    <string name="init_summary_offline_wp">Store waypoints static maps for offline use</string>
    <string name="init_save_log_img">Save Images</string>
    <string name="init_summary_save_log_img">Save Images from Logs</string>
    <string name="init_units">Use Imperial Units</string>
    <string name="init_summary_units">Use Imperial Units instead of Metric Units</string>
    <string name="init_log_offline">Offline Logging</string>
    <string name="init_summary_log_offline">Enable Offline Logging (Won\'t show online log screen when logging, won\'t upload logs)</string>
    <string name="init_choose_list">Ask for List</string>
    <string name="init_summary_choose_list">Ask which list to store caches in</string>
    <string name="init_livelist">Show Direction</string>
    <string name="init_summary_livelist">Show direction of caches in the list</string>
    <string name="init_backup">Backup</string>
    <string name="init_backup_backup">Backup</string>
    <string name="init_backup_running">Creating backup of cache database…</string>
    <string name="init_backup_note">Please note that this feature will backup/restore a database containing caches and waypoints, but not your settings.\nYour Login data and passwords will never leave this application.</string>
    <string name="init_backup_restore">Restore</string>
    <string name="init_backup_success">c:geo\'s database was successfully copied to:</string>
    <string name="init_backup_failed">Backup of c:geo\'s database failed.</string>
    <string name="init_backup_unnecessary">Database is empty, no backup necessary.</string>
    <string name="backup_confirm_overwrite">Do you want to overwrite the existing backup from %s?</string>
    <string name="restore_confirm_overwrite">Do you want to overwrite %s on your device with the backup?</string>
    <string name="init_restore_success">Restoration completed.</string>
    <string name="init_restore_failed">Restoration failed.</string>
    <string name="init_restore_running">Restoring cache database…</string>
    <string name="init_restore_confirm">Database is empty. Do you want to restore the database backup?</string>
    <string name="init_backup_last">Available backup from</string>
    <string name="init_backup_last_no">There is no file with a backup.</string>
    <string name="settings_info_offline_maps_title">Info on Offline Maps</string>
    <string name="settings_info_offline_maps">c:geo supports maps for offline use. You can download maps from Mapsforge or even create your own maps from OSM data. You need to select the offline map directory first to get offline map support.</string>
    <string name="settings_info_themes_title">Info on Map Themes</string>
    <string name="settings_info_themes">c:geo supports custom themes for offline maps. These can be used to change the color style of the map (e.g. to have a nightview map) or to highlight certain objects like cycle paths or height lines within the map.</string>
    <string name="init_mapsource_select">Select Map Source</string>
    <string name="settings_title_scale_map_text">Scale Map Text</string>
    <string name="settings_summary_scale_map_text">Scale text labels on offline map according to device dpi</string>
    <string name="init_map_directory_description">Directory with offline maps</string>
    <string name="init_gpx_exportdir">GPX Export Directory</string>
    <string name="init_gpx_importdir">GPX Import Directory</string>
    <string name="init_maptrail">Show Trail</string>
    <string name="init_summary_maptrail">Show trail on Map</string>
    <string name="init_share_after_export">Open share menu after GPX export</string>
    <string name="init_trackautovisit">Visit TBs</string>
    <string name="init_summary_trackautovisit">Set trackables to \"Visited\" by default</string>
    <string name="init_sigautoinsert">Insert automatically</string>
    <string name="init_loaddirectionimg">Direction Image</string>
    <string name="init_summary_loaddirectionimg">Download directional arrow image if necessary (only required for Basic Members)</string>
    <string name="init_default_navigation_tool">Default Navigation</string>
    <string name="init_secondary_navigation_tool">Secondary Navigation</string>
    <string name="init_default_navigation_tool_description">Here you can select your preferred navigation tool.</string>
    <string name="init_default_navigation_tool_select">Select tool</string>
    <string name="init_default_navigation_tool_2_description">Here you can select your second preferred navigation tool. Activate it by long pressing the navigation icon next to the title of the cache.</string>
    <string name="init_navigation_menu_description">Here you can select which of the available navigation methods will be shown in the navigation menu for a cache or waypoint. Disabled tools are not installed on this device.</string>
    <string name="init_debug_title">Debug information</string>
    <string name="init_debug_note">c:geo can generate a lot of debugging information. While this information is generally not useful for c:geo users, developers may need you to generate this information in order to analyze a bug. In this case, they will ask you to check the box below and send them the resulting log file.</string>
    <string name="init_debug">Activate debug log</string>
    <string name="init_dbonsdcard_title">Database location</string>
    <string name="init_dbonsdcard_note">You may store the database of c:geo on your external storage medium. Doing so will save internal memory, but you may lose a bit of performance and c:geo will not work if your SD card isn\'t available.</string>
    <string name="init_dbonsdcard">On external storage</string>
    <string name="init_dbmove_dbmove">Moving Database</string>
    <string name="init_dbmove_running">Moving Database</string>
    <string name="init_dbmove_success">Successfully moved the database.</string>
    <string name="init_dbmove_failed">Failed to move database</string>
    <string name="init_plain_logs">Plain Logs</string>
    <string name="init_summary_plain_logs">Display log entries without colors</string>
    <string name="init_use_native_ua">Android browser</string>
    <string name="init_summary_use_native_ua">Identify as Android browser. Solves login problems when using certain network providers.</string>
    <string name="init_rendertheme_folder">Map Themes Directory</string>
    <string name="init_maintenance">Maintenance</string>
    <string name="init_maintenance_directories_note">c:geo stores images, log images and other files related to a cache in a separate directory. In some cases (like importing/exporting the database) this directory may contain outdated files, which can be deleted here.</string>
    <string name="init_maintenance_directories">Delete orphaned files</string>
    <string name="init_location">Geolocation</string>
    <string name="init_location_note">On devices equipped with Google Play Services, c:geo can automatically use a better geolocation provider. However, this prevents the use of an external BlueTooth GPS receiver.</string>
    <string name="init_location_googleplayservices">Use Google Play Services</string>
    <string name="init_low_power">Low-power mode</string>
    <string name="init_low_power_note">The low-power mode avoids using the GPS and the gyroscope when a highly accurate location is not strictly necessary, at the cost of longer fixing times.</string>
    <string name="init_low_power_mode">Activate low-power mode</string>
    <string name="init_create_memory_dump">Create memory dump</string>
    <string name="init_memory_dump">Memory dump</string>
    <string name="init_memory_dumped">Memory dumped to %s</string>
    <string name="init_hardware_acceleration_title">Hardware accelerated rendering</string>
    <string name="init_hardware_acceleration_note">Hardware acceleration renders graphical elements faster on the screen. However on some devices the Android operating system contains bugs and some text may appear blurred (notably bold characters). Disable hardware acceleration if this happens to you.</string>
    <string name="init_hardware_acceleration">Enable hardware acceleration</string>
    <string name="settings_open_website">Open website</string>
    <string name="settings_settings">Settings</string>
    <string name="settings_information">Information</string>
    <string name="settings_twitter_cache_message">Message for found cache</string>
    <string name="settings_twitter_trackable_message">Message for found trackable</string>
    <string name="init_ec_icons">Map Icons</string>
    <string name="settings_ec_icons_other">Own style</string>
    <string name="settings_ec_icons_oc">Like OC</string>
    <string name="settings_features">Supported Features</string>
    <string name="feature_description">The following <b>online</b> features of this website are supported in c:geo (in addition to the offline features):</string>
    <string name="feature_personal_notes">Personal note</string>
    <string name="feature_online_logging">Online logging</string>
    <string name="feature_log_images">Attach images to logs</string>
    <string name="feature_watch_list">Watch list</string>
    <string name="feature_own_coordinates">Storing of modified coordinates</string>
    <string name="feature_search_keyword">Search by keyword</string>
    <string name="feature_search_live_map">Live map</string>
    <string name="feature_search_center">Search by position</string>
    <string name="feature_search_geocode">Search by geocode</string>
    <string name="feature_search_owner">Search by owner</string>
    <string name="feature_search_finder">Search by finder</string>
    
    <!-- map sources -->
    <string name="map_source_google_map">Google: Map</string>
    <string name="map_source_google_satellite">Google: Satellite</string>
    <string name="map_source_osm_mapnik">OSM: Mapnik</string>
    <string name="map_source_osm_cyclemap">OSM: Cyclemap</string>
    <string name="map_source_osm_offline">Offline</string>
    <string name="init_sendToCgeo">Send to c:geo</string>
    <string name="settings_info_send2cgeo_title">Info on send2cgeo</string>
    <string name="init_sendToCgeo_name">Your device name</string>
    <string name="init_sendToCgeo_description"><b>Send2c:geo</b> allows you to send caches to your Android device directly from geocaching.com using a special plugin for Firefox or Chrome. Before registering, please see <a href="http://send2.cgeo.org/">http://send2.cgeo.org/</a>. You only need to register if you want to use send2c:geo. c:geo will work normally without registering your device.</string>
    <string name="init_sendToCgeo_register">Request Registration</string>
    <string name="init_sendToCgeo_registering">Registering your device for Send2c:geo…</string>
    <string name="init_sendToCgeo_register_ok">Registration successful. PIN code is ####. Use it on the c:geo website to connect this device to your browser.</string>
    <string name="init_sendToCgeo_register_fail">Registration failed.</string>
    <string name="sendToCgeo_download_fail">c:geo failed to download caches. No internet connection, or send2c:geo is down.</string>
    <string name="sendToCgeo_no_registration">c:geo failed to download caches. Registration for send2c:geo expired. Please register in settings.</string>

    <!-- auth generic -->
    <string name="auth_twitter">Twitter</string>
    <string name="auth_authorize">Authorize c:geo</string>
    <string name="auth_start">Start authorization</string>
    <string name="auth_again">Start again</string>
    <string name="auth_dialog_waiting">Waiting for %s…</string>
    <string name="auth_explain_short">The following process will allow <b>c:geo</b> to access %s.</string>
    <string name="auth_explain_long">Pressing the \"authorize c:geo\" button will start the process. This process will open up a web browser with a %s page. Log in on this page and allow <b>c:geo</b> to access your account. That\'s all.</string>

    <!-- auth Twitter -->
    <string name="auth_dialog_completed_twitter">c:geo is now authorized to post on Twitter.</string>

    <!-- auth opencaching -->
    <string name="auth_ocde">opencaching.de</string>
    <string name="auth_ocpl">opencaching.pl</string>
    <string name="auth_ocnl">opencaching.nl</string>
    <string name="auth_ocus">opencaching.us</string>
    <string name="auth_ocro">opencaching.ro</string>
    <string name="auth_ocuk">opencaching.org.uk</string>
    <string name="auth_dialog_completed_oc">c:geo is now authorized to interact with %s.</string>

    <!-- cache -->
    <plurals name="cache_counts">
        <item quantity="one">One cache</item>
        <item quantity="other">%1$d caches</item>
    </plurals>

    <string name="cache_offline">Offline</string>
    <string name="cache_offline_refresh">Refresh</string>
    <string name="cache_offline_drop">Drop</string>
    <string name="cache_offline_store">Store</string>
    <string name="cache_offline_stored">Stored in device</string>
    <string name="cache_offline_not_ready">Not available offline</string>
    <string name="cache_offline_time_about">about</string>
    <string name="cache_offline_time_mins">minutes ago</string>
    <string name="cache_offline_time_mins_few">a few minutes ago</string>
    <string name="cache_offline_time_hour">one hour ago</string>
    <string name="cache_offline_time_hours">hours ago</string>
    <string name="cache_offline_time_days">days ago</string>
    <string name="cache_premium">Premium</string>
    <string name="cache_attributes">Attributes</string>
    <string name="cache_inventory">Inventory</string>
    <string name="cache_log_images_title">Log images</string>
    <string name="cache_log_image_default_title">Photo</string>
    <string name="cache_personal_note">Personal note</string>
    <string name="cache_personal_note_edit">Edit</string>
    <string name="cache_personal_note_limit">Personal note limit</string>
    <string name="cache_personal_note_truncation">This personal note will be truncated after %d characters by Geocaching.com.</string>
    <string name="cache_personal_note_upload">Upload</string>
    <string name="cache_personal_note_uploading">Uploading personal note</string>
    <string name="cache_personal_note_upload_done">Personal note uploaded</string>
    <string name="cache_personal_note_upload_cancelled">Personal note upload cancelled</string>
    <string name="cache_description">Description</string>
    <string name="cache_description_long">Long Description</string>
    <string name="cache_description_table_note">Description contains table formatting which may need to be viewed at %s to be seen correctly.</string>
    <string name="cache_watchlist_on">This cache is on your watchlist.</string>
    <string name="cache_watchlist_not_on">This cache is not on your watchlist.</string>
    <string name="cache_watchlist_add">Add to Watchlist</string>
    <string name="cache_watchlist_remove">Remove from Watchlist</string>
    <string name="cache_favpoint_on">This cache is one of your favorites.</string>
    <string name="cache_favpoint_not_on">This cache is not one of your favorites.</string>
    <string name="cache_favpoint_add">Add</string>
    <string name="cache_favpoint_remove">Remove</string>
    <string name="cache_list_text">List:</string>
    <string name="cache_list_change">Move</string>
    <string name="cache_list_unknown">Not in a list</string>
    <string name="cache_images">Images</string>
    <string name="cache_waypoints">Waypoints</string>

    <plurals name="waypoints">
        <item quantity="one">1 Waypoint</item>
        <item quantity="other">%d Waypoints</item>
    </plurals>

    <string name="cache_waypoints_add">Add Waypoint</string>
    <string name="cache_hint">Hint</string>
    <string name="cache_hint_not_available">No hint available</string>
    <string name="cache_logs">Logbook</string>
    <string name="cache_logs_friends_and_own">Friends/Own Logs</string>
    <string name="cache_dialog_loading_details">Loading cache details…</string>
    <string name="cache_dialog_loading_details_status_loadpage">Loading page</string>
    <string name="cache_dialog_loading_details_status_details">Processing details</string>
    <string name="cache_dialog_loading_details_status_spoilers">Loading spoiler images</string>
    <string name="cache_dialog_loading_details_status_logs">Loading logs</string>
    <string name="cache_dialog_loading_details_status_waypoints">Processing waypoints</string>
    <string name="cache_dialog_loading_details_status_gcvote">Loading GCVote</string>
    <string name="cache_dialog_loading_details_status_cache">Caching Data</string>
    <string name="cache_dialog_loading_details_status_render">Render view</string>
    <string name="cache_dialog_offline_save_title">Offline</string>
    <string name="cache_dialog_offline_save_message">Saving cache for offline use…</string>
    <string name="cache_dialog_offline_drop_title">Offline</string>
    <string name="cache_dialog_offline_drop_message">Removing cache from device memory…</string>
    <string name="cache_dialog_refresh_title">Refresh</string>
    <string name="cache_dialog_refresh_message">Reloading cache details…</string>
    <string name="cache_dialog_watchlist_add_title">Watchlist</string>
    <string name="cache_dialog_watchlist_add_message">Adding cache to your watchlist…</string>
    <string name="cache_dialog_watchlist_remove_title">Watchlist</string>
    <string name="cache_dialog_watchlist_remove_message">Removing cache from your watchlist…</string>
    <string name="cache_dialog_favorite_add_title">Favorite</string>
    <string name="cache_dialog_favorite_add_message">Adding cache to your favorites…</string>
    <string name="cache_dialog_favorite_remove_title">Favorite</string>
    <string name="cache_dialog_favorite_remove_message">Removing cache from your favorites…</string>
    <string name="cache_menu_navigate">Navigate</string>
    <string name="cache_menu_navigation_drive">Navigation (Driving)</string>
    <string name="cache_menu_navigation_walk">Navigation (Walking)</string>
    <string name="cache_menu_navigation_bike">Navigation (Bike)</string>
    <string name="cache_menu_maps_directions">Google Maps Directions</string>
    <string name="cache_menu_radar">Radar</string>
    <string name="cache_menu_map">Map</string>
    <string name="cache_menu_map_static">Static Maps</string>
    <string name="cache_menu_download_map_static">Download Static Maps</string>
    <string name="cache_menu_rmaps">Rmaps</string>
    <string name="cache_menu_map_ext">Show on ext. map</string>
    <string name="cache_menu_streetview">Street View</string>
    <string name="cache_menu_browser">Open in browser</string>
    <string name="cache_menu_visit">Log Visit</string>
    <string name="cache_menu_visit_offline">One click offline log</string>
    <string name="cache_menu_spoilers">Spoiler images</string>
    <string name="cache_menu_around">Caches around</string>
    <string name="around">Around %s</string>
    <string name="cache_menu_event">Add to calendar</string>
    <string name="cache_menu_details">Details</string>
    <string name="cache_menu_refresh">Refresh</string>
    <string name="cache_menu_share">Share cache</string>
    <string name="cache_menu_move_list">Move to different list</string>
    <string name="cache_menu_whereyougo">WhereYouGo</string>
    <string name="cache_menu_oruxmaps">OruxMaps</string>
    <string name="cache_menu_navigon">Navigon</string>
    <string name="cache_menu_pebble">Pebble</string>
    <string name="cache_menu_android_wear">Android Wear</string>
    <string name="cache_menu_vote">Vote</string>
    <string name="cache_menu_checker">Open Geochecker</string>
    <string name="cache_menu_ignore">Ignore cache</string>
    <string name="cache_status">Status</string>
    <string name="cache_status_offline_log">Saved Log</string>
    <string name="cache_status_found">Found</string>
    <string name="cache_not_status_found">Not Found</string>
    <string name="cache_status_archived">Archived</string>
    <string name="cache_status_disabled">Disabled</string>
    <string name="cache_status_premium">Premium Members only</string>
    <string name="cache_status_not_premium">All Members Access</string>
    <string name="cache_status_stored">Stored</string>
    <string name="cache_status_not_stored">Not stored</string>
    <string name="cache_geocode">Geo code</string>
    <string name="cache_name">Name</string>
    <string name="cache_type">Type</string>
    <string name="cache_size">Size</string>
    <string name="cache_distance">Distance</string>
    <string name="cache_difficulty">Difficulty</string>
    <string name="cache_terrain">Terrain</string>
    <string name="cache_rating">Rating</string>
    <string name="cache_own_rating">Your Rating</string>
    <string name="cache_rating_of">of</string>
    <string name="cache_favorite">Favorite</string>
    <string name="cache_owner">Owner</string>
    <string name="cache_hidden">Hidden</string>
    <string name="cache_event">Date</string>
    <string name="cache_location">Location</string>
    <string name="cache_coordinates">Coordinates</string>
    <string name="cache_coordinates_original">Original Coordinates</string>
    <string name="cache_spoiler_images_title">Spoiler images</string>
    <string name="cache_log_types">Log types</string>
    <string name="cache_coordinates_no">This cache has no coordinates.</string>
    <string name="cache_clear_history">Clear history</string>
    <string name="cache_remove_from_history">Remove from history</string>
    <string name="cache_license">License</string>
    <string name="cache_image">Image</string>
    <string name="cache_image_open_file">Open as file</string>
    <string name="cache_image_open_browser">Open in browser</string>
    <string name="cache_share_field">Share</string>
    <string name="cache_time_full_hours">o\'clock</string>
    <string name="cache_listed_on">Listed on %s</string>

    <!-- editor dialog -->

    <!-- file list base -->
    <string name="file_searching_in">Searching for files\nin</string>
    <string name="file_searching_sdcard_in">No files found in default folders:\n%1$s\n\nSearching whole SD card for files:\n</string>
    <string name="file_list_no_files">c:geo found no appropriate files.</string>
    <string name="file_searching">Searching for matching files</string>
    <string name="file_title_searching">Searching</string>

    <!-- simple_dir_chooser -->
    <string name="simple_dir_chooser_title">Choose directory</string>
    <string name="simple_dir_chooser_current_path">Path:</string>
    <string name="simple_dir_chooser_invalid_path">Invalid Path</string>
    
    <!-- gpx -->
    <string name="gpx_import_loading_caches">Loading caches from .gpx file</string>
    <string name="gpx_import_loading_waypoints">Loading waypoints file</string>
    <string name="gpx_import_store_static_maps">Storing static maps</string>
    <string name="gpx_import_caches_imported">caches imported</string>
    <string name="gpx_import_static_maps_skipped">Download of static maps aborted</string>
    <string name="gpx_import_title_static_maps">Store static maps</string>
    <string name="gpx_import_title_reading_file">Reading file</string>
    <string name="gpx_import_title">Import GPX</string>
    <string name="gpx_import_title_caches_imported">Result</string>
    <string name="gpx_import_title_caches_import_failed">Import failed</string>
    <string name="gpx_import_error_io">Can\'t read file</string>
    <string name="gpx_import_error_parser">Bad File format</string>
    <string name="gpx_import_error_unexpected">Unexpected error</string>
    <string name="gpx_import_canceled">GPX import was canceled</string>
    <string name="gpx_import_delete_title">Delete file</string>
    <string name="gpx_import_delete_message">Do you want to delete %s?</string>
    <string name="gpx_import_select_list_title">Import GPX to list</string>
    <string name="gpx_import_android">Import from Android</string>
    
    <!-- map file select -->
    <string name="map_file_select_title">Select map file</string>

    <!-- theme file select -->
    <!-- import -->
    <string name="web_import_title">Import from web</string>
    <string name="web_import_waiting">Waiting for new caches from web…</string>
    <string name="web_downloading">Downloading</string>
    <string name="web_downloaded">Downloaded</string>

    <!-- popup -->
    <string name="popup_more">More details</string>

    <!-- waypoint -->
    <string name="waypoint">Waypoint</string>
    <string name="waypoint_cache_coordinates">Cache coordinates</string>
    <string name="waypoint_custom">Custom</string>
    <string name="waypoint_my_coordinates">My coordinates</string>
    <string name="waypoint_bearing">Bearing in °</string>
    <string name="waypoint_distance">Distance</string>
    <string name="waypoint_name">Name</string>
    <string name="waypoint_edit">Edit</string>
    <string name="waypoint_delete">Delete</string>
    <string name="waypoint_edit_title">Edit waypoint</string>
    <string name="waypoint_add_title">Add waypoint</string>
    <string name="waypoint_note">Note</string>
    <string name="waypoint_visited">Visited</string>
    <string name="waypoint_save">Save</string>
    <string name="waypoint_loading">Loading waypoint…</string>
    <string name="waypoint_do_not_touch_cache_coordinates">No change to cache coordinates</string>
    <string name="waypoint_set_as_cache_coords">Set as cache coordinates in c:geo</string>
    <string name="waypoint_save_and_modify_on_website">Set as cache coordinates in c:geo and on website</string>
    <string name="waypoint_reset_cache_coords">Reset cache coordinates</string>
    <string name="waypoint_coordinates_has_been_reset_on_website">Cache coordinates have been reset on website.</string>
    <string name="waypoint_coordinates_being_reset_on_website">Resetting cache coordinates on website…</string>
    <string name="waypoint_reset">Reset</string>
    <string name="waypoint_localy_reset_cache_coords">Reset in c:geo</string>
    <string name="waypoint_reset_local_and_remote_cache_coords">Reset in c:geo and on website</string>
    <string name="waypoint_being_saved">Waypoint is being saved…</string>
    <string name="waypoint_coordinates_couldnt_be_modified_on_website">Website doesn\'t support modifying cache coordinates.</string>
    <string name="waypoint_coordinates_upload_error">Error occurred while modifying coordinates on website.</string>
    <string name="waypoint_coordinates_uploading_to_website">Uploading coordinates %s to website.</string>
    <string name="waypoint_coordinates_has_been_modified_on_website">Cache coordinates on website have been modified to: %s.</string>
    <string name="waypoint_done">Done</string>
    <string name="waypoint_duplicate">Duplicate</string>
    <string name="waypoint_copy_of">Copy of</string>
    <string name="search_history">History</string>
    <string name="search_history_empty">No previous destinations</string>
    <string name="search_remove_destination">Destination removed</string>
    <string name="search_clear_history">Clear History</string>
    <string name="search_history_cleared">History cleared</string>
    <string name="waypoint_coordinate_formats_plain">Plain</string>
    <string name="from_clipboard">From clipboard</string>
    <string name="copy_to_clipboard">Copy to clipboard</string>
    
    <!-- visit -->
    <string name="visit_tweet">Post this find to Twitter</string>

    <!-- map -->
    <string name="map_map">Map</string>
    <string name="map_live">Live map</string>
    <string name="map_view_map">Map view</string>
    <string name="map_modes">Map settings</string>
    <string name="map_trail_show">Show trail</string>
    <string name="map_circles_show">Show circles</string>
    <string name="map_mycaches_hide">Hide own/found caches</string>
    <string name="map_theme_builtin">Default</string>
    <string name="map_theme_select">Select map theme</string>
    <string name="map_live_enable">Enable live</string>
    <string name="map_live_disable">Disable live</string>
    <string name="map_static_title">Static maps</string>
    <string name="map_static_loading">Loading static maps…</string>
    <string name="map_token_err">Since c:geo is only able to download partial data, coordinates of caches could be inaccurate.</string>
    <string name="map_as_list">Show as list</string>
    <string name="map_strategy">Strategy</string>
    <string name="map_strategy_title">Live Map strategy</string>
    <string name="map_strategy_fastest">Fastest</string>
    <string name="map_strategy_fast">Fast</string>
    <string name="map_strategy_auto">Speed dependent</string>
    <string name="map_strategy_detailed">Detailed</string>
    <string name="live_map_notification">Coordinates on the live map may not always be precise. Possibly imprecise coordinates are marked by an orange circle.\nOpening the cache details or saving the cache for offline use will always obtain precise coordinates.\n\nMore information can be found on the \"About c:geo\" page inside the app.</string>

    <!-- search -->
    <string name="search_bar_hint">Search for caches</string>
    <string name="search_bar_desc">Caches (geo code, keyword), Trackables (TB code)</string>
    <string name="search_coordinates">Coordinates</string>
    <string name="search_coordinates_button">Search by coordinates</string>
    <string name="search_address">Address</string>
    <string name="search_address_button">Search by address</string>
    <string name="search_geo">Geo code</string>
    <string name="search_geo_button">Search by geo code</string>
    <string name="search_kw">Keywords</string>
    <string name="search_kw_prefill">Keyword</string>
    <string name="search_kw_button">Search by keyword</string>
    <string name="search_fbu">Found by user</string>
    <string name="search_fbu_prefill">User name</string>
    <string name="search_fbu_button">Search by user name</string>
    <string name="search_hbu">Hidden by users</string>
    <string name="search_hbu_prefill">Owner</string>
    <string name="search_hbu_button">Search by owner name</string>
    <string name="search_tb">Trackable</string>
    <string name="search_tb_hint">Trackable identification</string>
    <string name="search_tb_button">Search for trackable</string>
    <string name="search_destination">Destination</string>
    <string name="search_direction_rel">From this position</string>
    <string name="search_address_started">Searching for places</string>
    <string name="search_address_result">Found places</string>
    <string name="search_own_caches">Search my caches</string>
	<string name="search_pocket_title">Pocket Query</string>
	<string name="search_pocket_loading">Loading a list of Pocket Queries</string>
	<string name="search_pocket_select">Choose Pocket Query</string>

    <!-- trackable -->
    <string name="trackable">Trackable</string>
    <string name="trackable_details_loading">Loading trackable details…</string>
    <string name="trackable_log_touch">Log touch</string>
    <string name="trackable_browser_open">Open in Browser</string>
    <string name="trackable_goal">Goal</string>
    <string name="trackable_details">Details</string>
    <string name="trackable_image">Image</string>
    <string name="trackable_code">TB-Code</string>
    <string name="trackable_name">Name</string>
    <string name="trackable_type">Type</string>
    <string name="trackable_owner">Owner</string>
    <string name="trackable_spotted">Spotted</string>
    <string name="trackable_spotted_in_cache">In</string>
    <string name="trackable_spotted_at_user">In the hands of</string>
    <string name="trackable_spotted_unknown_location">Unknown location</string>
    <string name="trackable_spotted_owner">In the hands of its owner</string>
    <string name="trackable_origin">Origin</string>
    <string name="trackable_unknown">Unknown</string>
    <string name="trackable_released">Released</string>
    <string name="trackable_distance">Traveled</string>
    <string name="trackable_touch">Touch</string>
    <string name="trackable_not_activated">Trackable not activated</string>
    
    <string name="geokret_type_traditional">Traditional</string>
    <string name="geokret_type_book_or_media">Book or electronic media</string>
    <string name="geokret_type_human">Human</string>
    <string name="geokret_type_coin">Coin</string>
    <string name="geokret_type_post">Mail</string>

	<!-- user -->
    <string name="user_menu_title">About</string>
    <string name="user_menu_view_hidden">Caches hidden</string>
    <string name="user_menu_view_found">Caches found</string>
    <string name="user_menu_open_browser">Open profile in browser</string>
    <string name="user_menu_send_message">Send message</string>
    <string name="user_menu_open_contact">Open contact card</string>
    
    <!-- navigation -->
    <string name="navigation">Navigation</string>
    <string name="compass_title">Compass</string>
    <string name="compass_sensors">Active Sensors</string>
    <string name="use_gps">Use GPS only</string>
    <string name="use_compass">Use GPS and Compass</string>
    <string name="destination_select">Select destination</string>
    <string name="navigation_direct_navigation">Direct Navigation</string>
    <string name="navigation_target">Target</string>
    <string name="err_nav_no_coordinates">Cannot start navigation with no coordinates</string>

    <!-- license -->
    <string name="license">License</string>
    <string name="license_show">Show license</string>
    <string name="license_dismiss">Dismiss</string>

    <!-- helpers -->
    <string name="helper_calendar_title">c:geo calendar plugin</string>
    <string name="helper_calendar_missing">c:geo calendar plugin not installed.</string>
    <string name="helper_calendar_description">Enables you to export event caches to the calendar on your device.</string>
    <string name="helper_sendtocgeo_title">Send to c:geo</string>
    <string name="helper_contacts_title">c:geo contacts plugin</string>
    <string name="helper_contacts_description">Enables you to open a contact card (of your address book) directly from a log entry, so you can more easily ask friends for help.</string>
    <string name="helper_sendtocgeo_description">Send to c:geo is a browser extension <strong>for your PC</strong>. When browsing geocaching.com, you can send caches to your smartphone with the click of a button directly inside the browser.</string>
    <string name="helper_locus_title">Locus</string>
    <string name="helper_locus_description">Outdoor navigation app for your phone or tablet. View topo maps offline, track your route, hunt geocaches, use a voice guide and do even more.</string>
    <string name="helper_gpsstatus_title">GPS Status</string>
    <string name="helper_gpsstatus_description">You can use the radar in this application in conjunction with c:geo. It also offers a lot of other GPS-related information.</string>
    <string name="helper_bluetoothgps_title">Bluetooth GPS</string>
    <string name="helper_bluetoothgps_description">Allows you to use an external GPS receiver to get more precise location data, and can spare battery of your device.</string>
    <string name="helper_barcode_title">Barcode Scanner</string>
    <string name="helper_barcode_description">There are Greasemonkey scripts and websites which enable display of geocodes as barcodes. With this app, c:geo can read such geocodes directly from the screen of your computer.</string>
    <string name="helper_pocketquery_title">Pocket Query Creator</string>
    <string name="helper_pocketquery_description">Allows easy creation and download of Pocket Queries centred on your current position or a point selected from a map. Requires a Premium Geocaching.com account.</string>
    <string name="helper_google_translate_title">Google Translate</string>
    <string name="helper_google_translate_description">If you download translation packages in the Google Translate app, then you can easily translate cache descriptions in c:geo by a long tap on the cache description text (without an Internet connection).</string>
    
    <!-- add-ons -->
    <string name="addon_missing_title">Missing plugin</string>
    <string name="addon_download_prompt">Get it now from Google Play.</string>

    <!-- export -->
    <string name="export">Export</string>
    <string name="export_exportedto">exported to</string>
    <string name="export_failed">Export failed</string>
    <string name="export_fieldnotes">Field Notes</string>
    <string name="export_fieldnotes_info">Field Notes will be exported to /sdcard/field-notes with the current date and time as their file name.</string>
    <string name="export_fieldnotes_upload">Upload to geocaching.com</string>
    <string name="export_fieldnotes_uploading">Uploading…</string>
    <string name="export_fieldnotes_upload_success">Upload to geocaching.com successful</string>
    <string name="export_fieldnotes_onlynew">Only since last export</string>
    <string name="export_fieldnotes_creating">Creating Field Notes…</string>
    <string name="export_gpx">GPX</string>
    <string name="export_gpx_info">The GPX file will be exported to %1$s with the current date and time as its file name.</string>
    <string name="export_gpx_to">Send exported GPX to</string>

    <!-- GC attributes -->
    <string name="attribute_dogs_yes">Dogs allowed</string>
    <string name="attribute_dogs_no">Dogs not allowed</string>
    <string name="attribute_bicycles_yes">Bicycles allowed</string>
    <string name="attribute_bicycles_no">Bicycles not allowed</string>
    <string name="attribute_motorcycles_yes">Motorcycles allowed</string>
    <string name="attribute_motorcycles_no">Motorcycles not allowed</string>
    <string name="attribute_quads_yes">Quads allowed</string>
    <string name="attribute_quads_no">Quads not allowed</string>
    <string name="attribute_jeeps_yes">Off-road vehicles allowed</string>
    <string name="attribute_jeeps_no">Off-road vehicles not allowed</string>
    <string name="attribute_snowmobiles_yes">Snowmobiles allowed</string>
    <string name="attribute_snowmobiles_no">Snowmobiles not allowed</string>
    <string name="attribute_horses_yes">Horses allowed</string>
    <string name="attribute_horses_no">Horses not allowed</string>
    <string name="attribute_campfires_yes">Campfires allowed</string>
    <string name="attribute_campfires_no">Campfires not allowed</string>
    <string name="attribute_rv_yes">Truck driver/RV allowed</string>
    <string name="attribute_rv_no">Truck driver/RV not allowed</string>
    <string name="attribute_kids_yes">Recommended for kids</string>
    <string name="attribute_kids_no">Not recommended for kids</string>
    <string name="attribute_onehour_yes">Takes less than an hour</string>
    <string name="attribute_onehour_no">Takes more than an hour</string>
    <string name="attribute_scenic_yes">Scenic view</string>
    <string name="attribute_scenic_no">No scenic view</string>
    <string name="attribute_hiking_yes">Significant hike</string>
    <string name="attribute_hiking_no">No significant hike</string>
    <string name="attribute_climbing_yes">Difficult climbing</string>
    <string name="attribute_climbing_no">No difficult climbing</string>
    <string name="attribute_wading_yes">May require wading</string>
    <string name="attribute_wading_no">May not require wading</string>
    <string name="attribute_swimming_yes">May require swimming</string>
    <string name="attribute_swimming_no">May not require swimming</string>
    <string name="attribute_available_yes">Available at all times</string>
    <string name="attribute_available_no">Not available at all times</string>
    <string name="attribute_night_yes">Recommended at night</string>
    <string name="attribute_night_no">Not recommended at night</string>
    <string name="attribute_winter_yes">Available during winter</string>
    <string name="attribute_winter_no">Not available during winter</string>
    <string name="attribute_stealth_yes">Stealth required</string>
    <string name="attribute_stealth_no">Stealth not required</string>
    <string name="attribute_firstaid_yes">Needs maintenance</string>
    <string name="attribute_firstaid_no">Needs no maintenance</string>
    <string name="attribute_cow_yes">Watch for livestock</string>
    <string name="attribute_cow_no">No livestock</string>
    <string name="attribute_field_puzzle_yes">Field puzzle</string>
    <string name="attribute_field_puzzle_no">No field puzzle</string>
    <string name="attribute_nightcache_yes">Night cache</string>
    <string name="attribute_nightcache_no">No night cache</string>
    <string name="attribute_parkngrab_yes">Park and grab</string>
    <string name="attribute_parkngrab_no">No park and grab</string>
    <string name="attribute_abandonedbuilding_yes">Abandoned structure</string>
    <string name="attribute_abandonedbuilding_no">No abandoned structure</string>
    <string name="attribute_hike_short_yes">Short hike (less than 1 km)</string>
    <string name="attribute_hike_short_no">No short hike</string>
    <string name="attribute_hike_med_yes">Medium hike (1 km to 10 km)</string>
    <string name="attribute_hike_med_no">No medium hike</string>
    <string name="attribute_hike_long_yes">Long hike (more than 10 km)</string>
    <string name="attribute_hike_long_no">No long hike</string>
    <string name="attribute_seasonal_yes">Seasonal access</string>
    <string name="attribute_seasonal_no">No seasonal access</string>
    <string name="attribute_touristok_yes">Tourist friendly</string>
    <string name="attribute_touristok_no">Not tourist friendly</string>
    <string name="attribute_frontyard_yes">Private residence</string>
    <string name="attribute_frontyard_no">Not a private residence</string>
    <string name="attribute_teamwork_yes">Teamwork required</string>
    <string name="attribute_teamwork_no">No teamwork required</string>
    <string name="attribute_landf_yes">Lost and found tour</string>
    <string name="attribute_landf_no">Not a lost and found tour</string>
    <string name="attribute_partnership_yes">Partnership cache</string>
    <string name="attribute_partnership_no">Not a partnership cache</string>
    <string name="attribute_fee_yes">Access or parking fee required</string>
    <string name="attribute_fee_no">Access or parking fee not required</string>
    <string name="attribute_rappelling_yes">Climbing gear required</string>
    <string name="attribute_rappelling_no">Climbing gear not required</string>
    <string name="attribute_boat_yes">Boat required</string>
    <string name="attribute_boat_no">Boat not required</string>
    <string name="attribute_scuba_yes">Scuba gear required</string>
    <string name="attribute_scuba_no">Scuba gear not required</string>
    <string name="attribute_flashlight_yes">Flashlight required</string>
    <string name="attribute_flashlight_no">Flashlight not required</string>
    <string name="attribute_uv_yes">UV light required</string>
    <string name="attribute_uv_no">UV light not required</string>
    <string name="attribute_snowshoes_yes">Snowshoes required</string>
    <string name="attribute_snowshoes_no">Snowshoes not required</string>
    <string name="attribute_skiis_yes">Cross country skis required</string>
    <string name="attribute_skiis_no">Cross country skis not required</string>
    <string name="attribute_s_tool_yes">Special tools required</string>
    <string name="attribute_s_tool_no">Special tools not required</string>
    <string name="attribute_wirelessbeacon_yes">Wireless beacon</string>
    <string name="attribute_wirelessbeacon_no">No wireless beacon</string>
    <string name="attribute_treeclimbing_yes">Tree climbing required</string>
    <string name="attribute_treeclimbing_no">Tree climbing not required</string>
    <string name="attribute_poisonoak_yes">Poisonous plants</string>
    <string name="attribute_poisonoak_no">No poisonous plants</string>
    <string name="attribute_dangerousanimals_yes">Dangerous animals</string>
    <string name="attribute_dangerousanimals_no">No dangerous animals</string>
    <string name="attribute_ticks_yes">Ticks</string>
    <string name="attribute_ticks_no">No ticks</string>
    <string name="attribute_mine_yes">Abandoned mines</string>
    <string name="attribute_mine_no">No abandoned mines</string>
    <string name="attribute_cliff_yes">Cliff / falling rocks</string>
    <string name="attribute_cliff_no">No cliff / falling rocks</string>
    <string name="attribute_hunting_yes">Hunting</string>
    <string name="attribute_hunting_no">No hunting</string>
    <string name="attribute_danger_yes">Dangerous area</string>
    <string name="attribute_danger_no">Not a dangerous area</string>
    <string name="attribute_thorn_yes">Thorns</string>
    <string name="attribute_thorn_no">No thorns</string>
    <string name="attribute_wheelchair_yes">Wheelchair accessible</string>
    <string name="attribute_wheelchair_no">Not wheelchair accessible</string>
    <string name="attribute_parking_yes">Parking available</string>
    <string name="attribute_parking_no">No parking available</string>
    <string name="attribute_public_yes">Public transportation</string>
    <string name="attribute_public_no">No public transportation</string>
    <string name="attribute_water_yes">Drinking water nearby</string>
    <string name="attribute_water_no">No drinking water nearby</string>
    <string name="attribute_restrooms_yes">Public restrooms nearby</string>
    <string name="attribute_restrooms_no">No public restrooms nearby</string>
    <string name="attribute_phone_yes">Telephone nearby</string>
    <string name="attribute_phone_no">No telephone nearby</string>
    <string name="attribute_picnic_yes">Picnic tables nearby</string>
    <string name="attribute_picnic_no">No picnic tables nearby</string>
    <string name="attribute_camping_yes">Camping available</string>
    <string name="attribute_camping_no">No camping available</string>
    <string name="attribute_stroller_yes">Stroller accessible</string>
    <string name="attribute_stroller_no">Not stroller accessible</string>
    <string name="attribute_fuel_yes">Fuel nearby</string>
    <string name="attribute_fuel_no">No fuel nearby</string>
    <string name="attribute_food_yes">Food nearby</string>
    <string name="attribute_food_no">No food nearby</string>
    <string name="attribute_oc_only_yes">Only loggable at Opencaching</string>
    <string name="attribute_oc_only_no">Not loggable only at Opencaching</string>
    <string name="attribute_link_only_yes">Hyperlink to another caching portal only</string>
    <string name="attribute_link_only_no">Not only a hyperlink to another caching portal</string>
    <string name="attribute_letterbox_yes">Letterbox (needs stamp)</string>
    <string name="attribute_letterbox_no">No letterbox (no stamp needed)</string>
    <string name="attribute_railway_yes">Active railway nearby</string>
    <string name="attribute_railway_no">No active railway nearby</string>
    <string name="attribute_syringe_yes">First aid available</string>
    <string name="attribute_syringe_no">No first aid available</string>
    <string name="attribute_swamp_yes">Swamp or marsh</string>
    <string name="attribute_swamp_no">No swamp or marsh</string>
    <string name="attribute_hills_yes">Hilly area</string>
    <string name="attribute_hills_no">Not a hilly area</string>
    <string name="attribute_easy_climbing_yes">Lightweight climbing</string>
    <string name="attribute_easy_climbing_no">No lightweight climbing</string>
    <string name="attribute_poi_yes">Point of interest</string>
    <string name="attribute_poi_no">No point of interest</string>
    <string name="attribute_moving_target_yes">Moving target</string>
    <string name="attribute_moving_target_no">No moving target</string>
    <string name="attribute_webcam_yes">Webcam</string>
    <string name="attribute_webcam_no">No webcam</string>
    <string name="attribute_inside_yes">Within enclosed rooms (caves, buildings etc.)</string>
    <string name="attribute_inside_no">Not within enclosed rooms</string>
    <string name="attribute_in_water_yes">In the water</string>
    <string name="attribute_in_water_no">Not in the water</string>
    <string name="attribute_no_gps_yes">Without GPS (letterboxes, compass juggling, …)</string>
    <string name="attribute_no_gps_no">With GPS</string>
    <string name="attribute_overnight_yes">Overnight stay necessary</string>
    <string name="attribute_overnight_no">No overnight stay necessary</string>
    <string name="attribute_specific_times_yes">Only available at specified times</string>
    <string name="attribute_specific_times_no">Not only available at specified times</string>
    <string name="attribute_day_yes">by day only</string>
    <string name="attribute_day_no">Not only by day</string>
    <string name="attribute_tide_yes">Tide</string>
    <string name="attribute_tide_no">No tide</string>
    <string name="attribute_all_seasons_yes">All seasons</string>
    <string name="attribute_all_seasons_no">Not all seasons</string>
    <string name="attribute_breeding_yes">Breeding season / protected nature</string>
    <string name="attribute_breeding_no">No breeding season / protected nature</string>
    <string name="attribute_snow_proof_yes">Snow-proof hiding place</string>
    <string name="attribute_snow_proof_no">No snow-proof hiding place</string>
    <string name="attribute_compass_yes">Compass</string>
    <string name="attribute_compass_no">No compass</string>
    <string name="attribute_cave_yes">Cave equipment</string>
    <string name="attribute_cave_no">No cave equipment</string>
    <string name="attribute_aircraft_yes">Aircraft</string>
    <string name="attribute_aircraft_no">No aircraft</string>
    <string name="attribute_investigation_yes">Investigation</string>
    <string name="attribute_investigation_no">No investigation</string>
    <string name="attribute_puzzle_yes">Puzzle / Mystery</string>
    <string name="attribute_puzzle_no">No puzzle / mystery</string>
    <string name="attribute_arithmetic_yes">Arithmetic problem</string>
    <string name="attribute_arithmetic_no">No arithmetic problem</string>
    <string name="attribute_other_cache_yes">Other cache type</string>
    <string name="attribute_other_cache_no">No other cache type</string>
    <string name="attribute_ask_owner_yes">Ask owner for start conditions</string>
    <string name="attribute_ask_owner_no">Don\'t ask owner for start conditions</string>
    <string name="attribute_unknown_yes">Unknown attribute present</string>
    <string name="attribute_unknown_no">No unknown attribute present</string>
    <string name="attribute_geotour_yes">Part of GeoTour</string>
    <string name="attribute_geotour_no">Not part of GeoTour</string>
    <string name="attribute_kids_2_yes">Take your children</string>
    <string name="attribute_kids_2_no">Do not take your children</string>
    <string name="attribute_historic_site_yes">Historic site</string>
    <string name="attribute_historic_site_no">No historic site</string>
    <string name="attribute_magnetic_yes">Magnetic cache</string>
    <string name="attribute_magnetic_no">No magnetic cache</string>
    <string name="attribute_usb_cache_yes">Dead drop USB cache</string>
    <string name="attribute_usb_cache_no">No dead drop USB cache</string>
    <string name="attribute_shovel_yes">You may need a shovel</string>
    <string name="attribute_shovel_no">You don\'t need a shovel</string>
    <string name="attribute_specific_access_yes">Available at specified hours (may require access fee)</string>
    <string name="attribute_specific_access_no">Available at all times</string>
    <string name="attribute_pedestrian_only_yes">Access only by walk</string>
    <string name="attribute_pedestrian_only_no">Access not only by walk</string>
    <string name="attribute_nature_cache_yes">Hidden in natural surroundings (forests, mountains, etc.)</string>
    <string name="attribute_nature_cache_no">Not hidden in natural surroundings</string>
    <string name="attribute_byop_yes">Take something to write</string>
    <string name="attribute_byop_no">Own pencil not necessary</string>
    <string name="attribute_safari_cache_yes">Reverse cache</string>
    <string name="attribute_safari_cache_no">No reverse cache</string>
    <string name="attribute_quick_cache_yes">Quick cache</string>
    <string name="attribute_quick_cache_no">Not a quick cache</string>
    <string name="attribute_wherigo_yes">Wherigo cache</string>
    <string name="attribute_wherigo_no">No Wherigo cache</string>
    <string name="attribute_audio_cache_yes">Description contains an audio file</string>
    <string name="attribute_audio_cache_no">Description doesn\'t contain an audio file</string>
    <string name="attribute_geohotel_yes">GeoHotel cache</string>
    <string name="attribute_geohotel_no">No GeoHotel cache</string>
    <string name="attribute_survey_marker_yes">Near a Survey Marker</string>
    <string name="attribute_survey_marker_no">Not near a Survey Marker</string>
    <string name="attribute_offset_cache_yes">Offset cache</string>
    <string name="attribute_offset_cache_no">No offset cache</string>

    <!-- next things -->
    <string name="quote">To make geocaching easier, to make users lazier.</string>
    <string name="powered_by">carnero</string>
    <!-- Note: Links here are just for appearance. See AboutActivity to make changes -->
    <string name="support_title">Support</string>
    <string name="website_title">Website</string>
    <string name="facebook_title">Facebook</string>
    <string name="facebook_link"><a href="">c:geo page</a></string>
    <string name="twitter_title">Twitter</string>
    <string name="market_title">Google Play</string>
    <string name="market_link"><a href="">c:geo on Google Play</a></string>
    <string name="about_twitter">Should <b>c:geo</b> publish a new status on Twitter every time you log a cache?</string>
    <string name="faq_title">FAQ</string>
    
    <!-- status (used via string based resource loading) -->
    <string name="status_new_release" tools:ignore="UnusedResources">New release available.\nClick to install.</string>
    <string name="status_new_nightly" tools:ignore="UnusedResources">New nightly build available.\nClick to install.</string>
    <string name="status_new_rc" tools:ignore="UnusedResources">New release candidate available.\nClick to install.</string>
    <string name="status_geocaching_change" tools:ignore="UnusedResources">Recent changes on geocaching.com broke c:geo.\nWe are working on it, check again soon.</string>
    <string name="status_geocaching_livemap" tools:ignore="UnusedResources">Recent changes on geocaching.com broke the live map feature.\nWe are working on it, check again soon.</string>
    <string name="status_geocaching_maintenance" tools:ignore="UnusedResources">geocaching.com is under maintenance.\nYou might run into various issues.</string>
    <string name="status_closeout_warning" tools:ignore="UnusedResources">You appear to be using a version of Android older than 2.1. Future releases of c:geo might no longer be available for your device.</string>

    <!-- text-to-speech for compass view -->
    <string name="tts_service">Talking compass</string>
    <string name="tts_start">Start talking</string>
    <string name="tts_stop">Stop talking</string>
    <string name="tts_started">Started speech</string>
    <string name="tts_stopped">Stopped speech</string>
    <string name="err_tts_lang_not_supported">The current language is not supported by text-to-speech.</string>
    <string name="tts_one_kilometer">one kilometer</string>
    <plurals name="tts_kilometers">
        <item quantity="one">%s kilometer</item>
        <item quantity="other">%s kilometers</item>
    </plurals>
    <string name="tts_one_meter">one meter</string>
    <plurals name="tts_meters">
        <item quantity="one">%s meter</item>
        <item quantity="other">%s meters</item>
    </plurals>
    <string name="tts_one_mile">one mile</string>
    <plurals name="tts_miles">
        <item quantity="one">%s mile</item>
        <item quantity="other">%s miles</item>
    </plurals>
    <string name="tts_one_foot">one foot</string>
    <plurals name="tts_feet">
        <item quantity="one">%s foot</item>
        <item quantity="other">%s feet</item>
    </plurals>
    <string name="tts_one_oclock">one o\'clock</string>
    <string name="tts_oclock">%s o\'clock</string>

    <!-- various -->
    <string name="clipboard_copy_ok">Copied to clipboard</string>

    <plurals name="days_ago">
        <item quantity="one">yesterday</item>
        <item quantity="other">%d days ago</item>
    </plurals>
    <plurals name="favorite_points">
        <item quantity="one">%s favorite</item>
        <item quantity="other">%s favorites</item>
    </plurals>
    
    <string name="more_than_percent_favorite_points">> %d%% favorites</string>
    
    <!-- shortcuts -->
    <string name="cgeo_shortcut">c:geo shortcut</string>
    <string name="create_shortcut">Create shortcut</string>
    <string name="send">Send</string>
    
    <string name="showcase_logcache_title">Sending the log</string>
    <string name="showcase_logcache_text">Remember, many commands are now in the title bar. There you find the button for sending the finished log.</string>
    <string name="showcase_main_title">New menus</string>
    <string name="showcase_main_text">c:geo now places menu items in the title bar like other modern apps. Some items are hidden behind the dotted symbol. Long press a button to see its description.</string>
    <string name="showcase_cachelist_title">Switching lists</string>
    <string name="showcase_cachelist_text">You can switch between your geocache lists by clicking the title of the list.</string>
    <string name="confirm_log_title">Unusual log type</string>
    <string name="confirm_log_message">You want to log \'%s\'. Are you sure?</string>
</resources>