-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCloudscribeCore.cy.resx
More file actions
2255 lines (2244 loc) · 108 KB
/
CloudscribeCore.cy.resx
File metadata and controls
2255 lines (2244 loc) · 108 KB
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"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="AliasId" xml:space="preserve">
<value>ID Alias</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Are you sure you want to delete the site {0} and all related data? You cannot undo this action." xml:space="preserve">
<value>Ydych chi'n siŵr eich bod am ddileu'r safle {0} a'r holl ddata cysylltiedig? Ni allwch ddadwneud y weithred hon.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Close Site To Public" xml:space="preserve">
<value>Cau'r Safle i'r Cyhoedd</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Closed Message" xml:space="preserve">
<value>Neges Gau</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Delete" xml:space="preserve">
<value>Dileu</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Domain Mappings" xml:space="preserve">
<value>Mapiadau Parth</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="only digits, numbers, - and _ allowed, no spaces allowed" xml:space="preserve">
<value>dim ond digidau, rhifau, - a _ yn cael eu caniatáu, dim bylchau yn cael eu caniatáu</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Save" xml:space="preserve">
<value>Cadw</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Site Folder Name" xml:space="preserve">
<value>Enw Ffolder Safle</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Site Name" xml:space="preserve">
<value>Enw Safle</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Theme" xml:space="preserve">
<value>Thema</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Time Zone" xml:space="preserve">
<value>Amser Zone</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Add Host Mapping" xml:space="preserve">
<value>Ychwanegu Host Mapping</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Address1" xml:space="preserve">
<value>Address1</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Address2" xml:space="preserve">
<value>Address2</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Allow New Registrations" xml:space="preserve">
<value>Allow Newydd Registrations</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Allow Persistent Login" xml:space="preserve">
<value>Allow Persistent Mewngofnodi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Are you sure you want to delete the host/domain name mapping {0}" xml:space="preserve">
<value>Ydych chi'n siŵr eich bod am ddileu'r mapio enw gwesteiwr/parth {0}</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Back to site list" xml:space="preserve">
<value>Yn Ôl to site list</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="City" xml:space="preserve">
<value>City</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Country" xml:space="preserve">
<value>Country</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Default Email From Address" xml:space="preserve">
<value>Default E-bost From Cyfeiriad</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Default Email From Name" xml:space="preserve">
<value>Default E-bost From Enw</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Email addresses (csv) to notify of new unapproved users" xml:space="preserve">
<value>E-bost addresses (csv) i notify o new unapproved users</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Email Confirmed" xml:space="preserve">
<value>E-bost Confirmed</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Facebook App Id" xml:space="preserve">
<value>Facebook App Id</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Facebook App Secret" xml:space="preserve">
<value>Facebook App Secret</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Fax" xml:space="preserve">
<value>Fax</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Folder" xml:space="preserve">
<value>Folder</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Google Client Id" xml:space="preserve">
<value>Google Client Id</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Google Client Secret" xml:space="preserve">
<value>Google Client Secret</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Host Name" xml:space="preserve">
<value>Host Enw</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Id:" xml:space="preserve">
<value>Id:</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Login Info Bottom" xml:space="preserve">
<value>Mewngofnodi Info Bottom</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Login Info Top" xml:space="preserve">
<value>Mewngofnodi Info Top</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Microsoft Client Id" xml:space="preserve">
<value>Microsoft Client Id</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Microsoft Client Secret" xml:space="preserve">
<value>Microsoft Client Secret</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Name" xml:space="preserve">
<value>Enw</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="New Site" xml:space="preserve">
<value>Newydd Site</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Only Use Social Authentication" xml:space="preserve">
<value>Defnyddio Dilysu Cymdeithasol yn Unig</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Phone" xml:space="preserve">
<value>Ffôn</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Please Click here to log in" xml:space="preserve">
<value>Please Click here to Log in</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Please Confirm Email Address" xml:space="preserve">
<value>Please Cadarnhau E-bost Cyfeiriad</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Port" xml:space="preserve">
<value>Port</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Postal Code" xml:space="preserve">
<value>Postal Code</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Preferred Host Name" xml:space="preserve">
<value>Preferred Host Enw</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Public Email" xml:space="preserve">
<value>Cyhoeddus E-bost</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Re-Send Verification Email" xml:space="preserve">
<value>Re-Send Verification E-bost</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Really Delete Users" xml:space="preserve">
<value>Really Dileu Defnyddwyr</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Recaptcha Private Key" xml:space="preserve">
<value>Recaptcha Preifat Key</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Recaptcha Public Key" xml:space="preserve">
<value>Recaptcha Cyhoeddus Key</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Registration Agreement" xml:space="preserve">
<value>Registration Agreement</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Registration Preamble" xml:space="preserve">
<value>Registration Preamble</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Require Approval Before Login" xml:space="preserve">
<value>Require Approval Before Mewngofnodi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Require Captcha On Login?" xml:space="preserve">
<value>Require Captcha On Mewngofnodi?</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Require Captcha On Registration?" xml:space="preserve">
<value>Require Captcha On Registration?</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Require Confirmed Email" xml:space="preserve">
<value>Require Confirmed E-bost</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Require Confirmed Phone" xml:space="preserve">
<value>Require Confirmed Ffôn</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Requires Authentication?" xml:space="preserve">
<value>Angen Dilysu?</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Requires SSL?" xml:space="preserve">
<value>Requires SSL?</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Settings" xml:space="preserve">
<value>Gosodiadau</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Sms Client Id" xml:space="preserve">
<value>Sms Client Id</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Sms From" xml:space="preserve">
<value>Sms From</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Sms Secure Token" xml:space="preserve">
<value>Sms Secure Token</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Smtp Password" xml:space="preserve">
<value>Smtp Cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Smtp Server" xml:space="preserve">
<value>Smtp Server</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Smtp User" xml:space="preserve">
<value>Smtp Defnyddiwr</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="State" xml:space="preserve">
<value>State</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Thank you for confirming your email." xml:space="preserve">
<value>Diolch am gadarnhau eich e-bost.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Twitter Consumer Key" xml:space="preserve">
<value>Twitter Consumer Key</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Twitter Consumer Secret" xml:space="preserve">
<value>Twitter Consumer Secret</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Use Email For Login" xml:space="preserve">
<value>Use E-bost For Mewngofnodi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Add Phone Number" xml:space="preserve">
<value>Ychwanegu Ffôn Number</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Are you sure you want to delete the country {0} and all of its states? You cannot undo this action." xml:space="preserve">
<value>Ydych chi'n siŵr eich bod am ddileu'r wlad {0} a'i holl daleithiau? Ni allwch ddadwneud y weithred hon.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Are you sure you want to delete {0}?" xml:space="preserve">
<value>Ydych chi'n siŵr eich bod am ddileu {0}?</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Back To Country List" xml:space="preserve">
<value>Yn Ôl To Country List</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Back To State List" xml:space="preserve">
<value>Yn Ôl To State List</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Change Password" xml:space="preserve">
<value>Change Cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Code" xml:space="preserve">
<value>Code</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Confirm New Password" xml:space="preserve">
<value>Cadarnhau Newydd Cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Confirm Password" xml:space="preserve">
<value>Cadarnhau Cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Core Data Administration" xml:space="preserve">
<value>Core Data Administration</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Country Detail" xml:space="preserve">
<value>Country Detail</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Country List Administration" xml:space="preserve">
<value>Country List Administration</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Create a new account." xml:space="preserve">
<value>Creu a new account.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Edit" xml:space="preserve">
<value>Golygu</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Edit State" xml:space="preserve">
<value>Golygu State</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Email" xml:space="preserve">
<value>E-bost</value>
</data>
<data name="Forgot Password Confirmation" xml:space="preserve">
<value>Forgot Cyfrinair Confirmation</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Forgot your password?" xml:space="preserve">
<value>Wedi anghofio eich cyfrinair?</value>
</data>
<data name="Log In" xml:space="preserve">
<value>Log In</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Must match password" xml:space="preserve">
<value>Must match password</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="New Country" xml:space="preserve">
<value>Newydd Country</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="New Currency" xml:space="preserve">
<value>Newydd Currency</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="New Password" xml:space="preserve">
<value>Newydd Cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="New State" xml:space="preserve">
<value>Newydd State</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Number" xml:space="preserve">
<value>Number</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Old Password" xml:space="preserve">
<value>Old Cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Password" xml:space="preserve">
<value>cyfrinair</value>
</data>
<data name="Please check your email to reset your password." xml:space="preserve">
<value>Gwiriwch eich e-bost i ailosod eich cyfrinair.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Register" xml:space="preserve">
<value>cofrestr</value>
</data>
<data name="Register as a new user?" xml:space="preserve">
<value>Cofrestru fel defnyddiwr newydd?</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Remember Me" xml:space="preserve">
<value>Cofiwch fi</value>
</data>
<data name="Remember this web browser" xml:space="preserve">
<value>Cofio'r porwr gwe hwn</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Reset" xml:space="preserve">
<value>Ailosod</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Reset password" xml:space="preserve">
<value>Ailosod cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Reset password confirmation" xml:space="preserve">
<value>Cadarnhad ailosod cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Reset your password." xml:space="preserve">
<value>Ailosodwch eich cyfrinair.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Select Two-Factor Authentication Provider:" xml:space="preserve">
<value>Dewis Darparwr Dilysu Dau-Ffactor:</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Send Verification Code" xml:space="preserve">
<value>Anfon Cod Dilysu</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="State List Administration" xml:space="preserve">
<value>State List Gweinyddiaeth</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="States" xml:space="preserve">
<value>States</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Submit" xml:space="preserve">
<value>Cyflwyno</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Thanks for registering!" xml:space="preserve">
<value>Thanks for registering!</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Title" xml:space="preserve">
<value>Title</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Use a local account to log in." xml:space="preserve">
<value>Use a local account to log in.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Use an existing account to log in" xml:space="preserve">
<value>Use an existing account to log in</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Verify" xml:space="preserve">
<value>Verify</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="You must agree to the terms" xml:space="preserve">
<value>Rhaid i chi gytuno i'r telerau</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Your password has been reset." xml:space="preserve">
<value>Mae eich cyfrinair wedi'i ailosod.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Account Approved" xml:space="preserve">
<value>Cyfrif Cymeradwywyd</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Account Locked" xml:space="preserve">
<value>Cyfrif Wedi Cloi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Add" xml:space="preserve">
<value>Add</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Add a phone number." xml:space="preserve">
<value>Add a rhif ffôn.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Add another service to log in." xml:space="preserve">
<value>Add another service to log in.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Add User" xml:space="preserve">
<value>Add User</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="All" xml:space="preserve">
<value>All</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Are you sure you want to add {0}?" xml:space="preserve">
<value>Ydych chi'n siŵr you want to add {0}?</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Are you sure you want to delete the user {0}? You cannot undo this action." xml:space="preserve">
<value>Ydych chi'n siŵr eich bod am ddileu'r defnyddiwr {0}? Ni allwch ddadwneud y weithred hon.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Are you sure you want to remove {0}?" xml:space="preserve">
<value>Ydych chi'n siŵr you want to remove {0}?</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Change" xml:space="preserve">
<value>Change</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Change your account settings" xml:space="preserve">
<value>Newidiwch osodiadau eich cyfrif</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Close" xml:space="preserve">
<value>Close</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Cloudscribe Version" xml:space="preserve">
<value>Cloudscribe Version</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Create" xml:space="preserve">
<value>Create</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Database Platform" xml:space="preserve">
<value>Database Platform</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Date of Birth" xml:space="preserve">
<value>Date of Birth</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Disable" xml:space="preserve">
<value>Analluogi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Disabled" xml:space="preserve">
<value>Analluogwyd</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Display Name" xml:space="preserve">
<value>Enw Arddangos</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Enable" xml:space="preserve">
<value>Galluogi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Enabled" xml:space="preserve">
<value>Galluogwyd</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Environment Name" xml:space="preserve">
<value>Environment Name</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="External Logins:" xml:space="preserve">
<value>Allanol Logins:</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="First Name" xml:space="preserve">
<value>Enw Cyntaf</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Last Name" xml:space="preserve">
<value>Cyfenw</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Manage" xml:space="preserve">
<value>rheoli</value>
</data>
<data name="Manage your account" xml:space="preserve">
<value>Manage your account</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Manage your external logins" xml:space="preserve">
<value>Manage your external logins</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Members" xml:space="preserve">
<value>Members</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="New Role" xml:space="preserve">
<value>New Rôl</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="None" xml:space="preserve">
<value>None</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Operating System" xml:space="preserve">
<value>Operating System</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Password:" xml:space="preserve">
<value>Cyfrinair:</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Phone Number:" xml:space="preserve">
<value>Phone Number:</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Phone Numbers can used as a second factor of verification in two-factor authentication, for better account security add your phone number now." xml:space="preserve">
<value>Phone Numbers can used as a second factor o verification in two-factor authentication, am better cyfrif security add eich rhif ffôn now.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Registered Logins" xml:space="preserve">
<value>Registered Logins</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Remove" xml:space="preserve">
<value>Remove</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Remove Login" xml:space="preserve">
<value>Remove Mewngofnodi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Role Name" xml:space="preserve">
<value>Rôl Name</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Runtime" xml:space="preserve">
<value>Runtime</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Search" xml:space="preserve">
<value>Search</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Search By IP Address" xml:space="preserve">
<value>Search By IP Address</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Server Host Name" xml:space="preserve">
<value>Server Host Name</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Server IP Address" xml:space="preserve">
<value>Server IP Address</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Server Time UTC" xml:space="preserve">
<value>Server Time UTC</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Set Password" xml:space="preserve">
<value>Set Cyfrinair</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Set your password" xml:space="preserve">
<value>Set your password</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Two-Factor Authentication:" xml:space="preserve">
<value>Dilysu Dau-Ffactor</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="UserId" xml:space="preserve">
<value>UserId</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="You do not have a local username/password for this site. Add a local account so you can log in without an external login." xml:space="preserve">
<value>Nid oes gennych enw defnyddiwr/cyfrinair lleol ar gyfer y safle hwn. Ychwanegwch gyfrif lleol fel y gallwch fewngofnodi heb fewngofnod allanol.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Confirm your account" xml:space="preserve">
<value>Confirm your account</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Edit Country" xml:space="preserve">
<value>Edit Country</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Edit Role" xml:space="preserve">
<value>Edit Rôl</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Invalid code." xml:space="preserve">
<value>Annilys code.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Invalid login attempt." xml:space="preserve">
<value>Annilys login attempt.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Manage User" xml:space="preserve">
<value>Manage User</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="New User" xml:space="preserve">
<value>New User</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Non Role Members" xml:space="preserve">
<value>Non Rôl Members</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Please check your email inbox, we just sent you a link that you need to click to confirm your account" xml:space="preserve">
<value>Gwiriwch eich blwch derbyn e-bost, rydym newydd anfon dolen atoch y mae angen i chi ei chlicio i gadarnhau eich cyfrif</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="reCAPTCHA Error occured. Please try again" xml:space="preserve">
<value>Gwall reCAPTCHA. Rhowch gynnig arall arni</value>
</data>
<data name="Role Management" xml:space="preserve">
<value>Rôl Rheolaeth</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Role Members" xml:space="preserve">
<value>Rôl Members</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Security Code" xml:space="preserve">
<value>Diogelwch Cod</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="The country {0} was successfully created." xml:space="preserve">
<value>Crëwyd y wlad {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The country {0} was successfully deleted." xml:space="preserve">
<value>Dilëwyd y wlad {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The country {0} was successfully updated." xml:space="preserve">
<value>Diweddarwyd y wlad {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The currency {0} was successfully created." xml:space="preserve">
<value>Crëwyd yr arian cyfred {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The currency {0} was successfully deleted." xml:space="preserve">
<value>Dilëwyd yr arian cyfred {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The currency {0} was successfully updated." xml:space="preserve">
<value>Diweddarwyd yr arian cyfred {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The role <b>{0}</b> was successfully created." xml:space="preserve">
<value>Crëwyd y role <b>{0}</b> yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The role <b>{0}</b> was successfully deleted." xml:space="preserve">
<value>Dilëwyd y role <b>{0}</b> yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The role <b>{0}</b> was successfully updated." xml:space="preserve">
<value>Diweddarwyd y role <b>{0}</b> yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The state {0} was successfully created." xml:space="preserve">
<value>Crëwyd y dalaith {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The state {0} was successfully deleted." xml:space="preserve">
<value>Dilëwyd y dalaith {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="The state {0} was successfully updated." xml:space="preserve">
<value>Diweddarwyd y dalaith {0} yn llwyddiannus.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="user account for {0} was successfully approved." xml:space="preserve">
<value>user cyfrif am {0} gafodd yn llwyddiannus approved.</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="user account for {0} was successfully created." xml:space="preserve">
<value>user cyfrif am {0} gafodd yn llwyddiannus ei greu</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="user account for {0} was successfully deleted." xml:space="preserve">
<value>user cyfrif am {0} gafodd yn llwyddiannus ei ddileu</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="user account for {0} was successfully updated." xml:space="preserve">
<value>user cyfrif am {0} gafodd yn llwyddiannus ei ddiweddaru</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="User Management" xml:space="preserve">
<value>Rheolaeth Defnyddwyr</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Your security code is: {0}" xml:space="preserve">
<value>Eich cod diogelwch yw: {0}</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - Edit Role" xml:space="preserve">
<value>{0} - Golygu Rôl</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - Locked Out User Accounts" xml:space="preserve">
<value>{0} - Cyfrifon Defnyddwyr Wedi Cloi</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - Manage User" xml:space="preserve">
<value>{0} - Rheoli Defnyddiwr</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - New Role" xml:space="preserve">
<value>{0} - Rôl Newydd</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - New User" xml:space="preserve">
<value>{0} - Defnyddiwr Newydd</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - Non Role Members" xml:space="preserve">
<value>{0} - Aelodau Heb Rôl</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - Role Management" xml:space="preserve">
<value>{0} - Rheolaeth Rolau</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - Role Members" xml:space="preserve">
<value>{0} - Aelodau Rôl</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - User Accounts Pending Approval" xml:space="preserve">
<value>{0} - Defnyddiwr Accounts Ar Aros Approval</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - User Management" xml:space="preserve">
<value>{0} - Rheolaeth Defnyddwyr</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} - {1}" xml:space="preserve">
<value>{0} - {1}</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} States" xml:space="preserve">
<value>{0} States</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} was successfully added to the role {1}." xml:space="preserve">
<value>{0} was successfully added to the role {1}.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="{0} was successfully removed from the role {1}." xml:space="preserve">
<value>{0} was successfully removed from the role {1}.</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="-Please select-" xml:space="preserve">
<value>-Os gwelwch yn dda select-</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Basic site settings for {0} were successfully updated." xml:space="preserve">
<value>Sylfaenol site gosodiadau am {0} were yn llwyddiannus ei ddiweddaru</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Captcha Settings" xml:space="preserve">
<value>Captcha Gosodiadau</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Captcha Settings for {0} was successfully updated." xml:space="preserve">
<value>Captcha Gosodiadau am {0} gafodd yn llwyddiannus ei ddiweddaru</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>
<data name="Company Info" xml:space="preserve">
<value>Cwmni Info</value>
<comment>Translated to Welsh - 2025-01-27</comment>
</data>
<data name="Company Info for {0} was successfully updated." xml:space="preserve">
<value>Cwmni Info am {0} gafodd yn llwyddiannus ei ddiweddaru</value>
<comment>Translated to Welsh - 2025-01-27 - Final review</comment>
</data>