aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/values/strings.xml
blob: cd0626fa82f19d5258421a6702fd28d6dc026f7a (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
<?xml version="1.0" encoding="UTF-8"?>
<resources>
  <string name="app_name">c:geo</string>
  <string name="app_name_compass">c:geo compass</string>

  <!-- basics -->
  <string name="cache">Cache</string>
  <string name="detail">Detail</string>
  <string name="search">Search</string>
  <string name="settings">Settings</string>
  <string name="helpers">What to install</string>
  <string name="about">About c:geo</string>
  <string name="helper">Do you want to learn about <b>c:geo</b>?\nCheck our easy to read manual.</string>
  <string name="latitude">Latitude</string>
  <string name="longitude">Longitude</string>

  <!-- actionbar -->
  <string name="action_bar_share_title">Share link to cache</string>

  <!-- caches -->
  <string name="all">All caches</string>
  <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="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</string>
  <string name="ape">Project ape cache</string>
  <string name="gchq">Groundspeak hq</string>
  <string name="gps">GPS cache exhibit</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>

  <!-- waypoints -->
  <string name="wp_final">Final location</string>
  <string name="wp_stage">Stage of multi-cache</string>
  <string name="wp_puzzle">Question for answer</string>
  <string name="wp_pkg">Parking area</string>
  <string name="wp_trailhead">Trailhead</string>
  <string name="wp_waypoint">Reference point</string>

  <!-- logs -->
  <string name="log_found">Found</string>
  <string name="log_dnf">Did not find</string>
  <string name="log_note">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_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_needs_archived">Needs archived</string>
  <string name="log_discovered">Discovered</string>
  <string name="log_reviewed">Reviewer note</string>
  <string name="log_taken">Visit</string>
  <string name="log_tb_nothing">Do nothing</string>
  <string name="log_tb_visit">Visit</string>
  <string name="log_tb_drop">Drop here</string>
  <string name="log_tb_changeall">Change all</string>
  <string name="log_save">Save</string>
  <string name="log_saving">Saving log…</string>
  <string name="log_clear">Clear</string>
  <string name="log_post">Post log</string>
  <string name="log_post_rate">Post log &amp; rate</string>
  <string name="log_post_no_rate">Post log &amp; do not rate</string>
  <string name="log_post_not_possible">Logging not possible</string>
  <string name="log_add">Add</string>
  <string name="log_date">Date</string>
  <string name="log_time">Time</string>
  <string name="log_date_time">Date &amp; time</string>
  <string name="log_rating">Rating</string>
  <string name="log_no_rating">No rating</string>
  <string name="log_stars_1">1 star</string>
  <string name="log_stars_15">1.5 stars</string>
  <string name="log_stars_2">2 stars</string>
  <string name="log_stars_25">2.5 stars</string>
  <string name="log_stars_3">3 stars</string>
  <string name="log_stars_35">3.5 stars</string>
  <string name="log_stars_4">4 stars</string>
  <string name="log_stars_45">4.5 stars</string>
  <string name="log_stars_5">5 stars</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>

  <!-- errors, warnings, info toasts -->
  <string name="err_none">Ok</string>
  <string name="err_start">Communication not started</string>
  <string name="err_parse">Failed login page parsing</string>
  <string name="err_server">Failed connection to Geocaching.com (server or connection down?)</string>
  <string name="err_login">No login information stored</string>
  <string name="err_login_failed">Sorry, c:geo can\'t login.</string>
  <string name="err_login_failed_toast">Sorry, c:geo can\'t login. c:geo works in offline mode. Check your login in settings or enable internet connection.</string>
  <string name="err_unknown">Unknown error</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">Wrong login informations</string>
  <string name="err_maintenance">Geocaching.com site is under maintenance, try again later. c:geo works in offline mode.</string>
  <string name="err_license">User has not agreed to Geocaching.com license agreement, so c:geo can\'t load caches coordinates.</string>
  <string name="err_unpublished">The requested cache was unpublished</string>
  <string name="err_premium_only">Cache is only available to Geocaching.com premium members</string>
  <string name="err_store">Sorry, c:geo can\'t store cache.</string>
  <string name="err_drop">Sorry, c:geo can\'t drop cache.</string>
  <string name="err_detail_open">Sorry, c:geo can\'t open geocache details.</string>
  <string name="err_detail_cache">Sorry, c:geo can\'t display geocache you want. Is it really geocache?</string>
  <string name="err_detail_cache_find">Sorry, c:geo can\'t find geocache</string>
  <string name="err_detail_cache_find_some">Sorry, c:geo can\'t find that geocache.</string>
  <string name="err_detail_cache_find_any">Sorry, c:geo can\'t find any geocache.</string>
  <string name="err_detail_cache_find_next">Sorry, c:geo can\'t find next geocaches.</string>
  <string name="err_detail_cache_forgot">Sorry, c:geo forgot which geocache you want.</string>
  <string name="err_detail_cache_forgot_visit">Sorry, c:geo forgot which cache you visited.</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">Sorry, 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_navigation_no">c:geo can\'t find any supported navigation.</string>
  <string name="err_application_no">c:geo can\'t find any suitable application.</string>
  <string name="err_auth_initialize">Sorry, 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 has not enough information to log visit. Please, do it from full cache details.</string>
  <string name="err_init_cleared">Sorry, c:geo can\'t clear login information.</string>
  <string name="err_download_fail">Sorry, c:geo failed to download caches because of </string>
  <string name="err_list_load_fail">Sorry, c:geo failed to load cache list.</string>
  <string name="err_store_failed">Sorry, c:geo can\'t store geocache.</string>
  <string name="err_refresh_failed">Sorry, c:geo can\'t refresh geocache.</string>
  <string name="err_drop_failed">Sorry, c:geo can\'t drop geocache.</string>
  <string name="err_dwld_details_failed">Sorry, c:geo failed to download cache details.</string>
  <string name="err_dwld_details_failed_reason">Sorry, c:geo failed to download cache details because of</string>
  <string name="err_load_descr_failed">Sorry, 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_tb_display">Sorry, c:geo can\'t display trackable you want. Is it really trackable?</string>
  <string name="err_tb_details_open">Sorry, c:geo can\'t open trackable details.</string>
  <string name="err_tb_details_download">Sorry, c:geo failed to download trackable details because of</string>
  <string name="err_tb_forgot">Sorry, c:geo forgot which trackable you want.</string>
  <string name="err_tb_forgot_saw">Sorry, c:geo forgot which trackable you saw.</string>
  <string name="err_tb_find">Sorry, c:geo can\'t find trackable</string>
  <string name="err_tb_find_that">Sorry, c:geo can\'t find that trackable.</string>
  <string name="err_cache_inventory_load_fail">Sorry, c:geo failed to load cache inventory.</string>

  <string name="err_waypoint_cache_unknown">Sorry, c:geo doesn\'t know to which cache you want to add waypoint.</string>
  <string name="err_waypoint_unknown">Sorry, c:geo forgot what waypoint you want to display.</string>
  <string name="err_waypoint_add_failed">Sorry, c:geo failed to add your waypoint.</string>
  <string name="err_waypoint_load_failed">Sorry, c:geo failed to load waypoint.</string>
  <string name="err_waypoint_delete_failed">Sorry, c:geo can\'t delete waypoint.</string>
  <string name="err_point_unknown_position">Sorry, 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 or longitude or distance and bearing. You can also fill all four fields.</string>
  <string name="err_point_curr_position_unavailable">c:geo still doesn\'t have current coordinates. Please, wait a while…</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 with or without units.</string>
  <string name="err_point_location_error">Sorry, c:geo can\'t get location of waypoint.</string>

  <string name="err_log_load_data">Sorry, c:geo can\'t load data required to log visit.</string>
  <string name="err_log_load_data_again">Sorry, 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_failed_server">Sorry, c:geo failed to post log because server is not responding.</string>
  <string name="err_log_post_failed">It seems that your log was not posted. Please check it on Geocaching.com.</string>

  <string name="err_search_address_no_match">Sorry, c:geo found no matching place.</string>
  <string name="err_search_address_forgot">Sorry, c:geo forgot address you try to find.</string>
  <string name="err_search_address">Searching for places</string>
  <string name="err_parse_lat">Sorry, c:geo can\'t parse latitude.</string>
  <string name="err_parse_lon">Sorry, c:geo can\'t parse longitude.</string>
  <string name="err_parse_dist">Sorry, c:geo can\'t parse distance.</string>
  <string name="err_parse_lat_lon">Sorry, c:geo can\'t parse latitude or longitude.</string>
  <string name="err_invalid_lat_lon">Sorry, invalid latitude or longitude.</string>

  <string name="err_fieldnotes_export_failed">Export of Field Notes failed.</string>

  <string name="warn_save_nothing">There is nothing to be saved.</string>
  <string name="warn_no_cache_coord">There is no cache 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">Fill address or location name. For example use street address \"Radlicka 100, Prague, Czech Republic\", city name \"Berlin\" or just name of something like \"Yellowstone Park\".</string>
  <string name="warn_search_help_gccode">Fill code of geocache. For example \"GC1VCAZ\".</string>
  <string name="warn_search_help_keyword">Fill some word that is supposed to be somewhere in cache name you are trying to find.</string>
  <string name="warn_search_help_user">Fill name of user at Geocaching.com.</string>
  <string name="warn_search_help_tb">Fill code of trackable. For example \"TB29QMZ\".</string>
  <string name="warn_log_text_fill">Please, fill some log text.</string>
  <string name="warn_load_images">Sorry, c:geo failed to load images.</string>


  <string name="info_log_posted">c:geo successfully posted log.</string>
  <string name="info_log_saved">c:geo successfully saved 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_fieldnotes_exported_to">Field Notes exported to</string>

  <!-- location service -->
  <string name="loc_last">Last known</string>
  <string name="loc_net">Network</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>

  <!-- 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 geo code</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">Any destination</string>
  <string name="unknown_scan">Didn\'t find geo code in scan result.</string>

  <!-- caches -->
  <string name="caches_no_cache">There is no cache</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>
  <string name="caches_eta_mins"> minutes</string>
  <string name="caches_eta_min"> minute</string>
  <string name="caches_store_offline">Store for Offline</string>
  <string name="caches_store_selected">Store selected</string>
  <string name="caches_stored">Stored</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_title">Sort by</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">popularity</string>
  <string name="caches_sort_name">name</string>
  <string name="caches_sort_gccode">GC-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">date</string>
  <string name="caches_sort_finds">finds</string>
  <string name="caches_sort_state">state</string>
  <string name="caches_select">Select from list</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_drop_selected">Drop selected</string>
  <string name="caches_drop_selected_ask">Do you want to remove selected caches from device?</string>
  <string name="caches_drop_all">Drop all</string>
  <string name="caches_drop_all_ask">Do you want to remove all caches from current list?</string>
  <string name="caches_drop_stored">Drop stored</string>
  <string name="caches_drop_progress">Removing caches</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_recaptcha_title">reCAPTCHA</string>
  <string name="caches_recaptcha_explanation">Please, write text from image. It\'s important to download coordinates of caches. It\'s optional and can be switched off 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_size_title">Choose size</string>
  <string name="caches_filter_type_title">Choose type</string>
  <string name="caches_exporting_fieldnote">Exporting as Field Notes…</string>
  <string name="caches_removing_from_history">Removing from history…</string>

  <!-- caches lists -->
  <string name="list_menu">List</string>
  <string name="list_menu_create">Create new list</string>
  <string name="list_menu_drop">Drop current list</string>
  <string name="list_menu_change">Change list</string>
  <string name="list_menu_rename">Rename current list</string>
  <string name="list_title">Pick a list</string>
  <string name="list_inbox">Stored</string>
  <string name="list_wpt">Waypoints</string>
  <string name="list_dialog_create_title">New list</string>
  <string name="list_dialog_create">Create</string>
  <string name="list_dialog_cancel">Cancel</string>
  <string name="list_dialog_create_ok">New list was created</string>
  <string name="list_dialog_create_err">c:geo failed to create new list</string>
  <string name="list_dialog_remove_title">Remove list</string>
  <string name="list_dialog_remove_description">Do you want to remove current list of caches? 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">List was removed</string>
  <string name="list_dialog_remove_err">c:geo failed to remove current list</string>
  <string name="list_dialog_rename_title">Rename list</string>
  <string name="list_dialog_rename">Rename</string>

  <!-- about -->
  <string name="about_changelog">Changelog</string>
  <string name="about_donate">Donate</string>
  <string name="about_detail">Details</string>
  <string name="about_donation_less">Donate\nless</string>
  <string name="about_donation_more">Donate\ndevelopment</string>
  <string name="about_contributors">Contributors</string>

  <!-- init -->
  <string name="init_geocaching">Geocaching.com</string>
  <string name="init_gcvote">GCvote.com</string>
  <string name="init_go4cache">Go 4 Cache</string>
  <string name="init_twitter">Twitter</string>
  <string name="init_username">Username</string>
  <string name="init_password">Password</string>
  <string name="init_passvote">Password</string>
  <string name="init_login">Check login &amp; set date format</string>
  <string name="init_login_popup">Login</string>
  <string name="init_login_popup_working">Logging into Geocaching.com…</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 because of </string>
  <string name="init_go4cache_connect">Connect to Go 4 Cache</string>
  <string name="init_twitter_authorize">Authorize c:geo</string>
  <string name="init_twitter_publish">Publish status when cache found</string>
  <string name="init_signature">Signature</string>
  <string name="init_signature_help_button">Help</string>
  <string name="init_signature_help_title">Signature tips and tricks</string>
  <string name="init_signature_help_text">Write your signature to use in log text.\nSpecial strings that can be used are: [DATE] , [TIME], [DATETIME], [USER] &amp; [NUMBER].\nThese will be expanded when the signature is inserted.</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_details">Cache details</string>
  <string name="init_ratingwanted">Load cache rating from GCvote.com</string>
  <string name="init_elevationwanted">Load cache elevation data</string>
  <string name="init_autoload">Auto-loading long description</string>
  <string name="init_other">Other options</string>
  <string name="init_skin">Light skin\n(needs restart of c:geo)</string>
  <string name="init_address">Show address on mainscreen</string>
  <string name="init_captcha">Show CAPTCHA if necessary</string>
  <string name="init_useenglish">Use English inside c:geo\n(restart needed)</string>
  <string name="init_exclude">Exclude own and found caches</string>
  <string name="init_showwaypoints">Show waypoints in live map</string>
  <string name="init_showwaypoint_description">Level below which waypoints are shown in live map.</string>
  <string name="init_disabled">Exclude disabled caches</string>
  <string name="init_offline">Store static maps for offline use</string>
  <string name="init_save_log_img">Save Images from Logs</string>
  <string name="init_units">Use miles/feet\n(imperial units)</string>
  <string name="init_nav">Use Google Navigation</string>
  <string name="init_log_offline">When logging, always log offline (don\'t show online log screen when logging, don\'t send the log online)</string>
  <string name="init_livelist">Show direction to caches in its list</string>
  <string name="init_browser">Identify c:geo as standard browser</string>
  <string name="init_altitude">Altitude correction</string>
  <string name="init_altitude_description">If GPS is giving wrong altitude to you, you can correct with a positive or negative number. Correction is always in metres.</string>
  <string name="init_clear">Clear login</string>
  <string name="init_cleared">c:geo cleared login information.</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 this option will backup/restore the database containing caches and waypoints, not settings. Your login information (passwords) will not leave this application.</string>
  <string name="init_backup_restore">Restore</string>
  <string name="init_backup_success">Database of c:geo was successfully copied to the file</string>
  <string name="init_backup_failed">Backup of database of c:geo failed.</string>
  <string name="init_backup_unnecessary">Database is empty, no backup necessary.</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 backup.</string>
  <string name="init_mapsources">Map Sources</string>
  <string name="init_mapsources_description">Here you can select the source for your maps. As an alternative to Google maps various OpenStreetMap styles are available and even offline map files (see <a href="http://code.google.com/p/mapsforge/">http://code.google.com/p/mapsforge/</a> for details).</string>
  <string name="init_mapsource_select">Select map source</string>
  <string name="init_select_mapfile"></string>
  <string name="init_trackautovisit">Set trackables automatically to \"visit\"</string>
  <string name="init_sigautoinsert">Insert signature automatically</string>
  <string name="init_loaddirectionimg">Load direction-image if necessary</string>

  <!-- map sources -->
  <string-array name="map_sources">
    <item>@string/map_source_google_map</item>
    <item>@string/map_source_google_satellite</item>
    <item>@string/map_source_osm_mapnik</item>
    <item>@string/map_source_osm_osmarender</item>
    <item>@string/map_source_osm_cyclemap</item>
    <item>@string/map_source_osm_offline</item>
  </string-array>
  <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_osmarender">OSM: Osmarender</string>
  <string name="map_source_osm_cyclemap">OSM: Cyclemap</string>
  <string name="map_source_osm_offline">OSM: Offline</string>

  <string name="init_sendToCgeo">Send to c:geo</string>
  <string name="init_sendToCgeo_name">Your device name:</string>
  <string name="init_sendToCgeo_description">Send to c:geo allows you to recieve caches directly from the geocaching site using a special plugin for Firefox or Chrome. Before registration please read <a href="http://send2.cgeo.org/">http://send2.cgeo.org/</a>. You only need to register if you will use send2cgeo. C:geo will also work without registering your device.</string>
  <string name="init_sendToCgeo_register">Request registration</string>
  <string name="init_sendToCgeo_registering">Registering your device for "Send to c:geo"</string>
  <string name="init_sendToCgeo_register_ok">Registration successful. PIN code is ####. Use it on c:geo website to add 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 -->
  <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_pin_hint">PIN assigned by Twitter</string>
  <string name="auth_finish">Finish</string>
  <string name="auth_dialog_wait">Waiting for Twitter…</string>
  <string name="auth_dialog_pin_title">PIN code</string>
  <string name="auth_dialog_pin_message">Please type in PIN code provided by Twitter website. It\'s mandatory to complete authorization.</string>
  <string name="auth_dialog_completed">c:geo is now authorized to post on Twitter.</string>

  <!-- cache -->
  <string name="cache_count_no">No cache</string>
  <string name="cache_count_one">One cache</string>
  <string name="cache_count_more">Caches</string>
  <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 ready\nfor offline use</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_attributes_no_icons">(refresh cache to show attribute icons)</string>
  <string name="cache_inventory">Inventory</string>
  <string name="cache_inventory_loading">loading cache inventory…</string>
  <string name="cache_log_offline">Offline log</string>
  <string name="cache_log_images_loading">Loading log images …</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_description">Description</string>
  <string name="cache_description_long">Long description</string>
  <string name="cache_watchlist">Watchlist</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_waypoints">Waypoints</string>
  <string name="cache_waypoints_add">Add waypoint</string>
  <string name="cache_hint">Hint</string>
  <string name="cache_logs">Logbook</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_elevation">Loading elevation data</string>
  <string name="cache_dialog_loading_details_status_render">Render view</string>
  <string name="cache_dialog_loading_description">Loading cache description…</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_menu_navigate">Navigate</string>
  <string name="cache_menu_compass">Compass</string>
  <string name="cache_menu_tbt">Turn-by-turn</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_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">Log visit offline</string>
  <string name="cache_menu_spoilers">Spoiler images</string>
  <string name="cache_menu_around">Caches around</string>
  <string name="cache_menu_event">Add to calendar</string>
  <string name="cache_menu_details">Details</string>
  <string name="cache_menu_share">Share cache</string>
  <string name="cache_menu_move_list">Move to other list</string>
  <string name="cache_menu_gcc">GCC</string>
  <string name="cache_menu_whereyougo">WhereYouGo</string>
  <string name="cache_menu_oruxmaps">OruxMaps</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_status_archived">Archived</string>
  <string name="cache_status_disabled">Disabled</string>
  <string name="cache_status_premium">Premium members only</string>
  <string name="cache_geocode">GC-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_rating_of">of</string>
  <string name="cache_favourite">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_calendars">Select calendar</string>
  <string name="cache_spoiler_images_title">Spoiler images</string>
  <string name="cache_spoiler_images_loading">Loading 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_export_fieldnote">Export as Field Notes</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>
      
  <!-- file list base -->
  <string name="file_searching_in">Searching for files\nin</string>
  <string name="file_list_no_files">Sorry, c:geo found no appropriate files.</string>
  <string name="file_searching">Searching for matching files</string>
  <string name="file_title_searching">Searching</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_storing">Writing caches to database</string>
  <string name="gpx_import_caches_imported">caches imported</string>
  <string name="gpx_import_title">Import GPX</string>
  <string name="gpx_import_title_reading_file">Reading file</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">File format not ok</string>
  <string name="gpx_import_error_unexpected">Unexpected error</string>
  <string name="gpx_import_confirm">Do you want to import the GPX file into c:geo?</string>
  <string name="gpx_import_canceled">GPX import was canceled</string>      

  <!-- map file select -->
  <string name="map_file_select_title">Select map file</string>

  <!--  import -->
  <string name="import_title">Import…</string>
  <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>

  <!-- event -->
  <string name="event_success">Event cache added to calendar</string>
  <string name="event_fail">Failed to add event cache to calendar</string>

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

  <!-- waypoint -->
  <string name="waypoint">Waypoint</string>
  <string name="waypoint_title">Waypoint</string>
  <string name="waypoint_custom">Custom</string>
  <string name="waypoint_my_coordinates">My coordinates</string>
  <string name="waypoint_bearing">Bearing</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_save">Save</string>
  <string name="waypoint_loading">Loading waypoint…</string>
  <string name="waypoint_unknown_coordinates">Coordinates unknown</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-array name="waypoint_coordinate_formats">
    <item>@string/waypoint_coordinate_formats_plain</item>
    <item>DDD.DDDDD°</item>
    <item>DDD°MM.MMM\'</item>
    <item>DDD°MM\'SS.SSS\"</item>
  </string-array>
  <string name="waypoint_coordinate_formats_plain">Plain</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_trail_show">Show trail</string>
  <string name="map_trail_hide">Hide trail</string>
  <string name="map_circles_show">Show circles</string>
  <string name="map_circles_hide">Hide circles</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 able to download only partial data, coordinates of caches could be inaccurate.</string>
  <string name="map_as_list">Show as list</string>

  <!-- search -->
  <string name="search_bar_hint">Search for caches</string>
  <string name="search_bar_desc">Caches (GC-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_gc">GC-code</string>
  <string name="search_gc_button">Search by GC-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_some_destination">Some 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>

  <!-- 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 the owner</string>
  <string name="trackable_origin">Origin</string>
  <string name="trackable_unknown">Unknown</string>
  <string name="trackable_released">Released</string>
  <string name="trackable_distance">Travelled</string>
  <string name="trackable_touch">Touch</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>

  <!-- navigation -->
  <string name="navigation">Navigation</string>
  <string name="compass_title">Compass</string>
  <string name="use_gps">Use GPS</string>
  <string name="use_compass">Use compass</string>
  <string name="destination_select">Select destination</string>
  <string name="destination_set">Set destination</string>

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

  <!-- helpers -->
  <string name="helper_manual_title">Manual</string>
  <string name="helper_manual_description">Comprehensive manual for c:geo that contains description of all possibilities of this application (even hidden ones).</string>
  <string name="helper_locus_title">Locus</string>
  <string name="helper_locus_description">Simple usable application showing Online maps and allowing to download them directly into Offline mode (raster maps only). Also support track recording, POI handling and many other useful functions.</string>
  <string name="helper_gpsstatus_title">GPS Status</string>
  <string name="helper_gpsstatus_description">You can use radar from this application 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 external GPS device to get better reception, more precise location and can spare battery of your phone.</string>

  <!--  attributes (permissions -> allowed, not allowed) -->
  <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>

  <!--  attributes (conditions -> yes, no) -->
  <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">No 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">No lost and found tour</string>
  <string name="attribute_partnership_yes">Partnership cache</string>
  <string name="attribute_partnership_no">No partnership cache</string>

  <!--  attributes (equipment -> required, not required) -->
  <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>

  <!--  attributes (hazards -> present, not present) -->
  <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">No dangerous area</string>
  <string name="attribute_thorn_yes">Thorns</string>
  <string name="attribute_thorn_no">No thorns</string>

  <!--  attributes (facilities -> yes, no) -->
  <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>

  <!-- next things -->
  <string name="legal_note">To use services of Geocaching.com, terms and conditions of <a href="http://www.geocaching.com/about/termsofuse.aspx">Groundspeak disclaimer</a> have to be agreed.</string>
  <string name="quote">To make geocaching easier, to make users lazier.</string>
  <string name="powered_by">carnero</string>
  <string name="author">Author: <a href="http://carnero.cc/">carnero</a></string>
  <string name="support">Support: <a href="mailto:support@cgeo.org">support@cgeo.org</a></string>
  <string name="website">Website: <a href="http://cgeo.org/">cgeo.org</a></string>
  <string name="facebook">Facebook: <a href="http://www.facebook.com/pages/cgeo/297269860090">c:geo page</a></string>
  <string name="twitter">Twitter: <a href="http://twitter.com/android_gc">@android_GC</a></string>
  <string name="nutshellmanual">Manual: <a href="http://manual.cgeo.org/">c:geo in a Nutshell</a></string>
  <string name="about_go4cache">The service <b>Go 4 Cache</b> shows other geocachers on the map (in <b>c:geo</b> or in browser) in real time. It can show, for example, what cache they\'re searching for. By connecting to <b>Go 4 Cache</b> <b>c:geo</b> is allowed to publish current location when geocaching (only while <b>c:geo</b> is running).</string>
  <string name="about_twitter">Should <b>c:geo</b> publish new status on Twitter every time a cache is logged?</string>
  <string name="about_auth_1">The following process allows <b>c:geo</b> to access Twitter - if agreed.</string>
  <string name="about_auth_2">Click on \"authorize c:geo\" button will start the process. This process will open up a web browser with Twitter page. Login on this page and allow <b>c:geo</b> to access your account. If accepted, Twitter will show up a numeric PIN code. This PIN must be pasted into <b>c:geo</b> and be confirmed. That\'s all.</string>

  <!-- ====== please, do not translate (and include in translation) things below this line ====== -->

  <!-- contributors -->
  <string name="contributors">\n
    · <a href="http://carnero.cc/">carnero</a> as the father of c:geo\n
    \n
    · 0xErnie (localization DE)\n
    · <a href="mailto:bazsy@freemail.hu">Balazs Szabo (Bazsy1983)</a> (loc. HU)\n
    · Bananeweizen (code, loc. DE)\n
    · blafoo (code)\n
    · Bonemaro (tester)\n
    · BudBundi (localization DE, tester)\n
    · Charles (localization FR)\n
    · Denny (localization DA)\n
    · Eisbehr (code, open source project leader)\n
    · F. Coello (localization ES)\n
    · Filipe C. (code)\n
    · <a href="http://www.hunterthornsberry.com">Hunter275</a> (tester)\n
    · <a href="http://iirojappinen.com/">Iiro Jäppinen</a> (graphic)\n
    · inkantis (localization PL)\n
    · <a href="http://www.jaytech.cz/">Jan Žatecký</a> (graphic)\n
    · <a href="http://joachim-wilke.de/">JoWi24</a> (code)\n
    · <a href="http://github.com/koem">Karsten Priegnitz</a> (code, artwork computation)\n
    · Lineflyer (tester)\n
    · Ludovic Valente (localization FR)\n
    · MichielK (code, loc. NL)\n
    · mucek4 (code, open source project leader)\n
    · ncorreia (code, localization PT)\n
    · Pascal (localization NL)\n
    · Pavol Babinčák (code, loc. SK)\n
    · Peter (localization HU)\n
    · Rainer S. (code)\n
    · Ray (code, loc. JA)\n
    · <a href="http://seromenho.com/">Ricardo Seromenho</a> (localization PT)\n
    · <a href="http://www.sammyshp.de/">SammysHP</a> (code, localization DE)\n
    · <a href="http://www.rfc1149.net/sam.html">Samuel Tardieu</a> (code, localization FR)\n
    · serenity (localization FR)\n
    · Shan, a.k.a. ShakurNO (localization NO)\n
    · Shizo87 (tester)\n
    · stephanme/Geoteufel (code)\n
    · thiasB (code, loc. DE EN)\n
    · YraFyra (code, loc. SV)\n
    · zenobios (code, loc. DE EN)\n
    \n
    · <a href="http://code.google.com/p/mapsforge/">Mapsforge</a> (OSM-rendering)\n
    · <a href="http://thenounproject.com/">The Noun Project</a> (basis for attribute icons)\n
    · <a href="http://commons.apache.org/">The Apache Commons Project</a>\n
    · <a href="http://androidicons.com/">Android Icons</a> (<a href="https://creativecommons.org/licenses/by/3.0/">CC-BY 3.0</a>)\n
  </string>

  <!-- changelog -->
  <string name="changelog">\n
    <b>New release</b>\n
\n\n
    <b>08.11.2011</b>\n
    · fix: adaption to GC.com changes\n
    \n\n
    <b>31.10.2011</b>\n
    · fix: Store for offline from Live map\n
    \n\n
    <b>30.10.2011</b>\n
    · new: cleanup the cgeo private cache directory when caches are removed from database\n
    · new: display user avatar when checking login/password from geocaching.com\n
    · new: support Geocaching Australia caches (GAxxxx, TPxxxx)\n
    · new: import GPX from mail\n
    · new: support geopeitus.ee caches\n
    · new: verbose cache-loading\n
    · fix: Twitter authorization\n
    · fix: login problems\n
    · fix: Google &amp; OSM maps consistency\n
    · fix: readable cache description (black on black, white on white)\n
    · fix: many other bugs\n
    \n\n
    <b>09.10.2011</b>\n
    · fix: small bugs due to GC.com change\n
    \n\n
    <b>06.10.2011</b>\n
    · new: import waypoint files from pocket query\n
    · new: automatically filter out counter images from cache description\n
    · new: show all the images belonging to a log entry at once\n
    · new: make it possible to display intermediate waypoints on live map\n
    · new: better progress information when importing GPX files\n
    · new: better progress information during backup/restore of database\n
    · new: better French, German, Hungarian, and Slovak translations\n
    · new: better icon for caches needing maintenance\n
    · fix: work again on all devices, it was broken on some Android 1.6 models\n
    · fix: correctly display target on map when using any coordinates mode\n
    · fix: forwarding of OC caches used wrong URL\n
    · fix: better performance when parsing cache description\n
    · fix: performance improvements when importing waypoints\n
    · fix: reclaim bitmap memory earlier to prevent memory exhaustion\n
    · fix: cleaner location names (no more HTML) in cache descriptions\n
    · fix: load descriptions from database only when needed (lower memory consumption)\n
    · fix: one of the coordinates entry mode was using the wrong coordinate when reediting\n
    · fix: latitude and longitude are now localized\n
    · fix: remove redundant fields in the database to reduce used space\n
    · fix: various bug fixes and internal enhancements\n
    \n\n
    <b>24.09.2011</b>\n
    · new: import of LOC files\n
    · new: search for geo code supports OpenCaching.ORG.UK/.PL/.US\n
    · new: restore settings after reinstallation (Android 2.3+)\n
    · new: save the log locally when leaving the log activity\n
    · new: insert signature after the cursor when logging\n
    · fix: various bug fixes\n
    \n\n
    <b>18.09.2011</b>\n
    · fix: Android 3+ compatibility\n
    \n\n
    <b>17.09.2011</b>\n
    · fix: more small fixes\n
    \n\n
    <b>16.09.2011</b>\n
    · fix: many small fixed due to GC.com changes\n
    \n\n
    <b>15.09.2011</b>\n
    · new: sort by state, sort by find count\n
    · new: experimental support for .gpx from opencaching.com\n
    · new: scan QR code to open cache description (Barcode Scanner from Market)\n
    · new: context menu on stored caches button (main screen)\n
    · new: compass immediately shows the right direction\n
    · new: active filters are shown in list mode\n
    · fix: performance of GPX import\n
    · fix: performance of deleting caches from list\n
    · fix: performance of web traffic\n
    · fix: return to list after GPX import\n
    · fix: fill signature when logging offline\n
    · fix: show strikethrough in caches\n
    · fix: no more empty map previews\n
    · fix: send2c:geo authorization\n
    \n\n
    <b>26.08.2011</b>\n
    · new: street view\n
    · new: attribute icons\n
    · new: experimental support for .gpx from opencaching.de\n
    · fix: log-dates\n
    · fix: coordinates input\n
    · fix: nearby list performance update\n
    \n\n
    <b>22.08.2011</b>\n
    · fix: due to GC.com changes c:geo hangs in displaying cache detail\n
    \n\n
    <b>20.08.2011</b>\n
    · fix: Additional adaption to GC.com changes\n
    \n\n
    <b>19.08.2011</b>\n
    · new: Numeric entry for coordinates\n
    · fix: adaption to GC.com changes\n
    \n\n
    <b>15.08.2011</b>\n
    · new: OpenStreetMap support\n
    · new: Send to c:geo from web\n
    · new: Export field notes\n
    · new: Clear history\n
    · fix: A lot of bugs\n
    \n</string>
</resources>