This repository has been archived by the owner on Jan 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathR.generated.swift
1142 lines (1009 loc) · 56.7 KB
/
R.generated.swift
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
//
// This is a generated file, do not edit!
// Generated by R.swift, see https://github.com/mac-cain13/R.swift
//
import Foundation
import Rswift
import UIKit
/// This `R` struct is generated and contains references to static resources.
struct R: Rswift.Validatable {
fileprivate static let applicationLocale = hostingBundle.preferredLocalizations.first.flatMap(Locale.init) ?? Locale.current
fileprivate static let hostingBundle = Bundle(for: R.Class.self)
static func validate() throws {
try intern.validate()
}
/// This `R.file` struct is generated, and contains static references to 2 files.
struct file {
/// Resource file `EFOpenController.json`.
static let efOpenControllerJson = Rswift.FileResource(bundle: R.hostingBundle, name: "EFOpenController", pathExtension: "json")
/// Resource file `MJPhotoBrowser.bundle`.
static let mjPhotoBrowserBundle = Rswift.FileResource(bundle: R.hostingBundle, name: "MJPhotoBrowser", pathExtension: "bundle")
/// `bundle.url(forResource: "EFOpenController", withExtension: "json")`
static func efOpenControllerJson(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.efOpenControllerJson
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "MJPhotoBrowser", withExtension: "bundle")`
static func mjPhotoBrowserBundle(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.mjPhotoBrowserBundle
return fileResource.bundle.url(forResource: fileResource)
}
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 23 images.
struct image {
/// Image `Launch`.
static let launch = Rswift.ImageResource(bundle: R.hostingBundle, name: "Launch")
/// Image `icon`.
static let icon = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon")
/// Image `logo`.
static let logo = Rswift.ImageResource(bundle: R.hostingBundle, name: "logo")
/// Image `placeholder_default`.
static let placeholder_default = Rswift.ImageResource(bundle: R.hostingBundle, name: "placeholder_default")
/// Image `placeholder_transparent`.
static let placeholder_transparent = Rswift.ImageResource(bundle: R.hostingBundle, name: "placeholder_transparent")
/// Image `placeholder_user`.
static let placeholder_user = Rswift.ImageResource(bundle: R.hostingBundle, name: "placeholder_user")
/// Image `welcome_1`.
static let welcome_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "welcome_1")
/// Image `welcome_2`.
static let welcome_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "welcome_2")
/// Image `welcome_3`.
static let welcome_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "welcome_3")
/// Image `图标_ISO`.
static let 图标_ISO = Rswift.ImageResource(bundle: R.hostingBundle, name: "图标_ISO")
/// Image `图标_光圈`.
static let 图标_光圈 = Rswift.ImageResource(bundle: R.hostingBundle, name: "图标_光圈")
/// Image `图标_小人`.
static let 图标_小人 = Rswift.ImageResource(bundle: R.hostingBundle, name: "图标_小人")
/// Image `图标_小笔`.
static let 图标_小笔 = Rswift.ImageResource(bundle: R.hostingBundle, name: "图标_小笔")
/// Image `图标_选择_否`.
static let 图标_选择_否 = Rswift.ImageResource(bundle: R.hostingBundle, name: "图标_选择_否")
/// Image `图标_选择_是`.
static let 图标_选择_是 = Rswift.ImageResource(bundle: R.hostingBundle, name: "图标_选择_是")
/// Image `按钮_关闭`.
static let 按钮_关闭 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_关闭")
/// Image `按钮_新建`.
static let 按钮_新建 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_新建")
/// Image `按钮_更多_白`.
static let 按钮_更多_白 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_更多_白")
/// Image `按钮_更多_黑`.
static let 按钮_更多_黑 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_更多_黑")
/// Image `按钮_设置_白`.
static let 按钮_设置_白 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_设置_白")
/// Image `按钮_设置_黑`.
static let 按钮_设置_黑 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_设置_黑")
/// Image `按钮_返回_白`.
static let 按钮_返回_白 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_返回_白")
/// Image `按钮_返回_黑`.
static let 按钮_返回_黑 = Rswift.ImageResource(bundle: R.hostingBundle, name: "按钮_返回_黑")
/// `UIImage(named: "Launch", bundle: ..., traitCollection: ...)`
static func launch(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.launch, compatibleWith: traitCollection)
}
/// `UIImage(named: "icon", bundle: ..., traitCollection: ...)`
static func icon(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon, compatibleWith: traitCollection)
}
/// `UIImage(named: "logo", bundle: ..., traitCollection: ...)`
static func logo(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.logo, compatibleWith: traitCollection)
}
/// `UIImage(named: "placeholder_default", bundle: ..., traitCollection: ...)`
static func placeholder_default(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.placeholder_default, compatibleWith: traitCollection)
}
/// `UIImage(named: "placeholder_transparent", bundle: ..., traitCollection: ...)`
static func placeholder_transparent(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.placeholder_transparent, compatibleWith: traitCollection)
}
/// `UIImage(named: "placeholder_user", bundle: ..., traitCollection: ...)`
static func placeholder_user(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.placeholder_user, compatibleWith: traitCollection)
}
/// `UIImage(named: "welcome_1", bundle: ..., traitCollection: ...)`
static func welcome_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.welcome_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "welcome_2", bundle: ..., traitCollection: ...)`
static func welcome_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.welcome_2, compatibleWith: traitCollection)
}
/// `UIImage(named: "welcome_3", bundle: ..., traitCollection: ...)`
static func welcome_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.welcome_3, compatibleWith: traitCollection)
}
/// `UIImage(named: "图标_ISO", bundle: ..., traitCollection: ...)`
static func 图标_ISO(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.图标_ISO, compatibleWith: traitCollection)
}
/// `UIImage(named: "图标_光圈", bundle: ..., traitCollection: ...)`
static func 图标_光圈(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.图标_光圈, compatibleWith: traitCollection)
}
/// `UIImage(named: "图标_小人", bundle: ..., traitCollection: ...)`
static func 图标_小人(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.图标_小人, compatibleWith: traitCollection)
}
/// `UIImage(named: "图标_小笔", bundle: ..., traitCollection: ...)`
static func 图标_小笔(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.图标_小笔, compatibleWith: traitCollection)
}
/// `UIImage(named: "图标_选择_否", bundle: ..., traitCollection: ...)`
static func 图标_选择_否(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.图标_选择_否, compatibleWith: traitCollection)
}
/// `UIImage(named: "图标_选择_是", bundle: ..., traitCollection: ...)`
static func 图标_选择_是(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.图标_选择_是, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_关闭", bundle: ..., traitCollection: ...)`
static func 按钮_关闭(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_关闭, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_新建", bundle: ..., traitCollection: ...)`
static func 按钮_新建(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_新建, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_更多_白", bundle: ..., traitCollection: ...)`
static func 按钮_更多_白(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_更多_白, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_更多_黑", bundle: ..., traitCollection: ...)`
static func 按钮_更多_黑(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_更多_黑, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_设置_白", bundle: ..., traitCollection: ...)`
static func 按钮_设置_白(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_设置_白, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_设置_黑", bundle: ..., traitCollection: ...)`
static func 按钮_设置_黑(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_设置_黑, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_返回_白", bundle: ..., traitCollection: ...)`
static func 按钮_返回_白(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_返回_白, compatibleWith: traitCollection)
}
/// `UIImage(named: "按钮_返回_黑", bundle: ..., traitCollection: ...)`
static func 按钮_返回_黑(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.按钮_返回_黑, compatibleWith: traitCollection)
}
fileprivate init() {}
}
/// This `R.storyboard` struct is generated, and contains static references to 2 storyboards.
struct storyboard {
/// Storyboard `LaunchScreen`.
static let launchScreen = _R.storyboard.launchScreen()
/// Storyboard `Main`.
static let main = _R.storyboard.main()
/// `UIStoryboard(name: "LaunchScreen", bundle: ...)`
static func launchScreen(_: Void = ()) -> UIKit.UIStoryboard {
return UIKit.UIStoryboard(resource: R.storyboard.launchScreen)
}
/// `UIStoryboard(name: "Main", bundle: ...)`
static func main(_: Void = ()) -> UIKit.UIStoryboard {
return UIKit.UIStoryboard(resource: R.storyboard.main)
}
fileprivate init() {}
}
/// This `R.string` struct is generated, and contains static references to 3 localization tables.
struct string {
/// This `R.string.launchScreen` struct is generated, and contains static references to 0 localization keys.
struct launchScreen {
fileprivate init() {}
}
/// This `R.string.localizable` struct is generated, and contains static references to 76 localization keys.
struct localizable {
/// zh-Hans translation: 同意
///
/// Locales: zh-Hans, zh-Hant, en
static let 同意 = Rswift.StringResource(key: " 同意", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 尚未注册?
///
/// Locales: zh-Hans, zh-Hant, en
static let 尚未注册 = Rswift.StringResource(key: " 尚未注册?", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 已有账号?
///
/// Locales: zh-Hans, zh-Hant, en
static let 已有账号 = Rswift.StringResource(key: " 已有账号?", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 上传失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 上传失败 = Rswift.StringResource(key: "上传失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 个人博客 or 个人网站
///
/// Locales: zh-Hans, zh-Hant, en
static let 个人博客Or个人网站 = Rswift.StringResource(key: "个人博客 or 个人网站", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 中英日数字_
///
/// Locales: zh-Hans, zh-Hant, en
static let 中英日数字_ = Rswift.StringResource(key: "中英日数字_", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 举报
///
/// Locales: zh-Hans, zh-Hant, en
static let 举报 = Rswift.StringResource(key: "举报", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 保存到相册
///
/// Locales: zh-Hans, zh-Hant, en
static let 保存到相册 = Rswift.StringResource(key: "保存到相册", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 保存失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 保存失败 = Rswift.StringResource(key: "保存失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 关于 VSCAM
///
/// Locales: zh-Hans, zh-Hant, en
static let 关于VSCAM = Rswift.StringResource(key: "关于 VSCAM", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 关于我的一句话自我介绍
///
/// Locales: zh-Hans, zh-Hant, en
static let 关于我的一句话自我介绍 = Rswift.StringResource(key: "关于我的一句话自我介绍", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 分享
///
/// Locales: zh-Hans, zh-Hant, en
static let 分享 = Rswift.StringResource(key: "分享", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 删除
///
/// Locales: zh-Hans, zh-Hant, en
static let 删除 = Rswift.StringResource(key: "删除", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 删除头像
///
/// Locales: zh-Hans, zh-Hant, en
static let 删除头像 = Rswift.StringResource(key: "删除头像", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 删除头像失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 删除头像失败 = Rswift.StringResource(key: "删除头像失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 删除头像成功
///
/// Locales: zh-Hans, zh-Hant, en
static let 删除头像成功 = Rswift.StringResource(key: "删除头像成功", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 剪贴板内容无法识别
///
/// Locales: zh-Hans, zh-Hant, en
static let 剪贴板内容无法识别 = Rswift.StringResource(key: "剪贴板内容无法识别", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 剪贴板没有内容
///
/// Locales: zh-Hans, zh-Hant, en
static let 剪贴板没有内容 = Rswift.StringResource(key: "剪贴板没有内容", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 加入
///
/// Locales: zh-Hans, zh-Hant, en
static let 加入 = Rswift.StringResource(key: "加入", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 去评分
///
/// Locales: zh-Hans, zh-Hant, en
static let 去评分 = Rswift.StringResource(key: "去评分", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 发布失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 发布失败 = Rswift.StringResource(key: "发布失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 取消
///
/// Locales: zh-Hans, zh-Hant, en
static let 取消 = Rswift.StringResource(key: "取消", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片举报失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片举报失败 = Rswift.StringResource(key: "图片举报失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片举报成功,感谢您的反馈!您将不会在列表中再次看到该图片,我们将会尽快对您的举报信息进行核实与处理,您将在 24 小时内收到我们的反馈邮件。
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片举报成功感谢您的反馈您将不会在列表中再次看到该图片我们将会尽快对您的举报信息进行核实与处理您将在24小时内收到我们的反馈邮件 = Rswift.StringResource(key: "图片举报成功,感谢您的反馈!您将不会在列表中再次看到该图片,我们将会尽快对您的举报信息进行核实与处理,您将在 24 小时内收到我们的反馈邮件。", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片列表刷新失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片列表刷新失败 = Rswift.StringResource(key: "图片列表刷新失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片列表加载失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片列表加载失败 = Rswift.StringResource(key: "图片列表加载失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片删除失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片删除失败 = Rswift.StringResource(key: "图片删除失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片描述不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片描述不能为空 = Rswift.StringResource(key: "图片描述不能为空", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片正在上传
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片正在上传 = Rswift.StringResource(key: "图片正在上传", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片编码失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片编码失败 = Rswift.StringResource(key: "图片编码失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片获取无效
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片获取无效 = Rswift.StringResource(key: "图片获取无效", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 图片详情页打开失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 图片详情页打开失败 = Rswift.StringResource(key: "图片详情页打开失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 密码不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static let 密码不能为空 = Rswift.StringResource(key: "密码不能为空", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 年
///
/// Locales: zh-Hans, zh-Hant, en
static let 年 = Rswift.StringResource(key: "年", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 成功保存到相册
///
/// Locales: zh-Hans, zh-Hant, en
static let 成功保存到相册 = Rswift.StringResource(key: "成功保存到相册", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 所选图片无效
///
/// Locales: zh-Hans, zh-Hant, en
static let 所选图片无效 = Rswift.StringResource(key: "所选图片无效", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 手机拍摄、胶片味、意识流
///
/// Locales: zh-Hans, zh-Hant, en
static let 手机拍摄胶片味意识流 = Rswift.StringResource(key: "手机拍摄、胶片味、意识流", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 描述信息
///
/// Locales: zh-Hans, zh-Hant, en
static let 描述信息 = Rswift.StringResource(key: "描述信息", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 提示
///
/// Locales: zh-Hans, zh-Hant, en
static let 提示 = Rswift.StringResource(key: "提示", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 操作失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 操作失败 = Rswift.StringResource(key: "操作失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 数据异常
///
/// Locales: zh-Hans, zh-Hant, en
static let 数据异常 = Rswift.StringResource(key: "数据异常", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 数据格式错误
///
/// Locales: zh-Hans, zh-Hant, en
static let 数据格式错误 = Rswift.StringResource(key: "数据格式错误", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 日
///
/// Locales: zh-Hans, zh-Hant, en
static let 日 = Rswift.StringResource(key: "日", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 昵称不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static let 昵称不能为空 = Rswift.StringResource(key: "昵称不能为空", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 更换
///
/// Locales: zh-Hans, zh-Hant, en
static let 更换 = Rswift.StringResource(key: "更换", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 更改个人信息成功
///
/// Locales: zh-Hans, zh-Hant, en
static let 更改个人信息成功 = Rswift.StringResource(key: "更改个人信息成功", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 更改失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 更改失败 = Rswift.StringResource(key: "更改失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 更改头像失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 更改头像失败 = Rswift.StringResource(key: "更改头像失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 更改头像成功
///
/// Locales: zh-Hans, zh-Hant, en
static let 更改头像成功 = Rswift.StringResource(key: "更改头像成功", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 月
///
/// Locales: zh-Hans, zh-Hant, en
static let 月 = Rswift.StringResource(key: "月", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 未知版本
///
/// Locales: zh-Hans, zh-Hant, en
static let 未知版本 = Rswift.StringResource(key: "未知版本", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 欢迎页面
///
/// Locales: zh-Hans, zh-Hant, en
static let 欢迎页面 = Rswift.StringResource(key: "欢迎页面", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 注册失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 注册失败 = Rswift.StringResource(key: "注册失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 清理缓存
///
/// Locales: zh-Hans, zh-Hant, en
static let 清理缓存 = Rswift.StringResource(key: "清理缓存", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 用户协议
///
/// Locales: zh-Hans, zh-Hant, en
static let 用户协议 = Rswift.StringResource(key: "用户协议", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 用户名不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static let 用户名不能为空 = Rswift.StringResource(key: "用户名不能为空", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 用户详情页打开失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 用户详情页打开失败 = Rswift.StringResource(key: "用户详情页打开失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 登录
///
/// Locales: zh-Hans, zh-Hant, en
static let 登录 = Rswift.StringResource(key: "登录", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 登录失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 登录失败 = Rswift.StringResource(key: "登录失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 确定
///
/// Locales: zh-Hans, zh-Hant, en
static let 确定 = Rswift.StringResource(key: "确定", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 确认更改
///
/// Locales: zh-Hans, zh-Hant, en
static let 确认更改 = Rswift.StringResource(key: "确认更改", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 缓存大小为
///
/// Locales: zh-Hans, zh-Hant, en
static let 缓存大小为 = Rswift.StringResource(key: "缓存大小为", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 网络不给力,图片下载失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 网络不给力图片下载失败 = Rswift.StringResource(key: "网络不给力,图片下载失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 获取图片失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 获取图片失败 = Rswift.StringResource(key: "获取图片失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 请先登录
///
/// Locales: zh-Hans, zh-Hant, en
static let 请先登录 = Rswift.StringResource(key: "请先登录", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 请填写您的举报描述信息以方便我们的查证与处理
///
/// Locales: zh-Hans, zh-Hant, en
static let 请填写您的举报描述信息以方便我们的查证与处理 = Rswift.StringResource(key: "请填写您的举报描述信息以方便我们的查证与处理", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 请查看并同意用户协议
///
/// Locales: zh-Hans, zh-Hant, en
static let 请查看并同意用户协议 = Rswift.StringResource(key: "请查看并同意用户协议", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 请求失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 请求失败 = Rswift.StringResource(key: "请求失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 请选择使用 iPhone 拍摄的照片或其它经过处理的图片
///
/// Locales: zh-Hans, zh-Hant, en
static let 请选择使用IPhone拍摄的照片或其它经过处理的图片 = Rswift.StringResource(key: "请选择使用 iPhone 拍摄的照片或其它经过处理的图片", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 输入一句话照片简介
///
/// Locales: zh-Hans, zh-Hant, en
static let 输入一句话照片简介 = Rswift.StringResource(key: "输入一句话照片简介", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 退出登录
///
/// Locales: zh-Hans, zh-Hant, en
static let 退出登录 = Rswift.StringResource(key: "退出登录", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 退出登录失败
///
/// Locales: zh-Hans, zh-Hant, en
static let 退出登录失败 = Rswift.StringResource(key: "退出登录失败", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 邮箱不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static let 邮箱不能为空 = Rswift.StringResource(key: "邮箱不能为空", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 邮箱格式错误
///
/// Locales: zh-Hans, zh-Hant, en
static let 邮箱格式错误 = Rswift.StringResource(key: "邮箱格式错误", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 隐私政策
///
/// Locales: zh-Hans, zh-Hant, en
static let 隐私政策 = Rswift.StringResource(key: "隐私政策", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: ,确定要清理缓存么?
///
/// Locales: zh-Hans, zh-Hant, en
static let 确定要清理缓存么 = Rswift.StringResource(key: ",确定要清理缓存么?", tableName: "Localizable", bundle: R.hostingBundle, locales: ["zh-Hans", "zh-Hant", "en"], comment: nil)
/// zh-Hans translation: 同意
///
/// Locales: zh-Hans, zh-Hant, en
static func 同意(_: Void = ()) -> String {
return NSLocalizedString(" 同意", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 尚未注册?
///
/// Locales: zh-Hans, zh-Hant, en
static func 尚未注册(_: Void = ()) -> String {
return NSLocalizedString(" 尚未注册?", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 已有账号?
///
/// Locales: zh-Hans, zh-Hant, en
static func 已有账号(_: Void = ()) -> String {
return NSLocalizedString(" 已有账号?", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 上传失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 上传失败(_: Void = ()) -> String {
return NSLocalizedString("上传失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 个人博客 or 个人网站
///
/// Locales: zh-Hans, zh-Hant, en
static func 个人博客Or个人网站(_: Void = ()) -> String {
return NSLocalizedString("个人博客 or 个人网站", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 中英日数字_
///
/// Locales: zh-Hans, zh-Hant, en
static func 中英日数字_(_: Void = ()) -> String {
return NSLocalizedString("中英日数字_", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 举报
///
/// Locales: zh-Hans, zh-Hant, en
static func 举报(_: Void = ()) -> String {
return NSLocalizedString("举报", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 保存到相册
///
/// Locales: zh-Hans, zh-Hant, en
static func 保存到相册(_: Void = ()) -> String {
return NSLocalizedString("保存到相册", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 保存失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 保存失败(_: Void = ()) -> String {
return NSLocalizedString("保存失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 关于 VSCAM
///
/// Locales: zh-Hans, zh-Hant, en
static func 关于VSCAM(_: Void = ()) -> String {
return NSLocalizedString("关于 VSCAM", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 关于我的一句话自我介绍
///
/// Locales: zh-Hans, zh-Hant, en
static func 关于我的一句话自我介绍(_: Void = ()) -> String {
return NSLocalizedString("关于我的一句话自我介绍", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 分享
///
/// Locales: zh-Hans, zh-Hant, en
static func 分享(_: Void = ()) -> String {
return NSLocalizedString("分享", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 删除
///
/// Locales: zh-Hans, zh-Hant, en
static func 删除(_: Void = ()) -> String {
return NSLocalizedString("删除", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 删除头像
///
/// Locales: zh-Hans, zh-Hant, en
static func 删除头像(_: Void = ()) -> String {
return NSLocalizedString("删除头像", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 删除头像失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 删除头像失败(_: Void = ()) -> String {
return NSLocalizedString("删除头像失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 删除头像成功
///
/// Locales: zh-Hans, zh-Hant, en
static func 删除头像成功(_: Void = ()) -> String {
return NSLocalizedString("删除头像成功", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 剪贴板内容无法识别
///
/// Locales: zh-Hans, zh-Hant, en
static func 剪贴板内容无法识别(_: Void = ()) -> String {
return NSLocalizedString("剪贴板内容无法识别", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 剪贴板没有内容
///
/// Locales: zh-Hans, zh-Hant, en
static func 剪贴板没有内容(_: Void = ()) -> String {
return NSLocalizedString("剪贴板没有内容", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 加入
///
/// Locales: zh-Hans, zh-Hant, en
static func 加入(_: Void = ()) -> String {
return NSLocalizedString("加入", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 去评分
///
/// Locales: zh-Hans, zh-Hant, en
static func 去评分(_: Void = ()) -> String {
return NSLocalizedString("去评分", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 发布失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 发布失败(_: Void = ()) -> String {
return NSLocalizedString("发布失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 取消
///
/// Locales: zh-Hans, zh-Hant, en
static func 取消(_: Void = ()) -> String {
return NSLocalizedString("取消", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片举报失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片举报失败(_: Void = ()) -> String {
return NSLocalizedString("图片举报失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片举报成功,感谢您的反馈!您将不会在列表中再次看到该图片,我们将会尽快对您的举报信息进行核实与处理,您将在 24 小时内收到我们的反馈邮件。
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片举报成功感谢您的反馈您将不会在列表中再次看到该图片我们将会尽快对您的举报信息进行核实与处理您将在24小时内收到我们的反馈邮件(_: Void = ()) -> String {
return NSLocalizedString("图片举报成功,感谢您的反馈!您将不会在列表中再次看到该图片,我们将会尽快对您的举报信息进行核实与处理,您将在 24 小时内收到我们的反馈邮件。", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片列表刷新失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片列表刷新失败(_: Void = ()) -> String {
return NSLocalizedString("图片列表刷新失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片列表加载失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片列表加载失败(_: Void = ()) -> String {
return NSLocalizedString("图片列表加载失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片删除失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片删除失败(_: Void = ()) -> String {
return NSLocalizedString("图片删除失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片描述不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片描述不能为空(_: Void = ()) -> String {
return NSLocalizedString("图片描述不能为空", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片正在上传
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片正在上传(_: Void = ()) -> String {
return NSLocalizedString("图片正在上传", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片编码失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片编码失败(_: Void = ()) -> String {
return NSLocalizedString("图片编码失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片获取无效
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片获取无效(_: Void = ()) -> String {
return NSLocalizedString("图片获取无效", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 图片详情页打开失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 图片详情页打开失败(_: Void = ()) -> String {
return NSLocalizedString("图片详情页打开失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 密码不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static func 密码不能为空(_: Void = ()) -> String {
return NSLocalizedString("密码不能为空", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 年
///
/// Locales: zh-Hans, zh-Hant, en
static func 年(_: Void = ()) -> String {
return NSLocalizedString("年", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 成功保存到相册
///
/// Locales: zh-Hans, zh-Hant, en
static func 成功保存到相册(_: Void = ()) -> String {
return NSLocalizedString("成功保存到相册", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 所选图片无效
///
/// Locales: zh-Hans, zh-Hant, en
static func 所选图片无效(_: Void = ()) -> String {
return NSLocalizedString("所选图片无效", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 手机拍摄、胶片味、意识流
///
/// Locales: zh-Hans, zh-Hant, en
static func 手机拍摄胶片味意识流(_: Void = ()) -> String {
return NSLocalizedString("手机拍摄、胶片味、意识流", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 描述信息
///
/// Locales: zh-Hans, zh-Hant, en
static func 描述信息(_: Void = ()) -> String {
return NSLocalizedString("描述信息", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 提示
///
/// Locales: zh-Hans, zh-Hant, en
static func 提示(_: Void = ()) -> String {
return NSLocalizedString("提示", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 操作失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 操作失败(_: Void = ()) -> String {
return NSLocalizedString("操作失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 数据异常
///
/// Locales: zh-Hans, zh-Hant, en
static func 数据异常(_: Void = ()) -> String {
return NSLocalizedString("数据异常", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 数据格式错误
///
/// Locales: zh-Hans, zh-Hant, en
static func 数据格式错误(_: Void = ()) -> String {
return NSLocalizedString("数据格式错误", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 日
///
/// Locales: zh-Hans, zh-Hant, en
static func 日(_: Void = ()) -> String {
return NSLocalizedString("日", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 昵称不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static func 昵称不能为空(_: Void = ()) -> String {
return NSLocalizedString("昵称不能为空", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 更换
///
/// Locales: zh-Hans, zh-Hant, en
static func 更换(_: Void = ()) -> String {
return NSLocalizedString("更换", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 更改个人信息成功
///
/// Locales: zh-Hans, zh-Hant, en
static func 更改个人信息成功(_: Void = ()) -> String {
return NSLocalizedString("更改个人信息成功", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 更改失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 更改失败(_: Void = ()) -> String {
return NSLocalizedString("更改失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 更改头像失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 更改头像失败(_: Void = ()) -> String {
return NSLocalizedString("更改头像失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 更改头像成功
///
/// Locales: zh-Hans, zh-Hant, en
static func 更改头像成功(_: Void = ()) -> String {
return NSLocalizedString("更改头像成功", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 月
///
/// Locales: zh-Hans, zh-Hant, en
static func 月(_: Void = ()) -> String {
return NSLocalizedString("月", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 未知版本
///
/// Locales: zh-Hans, zh-Hant, en
static func 未知版本(_: Void = ()) -> String {
return NSLocalizedString("未知版本", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 欢迎页面
///
/// Locales: zh-Hans, zh-Hant, en
static func 欢迎页面(_: Void = ()) -> String {
return NSLocalizedString("欢迎页面", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 注册失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 注册失败(_: Void = ()) -> String {
return NSLocalizedString("注册失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 清理缓存
///
/// Locales: zh-Hans, zh-Hant, en
static func 清理缓存(_: Void = ()) -> String {
return NSLocalizedString("清理缓存", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 用户协议
///
/// Locales: zh-Hans, zh-Hant, en
static func 用户协议(_: Void = ()) -> String {
return NSLocalizedString("用户协议", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 用户名不能为空
///
/// Locales: zh-Hans, zh-Hant, en
static func 用户名不能为空(_: Void = ()) -> String {
return NSLocalizedString("用户名不能为空", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 用户详情页打开失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 用户详情页打开失败(_: Void = ()) -> String {
return NSLocalizedString("用户详情页打开失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 登录
///
/// Locales: zh-Hans, zh-Hant, en
static func 登录(_: Void = ()) -> String {
return NSLocalizedString("登录", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 登录失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 登录失败(_: Void = ()) -> String {
return NSLocalizedString("登录失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 确定
///
/// Locales: zh-Hans, zh-Hant, en
static func 确定(_: Void = ()) -> String {
return NSLocalizedString("确定", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 确认更改
///
/// Locales: zh-Hans, zh-Hant, en
static func 确认更改(_: Void = ()) -> String {
return NSLocalizedString("确认更改", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 缓存大小为
///
/// Locales: zh-Hans, zh-Hant, en
static func 缓存大小为(_: Void = ()) -> String {
return NSLocalizedString("缓存大小为", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 网络不给力,图片下载失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 网络不给力图片下载失败(_: Void = ()) -> String {
return NSLocalizedString("网络不给力,图片下载失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 获取图片失败
///
/// Locales: zh-Hans, zh-Hant, en
static func 获取图片失败(_: Void = ()) -> String {
return NSLocalizedString("获取图片失败", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 请先登录
///
/// Locales: zh-Hans, zh-Hant, en
static func 请先登录(_: Void = ()) -> String {
return NSLocalizedString("请先登录", bundle: R.hostingBundle, comment: "")
}
/// zh-Hans translation: 请填写您的举报描述信息以方便我们的查证与处理
///
/// Locales: zh-Hans, zh-Hant, en
static func 请填写您的举报描述信息以方便我们的查证与处理(_: Void = ()) -> String {