-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
strings.xml
2271 lines (1950 loc) · 156 KB
/
strings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:xliff="http://schemas.android.com/tools">
<string name="default_location_label">Taipei</string>
<string name="default_location_latitude">25.0330</string> <!-- decimal degrees (DD) -->
<string name="default_location_longitude">121.5654</string> <!-- decimal degrees (DD) -->
<string name="default_location_altitude">0</string> <!-- meters -->
<string name="default_timezone">Asia/Taipei</string> <!-- tzid -->
<!-- MAIN ACTIVITY -->
<!-- Action Bar
The text that appears in the overflow menu / menuItem contentDescription.
-->
<string name="configAction_refreshLocation">重新整理</string>
<string name="configAction_addLocation">位置</string>
<string name="configAction_mapLocation">展示地圖</string>
<string name="configAction_mapLocation_chooser">地圖顯示方式</string>
<string name="configAction_mapLocation_noapp">未找到地圖應用</string>
<string name="configAction_showCalendar">日曆</string>
<string name="configAction_setAlarm">設定鬧鐘</string>
<string name="configAction_setTimeZone">設定時區</string>
<string name="configAction_setDate">設定日期</string>
<string name="configAction_viewDate">檢視日期</string>
<string name="configAction_viewDateWith">檢視日期</string>
<string name="configAction_share">分享</string>
<string name="configAction_export">匯出</string>
<string name="configAction_import">匯入</string>
<string name="configAction_info">更多資訊</string>
<string name="configAction_sortBy">按排序</string>
<string name="configAction_sunDialog">太陽位置</string>
<string name="configAction_equinoxDialog">至點/分點</string>
<string name="configAction_worldMap">世界地圖</string>
<string name="configAction_openNavDrawer">開啟導航</string>
<string name="configAction_closeNavDrawer">關閉導航</string>
<string name="configAction_clock">時鐘</string>
<string name="configAction_lightGraphDialog">日光</string>
<string name="configAction_lineGraph">海拔圖</string>
<string name="configAction_seekAltitude">查詢海拔</string> <!-- checkbox label -->
<string name="configAction_search">搜尋</string> <!-- button (contentDescription) -->
<string name="configAction_deselect">清除選擇</string>
<string name="configAction_moon">月亮</string>
<string name="configAction_help">幫助</string>
<string name="configAction_onlineHelp">線上幫助</string>
<string name="configAction_appDetails">應用資訊</string>
<string name="configAction_overflow">更多</string>
<string name="configAction_options">選項</string>
<string name="configAction_settings">設定</string>
<string name="configAction_aboutWidget">關於</string>
<!-- Button: Next/Prev Date
The next/prev button contentDescription (accessibility).
-->
<string name="nextDay">後一天</string>
<string name="prevDay">前一天</string>
<string name="nextYear">下一年</string>
<string name="prevYear">上一年</string>
<!-- Warnings -->
<string name="spanTag_warning">警告!</string> <!-- contentDescription (accessibility).. [w] will be replaced w/ this text when read aloud -->
<!-- Field: timezone
The time zone field that appears below the clock (main activity).
-->
<string name="timezoneField"><xliff:g id="timezone" example="US/Mountain">%1$s</xliff:g> <xliff:g id="dstTag">[d]</xliff:g><xliff:g id="warningTag">[w]</xliff:g></string>
<string name="timezoneWarning"><xliff:g id="warningTag">[w]</xliff:g> 此位置的時區可能是錯的。</string> <!-- snackbar message -->
<string name="timezoneWarningNote"><xliff:g id="tzID">%s</xliff:g> 是 <xliff:g id="timeSpan">%s</xliff:g> 採用地方平時(<xliff:g id="locationName">%s</xliff:g>)</string>
<string name="timezoneExtraDST"><xliff:g id="dstTag">[d]</xliff:g> <xliff:g id="dstOffset" example="+1h">%1$s</xliff:g> 夏令時</string> <!-- timezone dialog label -->
<string name="timezoneExtraApparentSolar"><xliff:g id="dstTag">[d]</xliff:g> <xliff:g id="dstOffset" example="+8m">%1$s</xliff:g> 時間等式</string> <!-- timezone dialog label -->
<!-- Field: date
The date field that appears above the table (main activity).
e.g. [dateDesc] \n [date]
where [dateDesc] is a yesterday/today/tomorrow, past_, or future_ string.
where [date] is a dateString formatted by app using user's locale
-->
<string name="dateField"><xliff:g id="dateDesc" example="Today">%1$s</xliff:g>\n<xliff:g id="date" example="Jul 8, 2016">%2$s</xliff:g> <xliff:g id="warningTag">[w]</xliff:g></string>
<string name="dateWarning"><xliff:g id="warningTag">[w]</xliff:g> 日期已設定為除今天外的另一天。</string> <!-- snackbar message -->
<!-- DateDesc: some day in the past (appears in dateField) -->
<string name="past_today">過去</string>
<string name="past_n">過去(%1$s)</string>
<!-- DateDesc: yesterday/today/tomorrow (appears in dateField) -->
<string name="yesterday">昨天</string>
<string name="today">今天</string>
<string name="tomorrow">明天</string>
<!-- DateDesc: some day in the future (appears in dateField) -->
<string name="future_today">將來</string>
<string name="future_n">將來(%1$s)</string>
<!-- Field: length of day
The hours in the day field(s) that appears below the table (main activity)
-->
<string name="length_day"><xliff:g id="timeSpan" example="12h">%1$s</xliff:g> 日光</string> <!-- time between sunrise and sunset; "12 hr in the day" -->
<string name="length_light"><xliff:g id="timeSpan" example="12h 50m">%1$s</xliff:g> 天亮時間</string> <!-- time between civil twilights; 12 hr 50m of usable light -->
<string name="length_twilight1"><xliff:g id="timeSpan1" example="10h 5m">%1$s</xliff:g></string>
<string name="length_twilight1e_pos"><xliff:g id="timeSpan1" example="10h 5m">%1$s</xliff:g> [+<xliff:g id="timeSpan1" example="+30s">%2$s</xliff:g>]</string>
<string name="length_twilight1e_neg"><xliff:g id="timeSpan1" example="10h 5m">%1$s</xliff:g> [-<xliff:g id="timeSpan1" example="+30s">%2$s</xliff:g>]</string>
<string name="length_twilight2"><xliff:g id="timeSpan1" example="30m">%1$s</xliff:g> | <xliff:g id="timeSpan2" example="30m">%2$s</xliff:g></string>
<string name="length_delimiter">|</string>
<string name="timeMode_tropical_year">迴歸年</string>
<!-- Field: moon illumination (as seen in moon widget) -->
<string name="moon_illumination"><xliff:g id="illuminationPercent" example="50%">%1$s</xliff:g>飽滿度</string> <!-- used in 2x1 widget -->
<string name="moon_illumination_short"><xliff:g id="illuminationPercent" example="50%">%1$s</xliff:g></string> <!-- used in 1x1 widget -->
<string name="moon_illumination_at"><xliff:g id="illuminationPercent" example="50%">%1$s</xliff:g> \@ <xliff:g id="illuminationTime" example="11:55">%2$s</xliff:g></string>
<string name="moon_illumination_range"><xliff:g id="illuminationPercent" example="50%">%1$s</xliff:g>–<xliff:g id="illuminationPercent" example="60%">%2$s</xliff:g></string>
<!-- Field: today/tomorrow time delta (as seen in 1x3_0 widget layout).
e.g. 'Tomorrow will be' + ' 2m ' + 'shorter'
The relative order is defined by the layout (layout/info_time_daydelta.xml).
-->
<string name="delta_day_tomorrow">明天將</string>
<string name="delta_day_yesterday">昨天</string>
<string name="delta_day_shorter">更短</string>
<string name="delta_day_longer">更長</string>
<!-- NotePrefix: since/until/untilEnd
The note prefix text. e.g.
4 hr
until
sunset
The relative order is defined by the layout (layout/info_time_note.xml).
-->
<string name="since">從</string>
<string name="until">到</string>
<string name="until_end">為止</string>
<plurals name="offset_at_plural"> <!-- e.g. "at \n 5:30PM" .. the time component is shown on the next line -->
<!--<item quantity="one">at</item>-->
<item quantity="other">於</item>
</plurals>
<plurals name="offset_before_plural"> <!-- e.g. "30m before \n 5:30PM" .. the time component is shown on the next line -->
<!--<item quantity="one">%1$s before</item>-->
<item quantity="other">%1$s 之前</item>
</plurals>
<plurals name="offset_after_plural"> <!-- e.g. "30m after \n 5:30PM" .. the time component is shown on the next line -->
<!--<item quantity="one">%1$s after</item>-->
<item quantity="other">%1$s 之後</item>
</plurals>
<string name="offset_before_msg">%2$s 之前 %1$s</string> <!-- notification msg; '1h 30m before Sunset'; second arg is always non-plural -->
<string name="offset_after_msg">%2$s 之後 %1$s</string> <!-- notification msg; '1h 30m after end of evening civil twilight'; second arg is always non-plural -->
<string name="offset_before_msg1">{1, plural, one {{2, select, female {} other {}}} other {{2, select, female {} other {}}}}{3} 之前 {0}</string> <!-- uses SelectFormat (api24+) -->
<string name="offset_after_msg1">{1, plural, one {{2, select, female {} other {}}} other {{2, select, female {} other {}}}}{3} 之後 {0}</string> <!-- uses SelectFormat (api24+) -->
<string name="offset_button_before">之前</string> <!-- button label; [1h] [5m] [before] (-) -->
<string name="offset_button_after">之後</string> <!-- button label; [1h] [5m] [after] (+) -->
<!-- NoteBody: sunset/sunrise/twilight string
The note body text; appears next to the prefix (layout/info_time_note.xml)
-->
<string name="until_astroTwilight">天文曙光</string>
<string name="until_civilTwilight">民用曙光</string>
<string name="until_nauticalTwilight">航海曙光</string>
<string name="until_sunrise">日出</string>
<string name="until_noon">太陽正午</string>
<string name="until_sunset">日落</string>
<string name="untilEnd_civilTwilight">民用暮光</string>
<string name="untilEnd_nauticalTwilight">航海暮光</string>
<string name="untilEnd_astroTwilight">天文暮光</string>
<string name="until_goldhour">黃金時刻</string>
<string name="untilEnd_goldhour">黃金時刻</string>
<string name="until_bluehour">藍色時刻</string>
<string name="untilEnd_bluehour">藍色時刻</string>
<string name="until_moonrise">月出</string>
<string name="until_moonset">月落</string>
<string name="until_moonnoon">月亮正午</string>
<string name="until_moonnight">月夜</string>
<!-- Table -->
<string name="sunrise">日出</string> <!-- contentDescription -->
<string name="sunrise_short">日出</string> <!-- table title -->
<string name="sunset">日落</string> <!-- contentDescription -->
<string name="sunset_short">日落</string> <!-- table title -->
<string name="moonrise">月出</string> <!-- contentDescription -->
<string name="moonrise_short">月出</string> <!-- table title -->
<string name="moonset">月落</string> <!-- contentDescription -->
<string name="moonset_short">月落</string> <!-- table title -->
<!-- Time spans: as seen in length of day, today/tomorrow time delta, and note. -->
<string name="delta_format"><xliff:g id="value" example="3">%1$s</xliff:g><xliff:g id="units" example="m">%2$s</xliff:g></string>
<string name="delta_years">年</string> <!-- e.g. 1y -->
<string name="delta_weeks">星期</string> <!-- e.g. 2w -->
<string name="delta_days">天</string> <!-- e.g. 1d -->
<string name="delta_hours">小時</string> <!-- e.g. 2h -->
<string name="delta_minutes">分</string> <!-- e.g. 3m -->
<string name="delta_seconds">秒</string> <!-- e.g. 4s -->
<string name="hence"><xliff:g id="timeSpan">%1$s</xliff:g> 之後</string> <!-- e.g. 15d 23h from now -->
<string name="ago"><xliff:g id="timeSpan">%1$s</xliff:g> 之前</string> <!-- e.g. 1y 15d 12h ago -->
<!-- misc time values: might be displayed in a timeField in place of an actual time -->
<string name="time_none">無</string> <!-- no time / time does not occur -->
<string name="time_loading">…</string> <!-- calculating / time is loading -->
<string name="time_format_12hr_veryshort"><xliff:g id="patternHours">h</xliff:g>:<xliff:g id="patternMinutes">mm</xliff:g></string> <!-- shortest 12hr time format; should omit am/pm -->
<string name="time_format_12hr_veryshort_withseconds"><xliff:g id="patternHours">h</xliff:g>:<xliff:g id="patternMinutes">mm</xliff:g>:<xliff:g id="patternSeconds">ss</xliff:g></string> <!-- shortest 12hr time format (w/ seconds); should omit am/pm -->
<string name="time_format_24hr_veryshort"><xliff:g id="patternHours">HH</xliff:g>:<xliff:g id="patternMinutes">mm</xliff:g></string> <!-- 24hr time format -->
<string name="time_format_24hr_veryshort_withseconds"><xliff:g id="patternHours">HH</xliff:g>:<xliff:g id="patternMinutes">mm</xliff:g>:<xliff:g id="patternSeconds">ss</xliff:g></string> <!-- 24hr time format (w/ seconds) -->
<string name="time_format_12hr_short"><xliff:g id="hoursMinutes">%1$s</xliff:g> <xliff:g id="suffix">%2$s</xliff:g></string>
<string name="date_format_veryshort"><xliff:g id="patternMonth">MMM</xliff:g> <xliff:g id="patternDay">d</xliff:g></string> <!-- MMM d ... e.g. Dec 3 -->
<string name="date_format_short"><xliff:g id="patternMonth">MMMM</xliff:g> <xliff:g id="patternDay">d</xliff:g></string> <!-- MMMM d ... e.g. December 3 -->
<string name="date_format_long"><xliff:g id="patternMonth">MMMM</xliff:g> <xliff:g id="patternDay">d</xliff:g>, <xliff:g id="patternYear">yyyy</xliff:g></string> <!-- MMMM d, yyyy ... e.g. December 3, 2017 -->
<string name="datetime_format_short"><xliff:g id="month">%1$s</xliff:g>, <xliff:g id="time">%2$s</xliff:g></string> <!-- shortDate, time ... e.g. December 3, 11:00 am -->
<string name="datetime_format_long"><xliff:g id="monthYear">%1$s</xliff:g>, <xliff:g id="time">%2$s</xliff:g></string> <!-- longDate, time ... e.g. December 3, 2017, 11:00 am -->
<string name="datetime_format_verylong"><xliff:g id="dateFormat">%1$s</xliff:g> [<xliff:g id="tzID" example="UTC">%2$s</xliff:g>]</string> <!-- datetime_format and timezone -->
<string name="dateyear_format_short"><xliff:g id="patternYear">yyyy</xliff:g></string> <!-- yyyy ... e.g. 2017 -->
<string name="share_format"><xliff:g id="label">%1$s</xliff:g>\n<xliff:g id="formattedDate">%2$s</xliff:g></string>
<string name="share_format_equinox">@string/share_format</string> <!-- Summer solstice on June 20.. -->
<!-- location display formats -->
<string name="location_format_alt"><xliff:g id="altitude">%1$s</xliff:g><xliff:g id="distanceUnit" example="m">%2$s</xliff:g></string> <!-- altitude, e.g. 1600m -->
<string name="location_format_alttag">[<xliff:g id="altitudeString">%1$s</xliff:g>]</string> <!-- altitude as a tag, e.g. [1600m] -->
<string name="location_format_latlon"><xliff:g id="latitude">%1$s</xliff:g>, <xliff:g id="longitude">%2$s</xliff:g></string> <!-- latitude, longitude -->
<string name="location_format_latlonalt"><xliff:g id="latlon">%1$s</xliff:g> <xliff:g id="altitudeTag">%2$s</xliff:g></string> <!-- latitude, longitude [altitude] -->
<!-- distances (meters, feet, etc) -->
<string name="lengthUnits_metric">公制</string>
<string name="lengthUnits_imperial">英制</string>
<string name="units_feet">英尺</string>
<string name="units_feet_short">ft</string>
<plurals name="units_feet_long">
<!--<item quantity="one">%s 英尺</item>-->
<item quantity="other">%s 英尺</item>
</plurals>
<string name="units_miles">英里</string>
<string name="units_miles_short">mi</string>
<plurals name="units_miles_long">
<!--<item quantity="one">%s mile</item>-->
<item quantity="other">%s 英里</item>
</plurals>
<string name="units_meters">公尺</string>
<string name="units_meters_short">m</string>
<plurals name="units_meters_long">
<!--<item quantity="one">%s 公尺</item>-->
<item quantity="other">%s 公尺</item>
</plurals>
<string name="units_kilometers">公里</string>
<string name="units_kilometers_short">km</string>
<plurals name="units_kilometers_long">
<!--<item quantity="one">%s 公里</item>-->
<item quantity="other">%s 公里</item>
</plurals>
<!--
WIDGET CONFIG
-->
<string name="configAction_restoreDefaults">重置設定</string> <!-- button / menu text -->
<string name="configLabel_tagDefault">[初始值]</string>
<string name="configLabel_tagPlugin">[外掛]</string>
<string name="configLabel_prefSummaryTagged"><xliff:g id="summaryText">%1$s</xliff:g>\t<xliff:g id="tag" example="[default]">%2$s</xliff:g></string> <!-- label applied to ListPref items (e.g. defaults) -->
<!-- WidgetConfig Activity -->
<string name="configAction_addWidget">新增小工具</string> <!-- Button: Add -->
<string name="configAction_reconfigWidget_short">重新配置</string> <!-- Button: Reconfigure -->
<string name="configAction_reconfigWidget">重新配置小工具</string> <!-- used as title when reconfiguring -->
<string name="configLabel_title0">@string/app_name_widget0</string> <!-- used as title when adding -->
<string name="configLabel_title1">可翻轉的小工具</string> <!-- used as title when adding -->
<string name="configLabel_title2">@string/app_name_widget2</string> <!-- used as title when adding -->
<string name="configLabel_solsticewidget0">@string/app_name_solsticewidget0</string> <!-- used as title when adding -->
<string name="configLabel_moonwidget0">@string/app_name_moonwidget0</string> <!-- used as title when adding -->
<!-- Widget Setting: general -->
<string name="configLabel_general">一般</string> <!-- group title -->
<string name="configLabel_general_calculator">日期來源:</string> <!-- spinner label -->
<string name="configLabel_general_calculator_sun">日光資料來源</string> <!-- preference label -->
<string name="configLabel_general_calculator_moon">月光資料來源</string> <!-- preference label -->
<string name="configLabel_general_calculator_help">資料來源</string> <!-- preference title / help button text -->
<string name="configLabel_general_timeFormatMode">時間格式:</string> <!-- spinner label -->
<string name="configLabel_general_altitude_enabled">應用海拔</string> <!-- checkbox label -->
<string name="configLabel_general_altitude_enabled_summary">應用海拔以提高精度。</string> <!-- checkbox label -->
<string name="configLabel_general_localize_hemisphere">半球本地化</string> <!-- checkbox label -->
<string name="configLabel_general_localize_hemisphere_summary">應用基於半球的本地化(季節標籤、月相圖示)。</string> <!-- checkbox label -->
<string name="configLabel_general_lengthUnits">長度單位</string> <!-- spinner label -->
<string name="configLabel_general_showSeconds">顯示秒</string> <!-- checkbox label -->
<string name="configLabel_general_showSeconds_summary">顯示時間時包含秒。</string> <!-- checkbox label -->
<string name="configLabel_general_showTimeDate">顯示時間(和日期)</string> <!-- checkbox label -->
<string name="configLabel_general_showTimeDate_summary">顯示日期的同時顯示時間。</string> <!-- checkbox label -->
<string name="configLabel_general_showAbbrMonth">月份縮寫</string> <!-- checkbox label -->
<string name="configLabel_general_showAbbrMonth_summary">顯示日期的時候使用縮寫的月份名稱。</string> <!-- checkbox label -->
<string name="configLabel_general_showWeeks">顯示星期</string> <!-- checkbox label -->
<string name="configLabel_general_showWeeks_summary">超過7天的時候用星期來記(如: 15天為2星期1天)。</string> <!-- checkbox label -->
<string name="configLabel_general_showHours">顯示小時</string> <!-- checkbox label -->
<string name="configLabel_general_showHours_summary">大於一天的時候包含小時和分鐘。</string> <!-- checkbox label -->
<string name="configLabel_general_observerheight">物體陰影</string> <!-- checkbox label -->
<string name="configLabel_general_observerheight_summary">顯示高度為 <xliff:g id="value" example="1 meter">%1$s</xliff:g> 的物體投射的陰影長度。</string> <!-- checkbox label -->
<string name="configLabel_general_dayOffset">日偏移</string> <!-- edittext label -->
<string name="configLabel_general_dayOffset_hint">0</string> <!-- edittext hint -->
<!-- Widget Setting: advanced / experimental -->
<string name="configLabel_advanced">高階</string> <!-- group title -->
<string name="configLabel_experimental">實驗性</string> <!-- group title -->
<string name="configLabel_general_scanPlugins">資料來源外掛</string> <!-- checkbox label -->
<string name="configLabel_general_scanPlugins_summary">掃描並載入第三方外掛。</string> <!-- pref summary -->
<!-- Widget Setting: appearance -->
<string name="configLabel_widgetlayout">佈局</string> <!-- group title -->
<string-array name="widgetgravity"> <!-- must be one-to-one with WidgetSettings.WidgetGravity enum -->
<!--<item>填充</item>-->
<item>左上</item>
<item>上</item>
<item>右上</item>
<item>左</item>
<item>中心</item>
<item>右</item>
<item>左下</item>
<item>下</item>
<item>右下</item>
</string-array>
<!-- Widget Setting: appearance -->
<string name="configLabel_appearance">外觀</string> <!-- group title -->
<string name="configLabel_appearance_mode">外觀</string> <!-- spinner label -->
<string name="configLabel_appearance_theme">主題:</string> <!-- spinner label -->
<string name="configLabel_appearance_allowResize">交換佈局以填充可用空間</string> <!-- checkbox label -->
<string name="configLabel_appearance_scaleText">縮放文字和圖示</string> <!-- checkbox label -->
<string name="configLabel_appearance_scaleBase">填充整個單元格</string> <!-- checkbox label -->
<string name="configLabel_appearance_gravity">對齊底部:</string> <!-- spinner label -->
<string name="configLabel_appearance_showLabels">顯示標籤</string> <!-- checkbox label -->
<string name="configLabel_appearance_showIcons">顯示圖示</string> <!-- checkbox label -->
<string name="configLabel_appearance_showEnabledOnly">僅顯示已啟用項目</string> <!-- checkbox label -->
<string name="configLabel_appearance_showTitle">顯示標題</string> <!-- checkbox label -->
<string name="configLabel_appearance_titleText">標題:</string> <!-- edittext label -->
<string name="configHint_appearance_titleText">(%t %m %M %lat %lon)</string> <!-- edittext hint -->
<!-- Setting: navigation -->
<string name="configLabel_navigation">導航</string> <!-- group title -->
<string name="configLabel_navigation_mode">導航風格</string> <!-- spinner label -->
<string name="configLabel_navigation_mode_simple">簡單(傳統)</string>
<string name="configLabel_navigation_mode_sidebar">側邊欄</string>
<!-- Widget Setting: riseSetOrder -->
<string name="configLabel_general_riseSetOrder">順序:</string> <!-- label -->
<string name="risesetorder_today">今天</string> <!-- setting -->
<string name="risesetorder_lastnext">前/後</string> <!-- setting -->
<!-- Widget Setting: time mode -->
<string name="timeMode_noon_short">正午</string> <!-- setting -->
<string name="timeMode_noon">太陽正午</string> <!-- setting -->
<string name="timeMode_official_short">實際</string> <!-- setting -->
<string name="timeMode_official">實際時間</string> <!-- setting -->
<string name="timeMode_civil_short">民用</string> <!-- setting -->
<string name="timeMode_civil">民用曙暮光</string> <!-- setting -->
<string name="timeMode_nautical_short">航海</string> <!-- setting -->
<string name="timeMode_nautical">航海曙暮光</string> <!-- setting -->
<string name="timeMode_astronomical_short">天文</string> <!-- setting -->
<string name="timeMode_astronomical">天文曙暮光</string> <!-- setting -->
<string name="timeMode_night">夜間</string> <!-- a label (not an actual timeMode setting) -->
<string name="timeMode_day">日間</string> <!-- a label (not an actual timeMode setting) -->
<string name="timeMode_golden_short">黃金</string> <!-- setting -->
<string name="timeMode_golden">黃金時刻</string> <!-- setting -->
<string name="timeMode_blue8_short">藍色 (8\u00B0)</string> <!-- setting -->
<string name="timeMode_blue8">藍色時刻 (8\u00B0)</string> <!-- setting -->
<string name="timeMode_blue4_short">藍色 (4\u00B0)</string> <!-- setting -->
<string name="timeMode_blue4">藍色時刻 (4\u00B0)</string> <!-- setting -->
<string name="timeMode_none">無</string> <!-- label -->
<string name="timeMode_equinox_vernal">春分</string> <!-- setting -->
<string name="timeMode_equinox_vernal_short">春分</string> <!-- setting -->
<string name="timeMode_equinox_autumnal">秋分</string> <!-- setting -->
<string name="timeMode_equinox_autumnal_short">秋分</string> <!-- setting -->
<string name="timeMode_solstice_summer">夏至</string> <!-- setting -->
<string name="timeMode_solstice_summer_short">夏至</string> <!-- setting -->
<string name="timeMode_solstice_winter">冬至</string> <!-- setting -->
<string name="timeMode_solstice_winter_short">冬至</string> <!-- setting -->
<string name="timeMode_cross_midwinter">聖布里吉德節 (Imbolc)</string> <!-- setting; neutral labels -->
<string name="timeMode_cross_midwinter_short">跨季節</string> <!-- setting -->
<string name="timeMode_cross_midsummer">夏/秋交節</string> <!-- setting -->
<string name="timeMode_cross_midsummer_short">跨季節</string> <!-- setting -->
<string name="timeMode_cross_midspring">春/夏交節</string> <!-- setting -->
<string name="timeMode_cross_midspring_short">跨季節</string> <!-- setting -->
<string name="timeMode_cross_midautumnal">秋/冬交節</string> <!-- setting -->
<string name="timeMode_cross_midautumnal_short">跨季節</string> <!-- setting -->
<string name="timeMode_cross_midwinter0">聖布里吉德節 (Imbolc)</string> <!-- setting; neutral labels -->
<string name="timeMode_cross_midsummer0">拉馬斯節 (Lughnasadh)</string> <!-- setting -->
<string name="timeMode_cross_midspring0">貝爾丹節 (Beltane)</string> <!-- setting -->
<string name="timeMode_cross_midautumnal0">夏末節 (Samhain)</string> <!-- setting -->
<string name="timeMode_moon">月光</string> <!-- label -->
<string name="timeMode_moon_new">新月</string> <!-- setting -->
<string name="timeMode_moon_new_short">新月</string> <!-- setting -->
<string name="timeMode_moon_waxingcrescent_short">眉月</string> <!-- label -->
<string name="timeMode_moon_waxingcrescent">眉月</string> <!-- label -->
<string name="timeMode_moon_firstquarter">上弦月</string> <!-- setting -->
<string name="timeMode_moon_firstquarter_short">上弦月</string> <!-- setting -->
<string name="timeMode_moon_waxinggibbous_short">盈凸月</string> <!-- label -->
<string name="timeMode_moon_waxinggibbous">盈凸月</string> <!-- label -->
<string name="timeMode_moon_full">滿月</string> <!-- setting -->
<string name="timeMode_moon_full_short">滿月</string> <!-- setting -->
<string name="timeMode_moon_waninggibbous_short">虧凸月</string> <!-- label -->
<string name="timeMode_moon_waninggibbous">虧凸月</string> <!-- label -->
<string name="timeMode_moon_thirdquarter">下弦月</string> <!-- setting -->
<string name="timeMode_moon_thirdquarter_short">下弦月</string> <!-- setting -->
<string name="timeMode_moon_waningcrescent_short">虧眉月</string> <!-- label -->
<string name="timeMode_moon_waningcrescent">虧眉月</string> <!-- label -->
<string name="timeMode_moon_super">超級月亮</string> <!-- label -->
<string name="timeMode_moon_micro">微月</string> <!-- label -->
<string name="timeMode_moon_superfull">超級滿月</string> <!-- setting -->
<!--<string name="timeMode_moon_superfull_short">@string/timeMode_moon_super</string>--> <!-- label -->
<string name="timeMode_moon_supernew">超級新月</string> <!-- setting -->
<!--<string name="timeMode_moon_supernew_short">@string/timeMode_moon_super</string>--> <!-- label -->
<string name="timeMode_moon_microfull">微滿月</string> <!-- setting -->
<!--<string name="timeMode_moon_microfull_short">@string/timeMode_moon_micro</string>--> <!-- label -->
<string name="timeMode_moon_micronew">微新月</string> <!-- setting -->
<!--<string name="timeMode_moon_micronew_short">@string/timeMode_moon_micro</string>--> <!-- label -->
<!--<string name="timeMode_moon_perigee">@string/label_perigee</string>--> <!-- label -->
<!--<string name="timeMode_moon_apogee">@string/label_apogee</string>--> <!-- label -->
<string name="label_apogee">遠地點</string>
<string name="label_perigee">近地點</string>
<string name="configLabel_general_timeMode">模式:</string> <!-- spinner label -->
<!-- Widget Setting: calendar -->
<string name="configLabel_general_showDate">顯示日期</string> <!-- group title -->
<string name="configLabel_general_calendar">日曆</string> <!-- group title -->
<string name="configLabel_general_calendarMode">日曆:</string> <!-- spinner label -->
<string name="configLabel_general_calendarFormat">日期格式:</string> <!-- spinner label -->
<string name="configLabel_general_calendarFormatPattern">日期模式:</string> <!-- edittext label -->
<string name="configHint_general_calendarFormatPattern">MMMM d, yyyy</string> <!-- edittext hint -->
<string name="configLabel_general_calendarFormat_custom">自定義 (%s)</string> <!-- spinner value -->
<string name="configLabel_general_calendarFormat_yyyy">%s [年]</string> <!-- spinner value -->
<string name="configLabel_general_calendarFormat_MMMM">%s [月]</string> <!-- spinner value -->
<string name="configLabel_general_calendarFormat_EEEE">%s [星期中日]</string> <!-- spinner value -->
<string name="configLabel_general_calendarFormat_MM">%s [月]</string> <!-- spinner value -->
<string name="configLabel_general_calendarFormat_dd">%s [月中日]</string> <!-- spinner value -->
<string name="configLabel_general_calendarFormat_DD">%s [年中日]</string> <!-- spinner value -->
<string name="configAction_editCalendarFormat">編輯</string> <!-- button (contentDescription) -->
<!-- Widget Setting: layout mode -->
<string name="widgetMode1x1_sunrise">僅日出</string> <!-- setting -->
<string name="widgetMode1x1_sunset">僅日落</string> <!-- setting -->
<string name="widgetMode1x1_both_1">日出 & 日落 (1)</string> <!-- setting -->
<string name="widgetMode1x1_both_2">日出 & 日落 (2)</string> <!-- setting -->
<string name="widgetMode3x1_sunrise_sunset_noon">日出,日落,和正午</string> <!-- setting -->
<string name="widgetMode1x1_altaz">海拔 & 方位</string> <!-- setting -->
<string name="widgetMode1x1_decright">赤經 & 赤緯</string> <!-- setting -->
<string name="widgetMode1x1_distance">當前距離</string> <!-- setting -->
<string name="widgetMode1x1_apsis">下一個遠地點或近地點</string> <!-- setting -->
<string name="widgetMode1x1_moonday">月亮日</string> <!-- setting -->
<string name="widgetMode3x1_lightmap_large">光照圖</string> <!-- setting -->
<string name="widgetMode3x1_lightmap_medium">光照圖(中等)</string> <!-- setting -->
<string name="widgetMode3x1_lightmap_small">光照圖(小)</string> <!-- setting -->
<string name="widgetMode3x2_linegraph">@string/configAction_lineGraph</string> <!-- setting -->
<string name="widgetMode3x2_worldmap">@string/configAction_worldMap</string> <!-- setting -->
<string name="widgetMode_sunPosMap_simplerectangular">預設</string> <!-- setting -->
<string name="widgetMode_sunPosMap_simpleazimuthal">北半球視角</string> <!-- setting -->
<string name="widgetMode_sunPosMap_simpleazimuthal_south">南半球視角</string> <!-- setting -->
<string name="widgetMode_sunPosMap_bluemarble">衛星</string> <!-- setting -->
<string name="widgetMode_sunPosMap_simpleazimuthal_location">方位角等距</string> <!-- setting -->
<string name="worldmap_projection_equirectangular">等距矩形</string>
<string name="worldmap_projection_equiazimuthal">等距方位角</string>
<string name="widgetMode1x1_moonriseset">月出 & 月落</string> <!-- setting -->
<string name="widgetMode1x1_moonphaseillum">月相 & 月光</string> <!-- setting -->
<string name="widgetMode1x1_moonphase">僅月相</string> <!-- setting -->
<string name="widgetMode1x1_moonillum">僅月光</string> <!-- setting -->
<string name="widgetMode1x1_moonphasenext">下一個月相</string> <!-- setting -->
<string name="widgetMode1x1_nextalarm">下一個鬧鐘</string> <!-- setting -->
<string name="widgetMode2x2_nextalarm">下一個鬧鐘(詳細資訊)</string> <!-- setting -->
<string name="widgetMode2x2_alarmlist">鬧鐘清單</string> <!-- setting -->
<string name="widgetMode3x2_alarmlist">鬧鐘清單(詳細資訊)</string> <!-- setting -->
<string name="configLabel_appearance_1x1mode">1x1:</string> <!-- spinner label -->
<string name="configLabel_appearance_2x1mode">2x1:</string> <!-- spinner label -->
<string name="configLabel_appearance_2x2mode">2x2:</string> <!-- spinner label -->
<string name="configLabel_appearance_3x1mode">3x1:</string> <!-- spinner label -->
<string name="configLabel_appearance_3x2mode">3x2:</string> <!-- spinner label -->
<string name="configLabel_appearance_3x3mode">3x3:</string> <!-- spinner label -->
<!-- Widget Setting: widget tap action -->
<string name="actionMode_doNothing">什麼也不做</string> <!-- setting -->
<string name="actionMode_update">更新小工具</string> <!-- setting -->
<string name="actionMode_update_all">更新所有小工具</string> <!-- setting -->
<string name="actionMode_config">重新配置小工具</string> <!-- setting -->
<string name="actionMode_launchActivity">開啟應用</string> <!-- setting -->
<string name="actionMode_flipToNextItem">翻轉顯示</string> <!-- setting -->
<string name="launchType_activity">活動</string> <!-- setting -->
<string name="launchType_broadcast">廣播</string> <!-- setting -->
<string name="launchType_service">服務</string> <!-- setting -->
<string name="expandMore">更多</string> <!-- contentDescription -->
<string name="expandLess">更少</string> <!-- contentDescription -->
<!--<string name="increment">@string/expandMore</string>--> <!-- contentDescription for (+>) type buttons -->
<!--<string name="decrement">@string/expandLess</string>--> <!-- contentDescription for (-<) type buttons -->
<string name="configLabel_action">動作</string> <!-- group title -->
<string name="configLabel_action_onTap">輕按時:</string> <!-- spinner label -->
<string name="configLabel_action_onClockTap">輕按時鐘時</string> <!-- spinner label -->
<string name="configLabel_action_onNoteTap">輕按便籤時</string> <!-- spinner label -->
<string name="configLabel_action_onDateTap">輕按日期時</string> <!-- spinner label -->
<string name="configLabel_action_onDateTap1">長按日期時</string> <!-- spinner label -->
<!-- Widget Setting: location -->
<string name="locationMode_current">當前(最近獲取到的位置)</string> <!-- setting -->
<string name="locationMode_custom">使用者自定</string> <!-- setting -->
<string name="locationPermissionWarning"><xliff:g id="warningTag">[w]</xliff:g> 更新當前位置需要位置許可權。</string> <!-- snackbar text -->
<string name="configLabel_location">位置</string> <!-- group title -->
<string name="configLabel_location_mode">模式:</string> <!-- spinner label -->
<string name="configLabel_location_lat">緯度:</string> <!-- edittext label -->
<string name="configHint_location_lat">十進位制</string> <!-- edittext hint -->
<string name="configLabel_location_lon">經度:</string> <!-- edittext label -->
<string name="configHint_location_lon">十進位制</string> <!-- edittext hint -->
<string name="configLabel_location_alt">海拔:</string> <!-- edittext label -->
<string name="configHint_location_alt">0</string> <!-- edittext hint -->
<string name="configLabel_location_name">名稱:</string> <!-- edittext label -->
<string name="configHint_location_name">(可選)</string> <!-- edittext hint -->
<string name="configHint_location_name0">地點名稱</string> <!-- edittext hint -->
<string name="configLabel_location_fromapp">使用應用位置</string> <!-- checkbox text -->
<string name="configAction_getFix">獲取位置</string> <!-- button (contentDescription) -->
<string name="configAction_editPlace">編輯</string> <!-- button (contentDescription) -->
<string name="configAction_savePlace">儲存</string> <!-- button (contentDescription) -->
<!-- Widget Setting: timezone -->
<string name="timezoneMode_standard">時間標準</string> <!-- setting -->
<string name="timezoneMode_current">系統時區</string> <!-- setting -->
<string name="timezoneMode_custom">使用者自定</string> <!-- setting -->
<string name="time_lmst">本地恆星時</string> <!-- timezone label -->
<string name="time_gmst">格林尼治恆星時</string> <!-- timezone label -->
<string name="time_utc">協調世界時</string> <!-- timezone label -->
<string name="time_localMean">當地平均時間</string> <!-- setting / custom timezone id -->
<string name="time_apparent">視太陽時間</string> <!-- setting / custom timezone id -->
<string name="timezoneCustom_line1"><xliff:g id="timezoneID" example="US/Arizona">%1$s</xliff:g></string> <!-- selector item format (e.g. "US/Arizona" ) -->
<string name="timezoneCustom_line2">[<xliff:g id="utmOffset" example="-7">%1$s</xliff:g>] <xliff:g id="timezoneName" example="Mountain Standard Time">%2$s</xliff:g></string> <!-- selector item format (e.g. "[-7] Mountain Standard Time") -->
<string name="configAction_suggestTimeZone">推薦時區</string>
<string name="configLabel_timezone">時區</string> <!-- group title -->
<string name="configLabel_timezone_mode">模式:</string> <!-- spinner label -->
<string name="configLabel_timezone_custom">時區:</string> <!-- spinner label -->
<string name="configLabel_timezone_standard">標準:</string> <!-- spinner label -->
<string name="configLabel_timezone_fromapp">使用應用時區</string> <!-- checkbox text -->
<!-- Widget Setting: timeFormat mode -->
<string name="timeFormatMode_system">系統格式</string> <!-- setting -->
<string name="timeFormatMode_12hr">12小時格式</string> <!-- setting -->
<string name="timeFormatMode_24hr">24小時格式</string> <!-- setting -->
<string name="configLabel_timeFormatMode">時間格式</string> <!-- preference label -->
<string name="configLabel_timeFormatMode_systemsummary"><xliff:g id="timeFormatMode">%1$s</xliff:g> [<xliff:g id="timeFormatMode">%2$s</xliff:g>]</string> <!-- preference summary -->
<!-- Widget Setting: calendar mode -->
<string name="calendarMode_coptic">科普特曆</string>
<string name="calendarMode_ethiopian">埃塞俄比亞曆</string>
<string name="calendarMode_gregorian">公曆</string>
<string name="calendarMode_hebrew">希伯來曆</string>
<string name="calendarMode_hijri_diyanet">伊斯蘭曆(土耳其)</string>
<string name="calendarMode_hijri_umalqura">伊斯蘭曆(烏姆庫拉)</string>
<string name="calendarMode_julian">儒略曆</string>
<string name="calendarMode_persian">伊朗曆</string>
<string name="calendarMode_thaisolar">泰國陽曆</string>
<string name="calendarMode_chinese">農曆</string>
<string name="calendarMode_korean">朝鮮曆</string>
<string name="calendarMode_vietnamese">越南曆</string>
<string name="calendarMode_minguo">民國曆</string>
<string name="calendarMode_indian">印度曆</string>
<string name="calendarMode_japanese">和曆</string>
<!-- Widget Setting: date mode -->
<string name="dateMode_current">今天</string> <!-- setting -->
<string name="dateMode_custom">使用者自定</string> <!-- setting -->
<string name="configLabel_date">日期</string> <!-- group title -->
<string name="configLabel_date_mode">模式:</string> <!-- spinner label -->
<string name="configLabel_date_custom">日期:</string> <!-- dateSelector label -->
<!-- Widget Setting: compare mode -->
<string name="compareMode_yesterday">昨天</string> <!-- setting -->
<string name="compareMode_tomorrow">明天</string> <!-- setting -->
<string name="configLabel_general_compareMode">對比:</string> <!-- spinner label -->
<string name="configLabel_general_showComparison">顯示對比</string> <!-- checkbox label -->
<string name="configLabel_general_showComparison_summary">將今天的日照量與昨天或明天進行比較。</string> <!-- checkbox label -->
<!-- Widget Setting: tracking mode -->
<string name="trackingMode_recent">近期事件</string> <!-- setting -->
<string name="trackingMode_closest">最近事件</string> <!-- setting -->
<string name="trackingMode_soonest">即將發生事件</string> <!-- setting -->
<string name="configLabel_general_trackingMode">追蹤:</string> <!-- spinner label -->
<!-- Widget Setting: timeMode override -->
<string name="configLabel_general_timeMode_override">追蹤覆蓋模式</string> <!-- checkbox label -->
<!-- Widget Settings: noon -->
<string name="configLabel_general_showNoon">顯示太陽正午</string> <!-- checkbox label -->
<!-- Widget Setting: Launch App -->
<string name="configLabel_action_id">ID:</string> <!-- edittext label -->
<string name="configLabel_action_launch">類:</string> <!-- edittext label -->
<string name="configHint_action_launch" /> <!-- editText hint (and default) -->
<string name="configLabel_action_launch_package">包:</string> <!-- edittext label -->
<string name="configHint_action_launch_package" /> <!-- edittext label -->
<string name="configHint_action_launch_title">動作標題</string> <!-- edittext hint -->
<string name="configHint_action_launch_desc">簡介</string> <!-- edittext hint -->
<string name="configLabel_action_launch_type">型別:</string> <!-- spinner label -->
<string name="configLabel_action_launch_action">動作:</string> <!-- edittext label -->
<string name="configHint_action_launch_action"><無></string> <!-- editText hint (and default) -->
<string name="configLabel_action_launch_data">資料:</string> <!-- edittext label -->
<string name="configHint_action_launch_data"><無></string> <!-- editText hint (and default) -->
<string name="configLabel_action_launch_datatype">Mime:</string> <!-- edittext label -->
<string name="configHint_action_launch_datatype">text/plain</string> <!-- editText hint (and default) -->
<string name="configLabel_action_launch_extras">更多:</string> <!-- edittext label -->
<string name="configHint_action_launch_extras"><![CDATA[<none>]]></string> <!-- editText hint (and default) -->
<string name="configLabel_action_item">%1$s %2$s</string>
<string name="configLabel_action_item_desc">(%1$s)</string>
<string name="configLabel_action_item_none">無動作</string>
<string name="addaction_custname">自定義<xliff:g id="#">%1$s</xliff:g></string> <!-- button (contentDescription) -->
<string name="addaction_custtitle">自定義動作 <xliff:g id="#">%1$s</xliff:g></string> <!-- button (contentDescription) -->
<string name="addaction_error_id">ID 不能為空(或包含空格)。</string>
<string name="addaction_error_title">顯示字串不能為空。</string>
<string name="addaction_error_exists">ID已被佔用。此動作將被覆蓋。</string>
<string name="delaction_dialog_msg">您確認要刪除 %1$s 嗎(%2$s)?</string>
<string name="delaction_dialog_msg1">無法刪除預設操作。\n\n是否恢復為預設值?</string>
<string name="delaction_dialog_ok">刪除</string>
<string name="delaction_dialog_ok1">重置</string>
<string name="delaction_dialog_cancel">取消</string>
<string name="clearactions_dialog_msg">您確認要重置為預設值嗎?\n\n所有自定義動作都將被刪除。</string>
<string name="clearactions_dialog_ok">清空</string>
<!--<string name="clearactions_dialog_cancel">@string/dialog_cancel</string>--> <!-- "Cancel" button; uncomment to override -->
<string name="clearactions_toast">動作已重置為預設值。</string>
<string name="saveaction_dialog_title">新增動作</string>
<string name="saveaction_dialog_ok">儲存</string>
<!--<string name="saveaction_dialog_cancel">@string/dialog_cancel</string>--> <!-- "Cancel" button; uncomment to override -->
<string name="saveaction_dialog_suggest">建議</string>
<string name="saveaction_toast">動作 \"%1$s\" 已儲存(%2$s)。</string>
<string name="loadaction_dialog_title">動作</string>
<string name="loadaction_toast">動作 \"%1$s\" 已載入。</string>
<string name="startaction_failed_toast">啟動 %s 失敗!</string> <!-- error toast -->
<string name="configAction_addAction">新增</string> <!-- button (contentDescription) -->
<string name="configAction_editAction">編輯</string> <!-- button (contentDescription) -->
<string name="configAction_testAction">測試</string> <!-- button (contentDescription) -->
<string name="configAction_saveAction">儲存</string> <!-- button (contentDescription) -->
<string name="configAction_loadAction">載入</string> <!-- button (contentDescription) -->
<string name="configAction_deleteAction">刪除</string> <!-- button (contentDescription) -->
<string name="configAction_clearActions">清空</string> <!-- button (contentDescription) -->
<string name="configAction_exportActions">@string/configAction_export</string> <!-- button (contentDescription) -->
<string name="configAction_importActions">@string/configAction_import</string> <!-- button (contentDescription) -->
<!-- App Setting: WidgetThemes -->
<string name="configLabel_widgetThemeList">小工具主題</string>
<string name="configLabel_widgetThemeListSelect">選擇一個主題</string>
<string name="configAction_addTheme">新增</string> <!-- button (contentDescription) -->
<string name="configAction_selectTheme">選擇</string> <!-- button (contentDescription) -->
<string name="configAction_editTheme">編輯</string> <!-- button (contentDescription) -->
<string name="configAction_deleteTheme">刪除</string> <!-- button (contentDescription) -->
<string name="configAction_copyTheme">複製</string> <!-- button (contentDescription) -->
<string name="configAction_exportThemes">@string/configAction_export</string> <!-- button (contentDescription) -->
<string name="configAction_importThemes">@string/configAction_import</string> <!-- button (contentDescription) -->
<string name="widgetThemes_dark">深色</string> <!-- default widget theme name -->
<string name="widgetThemes_dark_transparent">深色(透明)</string> <!-- default widget theme name -->
<string name="widgetThemes_dark_translucent">深色(半透明)</string> <!-- default widget theme name -->
<string name="widgetThemes_light">淺色</string> <!-- default widget theme name -->
<string name="widgetThemes_light_transparent">淺色(透明)</string> <!-- default widget theme name -->
<string name="widgetThemes_dark1">深色(傳統)</string> <!-- default widget theme name -->
<string name="widgetThemes_light1">淺色(傳統)</string> <!-- default widget theme name -->
<string name="addtheme_custname">theme_<xliff:g id="#">%1$s</xliff:g></string> <!-- suggested new theme id -->
<!--<string name="addtheme_copyname"><xliff:g id="themeName">%1$s</xliff:g>_copy<xliff:g id="#">%2$s</xliff:g></string>--> <!-- copied theme id -->
<string name="addtheme_copydisplay"><xliff:g id="themeName">%1$s</xliff:g>(副本)</string> <!-- copied theme name (display string) -->
<string name="addtheme_toast_success"><xliff:g id="themeName">%1$s</xliff:g> 新增成功。</string> <!-- toast msg -->
<string name="edittheme_toast_success"><xliff:g id="themeName">%1$s</xliff:g> 儲存成功。</string> <!-- toast msg -->
<string name="deletetheme_toast_success"><xliff:g id="themeName">%1$s</xliff:g> 已刪除。</string> <!-- toast msg -->
<string name="edittheme_error_themeName_empty">ID 不能重複(必填)。</string> <!-- error hint (themeName empty) -->
<string name="edittheme_error_themeName_unique">ID 不能重複(重複)。</string> <!-- error hint (themeName taken) -->
<string name="edittheme_error_displaytext">顯示字元不能沒有哦。</string> <!-- error hint (display text is empty) -->
<string name="edittheme_error_textsize_min">大小必須是一個 >= <xliff:g id="minSize">%1$s</xliff:g> 的數字。</string> <!-- error hint (size is smaller than min) -->
<string name="edittheme_error_textsize_max">大小必須是一個 <= <xliff:g id="maxSize">%1$s</xliff:g> 的數字。</string> <!-- error hint (size is larger than max) -->
<string name="edittheme_flag_default">預設</string> <!-- content description -->
<string name="deletetheme_dialog_title">刪除主題</string> <!-- dialog title -->
<string name="deletetheme_dialog_message">確認要刪除 <xliff:g id="themeName">%1$s</xliff:g> 嗎?</string> <!-- dialog msg -->
<string name="deletetheme_dialog_ok">刪除</string> <!-- button -->
<string name="deletetheme_dialog_cancel">取消</string> <!-- button -->
<string name="configLabel_widgetThemeAdd">新增主題</string> <!-- title text -->
<string name="configLabel_widgetThemeEdit">編輯主題</string> <!-- title text -->
<string name="configAction_saveTheme">儲存</string> <!-- button (contentDescription) -->
<string name="configAction_chooseColor">選擇顏色</string> <!-- button (contentDescription) -->
<string name="configLabel_themeBackgroundId">底色:</string> <!-- spinner label -->
<string name="configLabel_themeBackground_light">淺色</string> <!-- light background -->
<string name="configLabel_themeBackground_dark">深色</string> <!-- dark background -->
<string name="configLabel_themeBackground_trans">透明</string> <!-- transparent background -->
<string name="configLabel_themeBackground_color">顏色</string> <!-- custom background -->
<string name="configLabel_themeColorBackground">顏色:</string> <!-- color label -->
<string name="configLabel_themeColorTitle">標題顏色</string> <!-- color label -->
<string name="configHint_themeColorTitle">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeColorText">文字顏色</string> <!-- color label -->
<string name="configHint_themeColorText">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeColorSpring">春季顏色</string> <!-- color label -->
<string name="configLabel_themeColorSummer">夏季顏色</string> <!-- color label -->
<string name="configLabel_themeColorFall">秋季顏色</string> <!-- color label -->
<string name="configLabel_themeColorWinter">冬季顏色</string> <!-- color label -->
<string name="configLabel_themeColorSpring_text">春季(文字)</string> <!-- color label -->
<string name="configLabel_themeColorSummer_text">夏季(文字)</string> <!-- color label -->
<string name="configLabel_themeColorFall_text">秋季(文字)</string> <!-- color label -->
<string name="configLabel_themeColorWinter_text">冬季(文字)</string> <!-- color label -->
<string name="configLabel_themeColorAccent">強調</string> <!-- color label -->
<string name="configLabel_themeColorAction">動作</string> <!-- color label -->
<string name="configLabel_themeColorMapBackground">地圖背景</string> <!-- color label -->
<string name="configLabel_themeColorMapForeground">地圖前景</string> <!-- color label -->
<string name="configLabel_themeColorMapSunShadow">陰影</string> <!-- color label -->
<string name="configLabel_themeColorMapMoonHighlight">高光</string> <!-- color label -->
<string name="configLabel_themeColorMoonrise_text">月出(文字)</string> <!-- color label -->
<string name="configLabel_themeColorMoonset_text">月落(文字)</string> <!-- color label -->
<string name="configLabel_themeColorMoonrise">月出顏色</string> <!-- color label -->
<string name="configLabel_themeColorMoonset">月落顏色</string> <!-- color label -->
<string name="configLabel_themeColorMoonWaxing">眉月顏色</string> <!-- color label -->
<string name="configLabel_themeColorMoonWaning">虧凸月顏色</string> <!-- color label -->
<string name="configLabel_themeColorMoonFull">滿月顏色</string> <!-- color label -->
<string name="configLabel_themeColorMoonNew">新月顏色</string> <!-- color label -->
<string name="configLabel_themeColorMoonFullText">完整(文字)</string> <!-- color label -->
<string name="configLabel_themeColorMoonNewText">新(文字)</string> <!-- color label -->
<string name="configLabel_themeColorMoonApogeeText">遠地點(文字)</string> <!-- color label -->
<string name="configLabel_themeColorMoonPerigeeText">近地點(文字)</string> <!-- color label -->
<string name="configLabel_themeColorSunrise_text">日出(文字)</string> <!-- color label -->
<string name="configLabel_themeColorSunrise">日出顏色</string> <!-- color label -->
<string name="configHint_themeColorSunrise">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeColorSunset_text">日落(文字)</string> <!-- color label -->
<string name="configLabel_themeColorSunset">日落顏色</string> <!-- color label -->
<string name="configHint_themeColorSunset">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeColorNoon">正午顏色</string> <!-- color label -->
<string name="configHint_themeColorNoon">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeColorGraphSunFill">太陽(填充)</string> <!-- color label -->
<string name="configLabel_themeColorGraphSunStroke">太陽(描邊)</string> <!-- color label -->
<string name="configLabel_themeColorGraphSunPathDayFill">太陽路徑(日填充)</string> <!-- color label -->
<string name="configLabel_themeColorGraphSunPathDayStroke">太陽路徑(日描邊)</string> <!-- color label -->
<string name="configLabel_themeColorGraphSunPathNightFill">太陽路徑(夜填充)</string> <!-- color label -->
<string name="configLabel_themeColorGraphSunPathNightStroke">太陽路徑(夜描邊)</string> <!-- color label -->
<string name="configLabel_themeColorGraphMoonFill">月亮(填充)</string> <!-- color label -->
<string name="configLabel_themeColorGraphMoonStroke">月亮(描邊)</string> <!-- color label -->
<string name="configLabel_themeColorGraphMoonPathDayFill">月亮路徑(日填充)</string> <!-- color label -->
<string name="configLabel_themeColorGraphMoonPathDayStroke">月亮路徑(日描邊)</string> <!-- color label -->
<string name="configLabel_themeColorGraphMoonPathNightFill">月亮路徑(夜填充)</string> <!-- color label -->
<string name="configLabel_themeColorGraphMoonPathNightStroke">月亮路徑(夜描邊)</string> <!-- color label -->
<string name="configLabel_themeColorGraphPointFill">點(填充)</string> <!-- color label -->
<string name="configLabel_themeColorGraphPointStroke">點(描邊)</string> <!-- color label -->
<string name="configLabel_themeColorGraphLabels">標籤(文字)</string> <!-- color label -->
<string name="configLabel_themeColorGraphLabelsBG">標籤(背景)</string> <!-- color label -->
<string name="configLabel_themeColorGraphBackground">圖表背景</string> <!-- color label -->
<string name="configLabel_themeColorGraphAxis">軸</string> <!-- color label -->
<string name="configLabel_themeColorGraphGridMajor">網格(主)</string> <!-- color label -->
<string name="configLabel_themeColorGraphGridMinor">網格(輔)</string> <!-- color label -->
<string name="configLabel_themeColorFill">填充</string> <!-- color label -->
<string name="configHint_themeColorFill">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeColorBorder">邊框</string> <!-- color label -->
<string name="configHint_themeColorBorder">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeBorderWidthRiseSet">邊框寬度(出/落)</string> <!-- size label -->
<string name="configHint_themeBorderWidthRiseSet">2</string> <!-- size hint -->
<string name="configLabel_themeBorderWidthNoon">邊框寬度(午):</string> <!-- size label -->
<string name="configHint_themeBorderWidthNoon">3</string> <!-- size hint -->
<string name="configLabel_themeColorSuffix">字尾顏色</string> <!-- color label -->
<string name="configHint_themeColorSuffix">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeColorTime">文字顏色2</string> <!-- color label -->
<string name="configHint_themeColorTime">#FFFFFFFF</string> <!-- color hint -->
<string name="configLabel_themeSizeTitle">標題大小:</string> <!-- edit label -->
<string name="configHint_themeSizeTitle">14</string> <!-- edit hint -->
<string name="configLabel_themeBoldTitle">粗體</string> <!-- checkbox label -->
<string name="configLabel_themeSizeText">文字大小:</string> <!-- edit label -->
<string name="configHint_themeSizeText">10</string> <!-- edit hint -->
<string name="configLabel_themeSizeTime">時間文字大小:</string> <!-- edit label -->
<string name="configHint_themeSizeTime">12</string> <!-- edit hint -->
<string name="configLabel_themeBoldTime">粗體</string> <!-- checkbox label -->
<string name="configLabel_themeSizeSuffix">字尾文字大小:</string> <!-- edit label -->
<string name="configHint_themeSizeSuffix">8</string> <!-- edit hint -->
<string name="configLabel_themePadding">留白:</string> <!-- edit label -->
<string name="configHint_themePadding">[左,上,右,下]</string> <!-- edit hint -->
<string name="configLabel_themeID">ID:</string> <!-- edit label -->
<string name="configHint_themeID">主題ID</string> <!-- edit hint -->
<string name="configLabel_themeName">顯示:</string> <!-- edit label -->
<string name="configHint_themeName">標籤</string> <!-- edit hint -->
<string name="widgetLabel_azimuth">方位</string> <!-- label -->
<string name="widgetLabel_azimuth_short">方位</string> <!-- label -->
<string name="widgetLabel_altitude">高度</string> <!-- label -->
<string name="widgetLabel_altitude_short">高度</string> <!-- label -->
<string name="widgetLabel_altitude_symbol">∠</string> <!-- label/suffix -->
<string name="widgetLabel_rightAscension">赤經</string> <!-- label -->
<string name="widgetLabel_rightAscension_short">赤經</string> <!-- label -->
<string name="widgetLabel_rightAscension_symbol">α</string> <!-- label/suffix -->
<string name="widgetLabel_declination">赤緯</string> <!-- label -->
<string name="widgetLabel_declination_short">赤緯</string> <!-- label -->
<string name="widgetLabel_declination_symbol">δ</string> <!-- label/suffix -->
<string name="widgetLabel_distance">距離</string> <!-- label -->
<string name="configLabel_alarms_bg_startColor">背景(開始)</string> <!-- color label -->
<string name="configLabel_alarms_bg_endColor">背景(結束)</string> <!-- color label -->
<string name="configLabel_alarms_soundingPulse_startColor">脈衝(響鈴)</string> <!-- color label -->
<string name="configLabel_alarms_soundingPulse_endColor">脈衝(響鈴)</string> <!-- color label -->
<string name="configLabel_alarms_snoozingPulse_startColor">脈衝(延時)</string> <!-- color label -->
<string name="configLabel_alarms_snoozingPulse_endColor">脈衝(延時)</string> <!-- color label -->
<string name="configLabel_alarms_text_primaryColor">主要文字</string> <!-- color label -->
<string name="configLabel_alarms_text_primaryColorInverse">主要文字(反向)</string> <!-- color label -->
<string name="configLabel_alarms_text_secondaryColor">次要文字</string> <!-- color label -->
<string name="configLabel_alarms_text_secondaryColorInverse">次要文字(反向)</string> <!-- color label -->
<string name="configLabel_alarms_text_timeColor">時間文字</string> <!-- color label -->
<string name="configLabel_alarms_text_timeColorInverse">時間文字(反向)</string> <!-- color label -->
<string name="configLabel_alarms_text_disabledColor">停用</string> <!-- color label -->
<!--
CUSTOM EVENTS
-->
<string name="eventType_sun_elevation">太陽(海拔)</string>
<string name="eventlist_dialog_title">自定義事件</string>
<string name="configLabel_event_alarmitem">%1$s\n%2$s</string> <!-- alarm (custom) event chip; e.g. title \n summary -->
<string name="configLabel_event_alarmitem_desc">%1$s</string>
<string name="eventalias_title_format"><xliff:g id="label">%1$s</xliff:g> <xliff:g id="tag">%2$s</xliff:g></string> <!-- (custom) event title; e.g. "Custom [rising]" -->
<string name="eventalias_title_tag_rising" >↑</string>
<string name="eventalias_title_tag_setting">↓</string>
<string name="sunevent_title">太陽</string> <!-- (custom) sun event title; e.g. "Sun 6°" -->
<string name="sunevent_title_format">%1$s %2$s</string> <!-- (custom) sun event title; e.g. "Sun 6°" -->
<string name="sunevent_summary_format"><xliff:g id="title">%1$s</xliff:g> 於 <xliff:g id="angle">%2$s</xliff:g></string> <!-- (custom) sun event summary; e.g. "Sun 6°" -->
<!--<string name="sunevent_phrase_gender">other</string>--> <!-- either other or female (SelectFormat api) -->
<string name="shadowevent_title">陰影</string> <!-- (custom) shadow length event title; e.g. "Shadow 6m" -->
<string name="configLabel_manageEvents">管理事件</string> <!-- settings activity / pref -->
<string name="configLabel_manageEvents_summary">新增或移除自定義事件。</string>
<string name="configLabel_manageEvents_emptyMsg">@string/configAction_manageEvents</string>
<string name="configAction_manageEvents">自定義事件</string>
<string name="configAction_selectEvent">選擇</string> <!-- button (contentDescription) -->
<string name="configAction_addEvent">新增</string> <!-- button (contentDescription) -->
<string name="configAction_editEvent">編輯</string> <!-- button (contentDescription) -->
<string name="configAction_saveEvent">儲存</string> <!-- button (contentDescription) -->
<string name="configAction_deleteEvent">刪除</string> <!-- button (contentDescription) -->
<string name="configAction_clearEvents">清空</string> <!-- button (contentDescription) -->
<string name="configAction_addEvent_sunEvent">新增(太陽高度)</string> <!-- button (contentDescription) -->
<string name="configAction_addEvent_shadowEvent">新增(陰影長度)</string> <!-- button (contentDescription) -->
<string name="configAction_importEvents">@string/configAction_import</string> <!-- button (contentDescription) -->
<string name="configAction_exportEvents">@string/configAction_export</string> <!-- button (contentDescription) -->
<string name="importevents_toast_success">匯入 <xliff:g id="eventPlural">%s</xliff:g>。</string> <!-- toast msg -->
<plurals name="eventPlural">
<item quantity="other">%d 個事件</item>
</plurals>
<string name="editevent_dialog_id_label">ID</string>
<string name="editevent_dialog_id_hint">事件 ID</string>
<string name="editevent_dialog_id_error">@string/addaction_error_id</string>
<string name="editevent_dialog_uri_hint">事件 Uri</string>
<string name="editevent_dialog_showevent">在應用中展示此事件。</string>
<string name="editevent_dialog_showevent_off">此事件將不再被展示。</string>
<string name="editevent_dialog_title">事件</string> <!-- 'add event' title -->
<string name="editevent_dialog_title1">事件</string> <!-- 'edit event' title -->
<string name="editevent_dialog_label_label">標籤</string>
<string name="editevent_dialog_label_hint">事件標籤</string>
<string name="editevent_dialog_label_error">@string/addaction_error_title</string>
<string name="editevent_dialog_label_suggested">自定義角度</string>
<string name="editevent_dialog_angle">角度</string>
<string name="editevent_dialog_angle_hint">-6</string>
<string name="editevent_dialog_angle_suffix">°</string>
<string name="editevent_dialog_angle_error">角度是必需的!</string>
<string name="editevent_dialog_length">陰影長度</string>
<string name="editevent_dialog_length_hint">6</string>
<string name="editevent_dialog_length_error">陰影長度必需!</string>
<string name="editevent_dialog_label_suggested1">陰影長度</string>
<string name="editevent_dialog_height">物體高度</string>
<string name="editevent_dialog_height_hint">1</string>
<string name="editevent_dialog_height_error">物體高度必需!</string>
<string name="delevent_dialog_msg">您確定您想要刪除 %1$s(%2$s)?使用此事件的鬧鐘、通知或小工具將無法繼續運作且需要被重新指派。</string>
<string name="delevent_dialog_ok">刪除</string>
<string name="delevent_dialog_cancel">@string/dialog_cancel</string>
<string name="clearevents_dialog_msg">您確定您想要清空自定義事件?使用這些事件的鬧鐘、通知或小工具將無法繼續運作且需要被重新指派。</string>
<string name="clearevents_dialog_ok">清空</string>
<string name="clearevents_dialog_cancel">@string/dialog_cancel</string>
<string name="clearevents_toast">已清空自定義事件。</string>
<!--
ALARM CLOCK
-->
<string name="configLabel_alarmClock">鬧鐘</string> <!-- group title -->
<string name="configLabel_alarmClock_emptyMsg">無鬧鐘</string> <!-- a label that is displayed in place of an empty listview -->
<string name="configAction_addAlarm">設定鬧鐘</string> <!-- button (contentDescription) -->
<string name="configAction_addNotification">設定通知</string> <!-- button (contentDescription) -->
<string name="configAction_editAlarm">編輯</string> <!-- button (contentDescription) -->
<string name="configAction_deleteAlarm">刪除</string> <!-- button (contentDescription) -->
<string name="configAction_clearAlarms">清空</string> <!-- action button / menu item -->
<string name="configAction_shareAlarms">@string/configAction_share</string> <!-- action button / menu item -->
<string name="configAction_sortAlarms">排序</string> <!-- action button / menu item -->
<string name="configAction_sortAlarms_by_time">鬧鐘時間</string> <!-- action button / menu item -->
<string name="configAction_sortAlarms_by_creation">建立時間</string> <!-- action button / menu item -->
<string name="configAction_sortAlarms_enabled_first">啟用第一個</string> <!-- action button / menu item -->
<string name="configAction_sortAlarms_offset">顯示偏移</string> <!-- action button / menu item -->
<string name="configAction_clearOffset">清空</string> <!-- action button / menu item -->
<string name="configAction_clearDate">清空</string> <!-- action button / menu item -->
<string name="configAction_setAlarmOffset">設定前後偏移</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmType">設定型別</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmLabel">設定標籤</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmNote">設定筆記</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmDismissChallenge">設定解除挑戰</string> <!-- button (contentDescription) -->
<string name="configAction_configAlarmDismissChallenge">配置解除挑戰</string> <!-- button (contentDescription) -->
<string name="configAction_testAlarmDismissChallenge">測試解除挑戰</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmLocation">設定位置</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmRepeat">設定重複</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmEvent">設定事件</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmTime">覆蓋時間</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmAction">設定動作</string> <!-- button (contentDescription) -->
<string name="configAction_setAlarmSound">設定聲音</string> <!-- button (contentDescription) -->
<string name="configAction_alarmMenu">鬧鐘選單</string> <!-- button (contentDescription) -->
<string name="configAction_saveAlarm">儲存</string> <!-- button (contentDescription) -->
<string name="configAction_enableAlarm">儲存 & 啟用</string> <!-- button (contentDescription) -->
<string name="configAction_disableAlarm">儲存 & 停用</string> <!-- button (contentDescription) -->
<string name="configAction_undo">撤銷</string> <!-- button (contentDescription) -->
<string name="alarmAction_dismiss">解除</string> <!-- notification action button -->
<string name="alarmAction_dismiss_early">提前解除</string> <!-- notification action button -->
<string name="alarmAction_snooze">延時</string> <!-- notification action button -->
<string name="alarmAction_timeout">超時</string> <!-- notification action button -->
<string name="alarmAction_playingMsg"><xliff:g id="label">%1$s</xliff:g></string> <!-- toast message -->
<string name="alarmAction_silencedMsg">鬧鐘靜音</string> <!-- toast message -->
<string name="alarmAction_snoozeMsg">延時 <xliff:g id="alarm">%1$s</xliff:g></string> <!-- notification msg -->