aboutsummaryrefslogtreecommitdiffstats
path: root/util/strings.php
blob: 70b5b202b85f107c8ab71d976d4430f3ee609e55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
<?php

function string_plural_select($n){
	return ($n != 1);
}

$a->strings['Not Found'] = 'Not Found';
$a->strings['Page not found.' ] = 'Page not found.' ;
$a->strings['Permission denied'] = 'Permission denied';
$a->strings['Permission denied.'] = 'Permission denied.';
$a->strings['Delete this item?'] = 'Delete this item?';
$a->strings['Comment'] = 'Comment';
$a->strings['Create a New Account'] = 'Create a New Account';
$a->strings['Register'] = 'Register';
$a->strings['Nickname or Email address: '] = 'Nickname or Email address: ';
$a->strings['Password: '] = 'Password: ';
$a->strings['Login'] = 'Login';
$a->strings['Nickname/Email/OpenID: '] = 'Nickname/Email/OpenID: ';
$a->strings["Password \x28if not OpenID\x29: "] = "Password \x28if not OpenID\x29: ";
$a->strings['Forgot your password?'] = 'Forgot your password?';
$a->strings['Password Reset'] = 'Password Reset';
$a->strings['Logout'] = 'Logout';
$a->strings['prev'] = 'prev';
$a->strings['first'] = 'first';
$a->strings['last'] = 'last';
$a->strings['next'] = 'next';
$a->strings['%s likes this.'] = '%s likes this.';
$a->strings['%s doesn\'t like this.'] = '%s doesn\'t like this.';
$a->strings['<span  %1$s>%2$d people</span> like this.'] = '<span  %1$s>%2$d people</span> like this.';
$a->strings['<span  %1$s>%2$d people</span> don\'t like this.'] = '<span  %1$s>%2$d people</span> don\'t like this.';
$a->strings['and'] = 'and';
$a->strings[', and %d other people'] = ', and %d other people';
$a->strings['%s like this.'] = '%s like this.';
$a->strings['%s don\'t like this.'] = '%s don\'t like this.';
$a->strings['No contacts'] = 'No contacts';
$a->strings['View Contacts'] = 'View Contacts';
$a->strings['Search'] = 'Search';
$a->strings['No profile'] = 'No profile';
$a->strings['Connect'] = 'Connect';
$a->strings['Location:'] = 'Location:';
$a->strings[', '] = ', ';
$a->strings['Gender:'] = 'Gender:';
$a->strings['Status:'] = 'Status:';
$a->strings['Homepage:'] = 'Homepage:';
$a->strings['Monday'] = 'Monday';
$a->strings['Tuesday'] = 'Tuesday';
$a->strings['Wednesday'] = 'Wednesday';
$a->strings['Thursday'] = 'Thursday';
$a->strings['Friday'] = 'Friday';
$a->strings['Saturday'] = 'Saturday';
$a->strings['Sunday'] = 'Sunday';
$a->strings['January'] = 'January';
$a->strings['February'] = 'February';
$a->strings['March'] = 'March';
$a->strings['April'] = 'April';
$a->strings['May'] = 'May';
$a->strings['June'] = 'June';
$a->strings['July'] = 'July';
$a->strings['August'] = 'August';
$a->strings['September'] = 'September';
$a->strings['October'] = 'October';
$a->strings['November'] = 'November';
$a->strings['December'] = 'December';
$a->strings['g A l F d'] = 'g A l F d';
$a->strings['Birthday Reminders'] = 'Birthday Reminders';
$a->strings['Birthdays this week:'] = 'Birthdays this week:';
$a->strings["\x28Adjusted for local time\x29"] = "\x28Adjusted for local time\x29";
$a->strings['[today]'] = '[today]';
$a->strings['link to source'] = 'link to source';
$a->strings['%d Contact'] = array(
	0 => '%d Contact',
	1 => '%d Contacts',
);
$a->strings['Normal View'] = 'Normal View';
$a->strings['New Item View'] = 'New Item View';
$a->strings['Warning: This group contains %s from an insecure network.'] = 'Warning: This group contains %s from an insecure network.';
$a->strings['Private messages to this group are at risk of public disclosure.'] = 'Private messages to this group are at risk of public disclosure.';
$a->strings['Please enter a link URL:'] = 'Please enter a link URL:';
$a->strings['Please enter a YouTube link:'] = 'Please enter a YouTube link:';
$a->strings["Please enter a video\x28.ogg\x29 link/URL:"] = "Please enter a video\x28.ogg\x29 link/URL:";
$a->strings["Please enter an audio\x28.ogg\x29 link/URL:"] = "Please enter an audio\x28.ogg\x29 link/URL:";
$a->strings['Where are you right now?'] = 'Where are you right now?';
$a->strings['Enter a title for this item'] = 'Enter a title for this item';
$a->strings['Share'] = 'Share';
$a->strings['Upload photo'] = 'Upload photo';
$a->strings['Insert web link'] = 'Insert web link';
$a->strings['Insert YouTube video'] = 'Insert YouTube video';
$a->strings['Insert Vorbis [.ogg] video'] = 'Insert Vorbis [.ogg] video';
$a->strings['Insert Vorbis [.ogg] audio'] = 'Insert Vorbis [.ogg] audio';
$a->strings['Set your location'] = 'Set your location';
$a->strings['Clear browser location'] = 'Clear browser location';
$a->strings['Set title'] = 'Set title';
$a->strings['Please wait'] = 'Please wait';
$a->strings['Permission settings'] = 'Permission settings';
$a->strings['CC: email addresses'] = 'CC: email addresses';
$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com';
$a->strings['No such group'] = 'No such group';
$a->strings['Group is empty'] = 'Group is empty';
$a->strings['Group: '] = 'Group: ';
$a->strings['Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.'] = 'Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.';
$a->strings['%d member'] = array(
	0 => '%d member',
	1 => '%d members',
);
$a->strings['Applications'] = 'Applications';
$a->strings["Invite Friends"] = "Invite Friends";
$a->strings['Find People With Shared Interests'] = 'Find People With Shared Interests';
$a->strings['Connect/Follow'] = 'Connect/Follow';
$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Example: bob@example.com, http://example.com/barbara';
$a->strings['Follow'] = 'Follow';
$a->strings['Could not access contact record.'] = 'Could not access contact record.';
$a->strings['Could not locate selected profile.'] = 'Could not locate selected profile.';
$a->strings['Contact updated.'] = 'Contact updated.';
$a->strings['Failed to update contact record.'] = 'Failed to update contact record.';
$a->strings['Contact has been '] = 'Contact has been ';
$a->strings['blocked'] = 'blocked';
$a->strings['unblocked'] = 'unblocked';
$a->strings['Contact has been blocked'] = 'Contact has been blocked';
$a->strings['Contact has been unblocked'] = 'Contact has been unblocked';
$a->strings['Contact has been ignored'] = 'Contact has been ignored';
$a->strings['Contact has been unignored'] = 'Contact has been unignored';
$a->strings['stopped following'] = 'stopped following';
$a->strings['Contact has been removed.'] = 'Contact has been removed.';
$a->strings['Contact not found.'] = 'Contact not found.';
$a->strings['Mutual Friendship'] = 'Mutual Friendship';
$a->strings['is a fan of yours'] = 'is a fan of yours';
$a->strings['you are a fan of'] = 'you are a fan of';
$a->strings['Privacy Unavailable'] = 'Privacy Unavailable';
$a->strings['Private communications are not available for this contact.'] = 'Private communications are not available for this contact.';
$a->strings['Never'] = 'Never';
$a->strings["\x28Update was successful\x29"] = "\x28Update was successful\x29";
$a->strings["\x28Update was not successful\x29"] = "\x28Update was not successful\x29";
$a->strings['Contact Editor'] = 'Contact Editor';
$a->strings['Submit'] = 'Submit';
$a->strings['Profile Visibility'] = 'Profile Visibility';
$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Please choose the profile you would like to display to %s when viewing your profile securely.';
$a->strings['Contact Information / Notes'] = 'Contact Information / Notes';
$a->strings['Online Reputation'] = 'Online Reputation';
$a->strings['Occasionally your friends may wish to inquire about this person\'s online legitimacy.'] = 'Occasionally your friends may wish to inquire about this person\'s online legitimacy.';
$a->strings['You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them.'] = 'You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them.';
$a->strings['Please take a moment to elaborate on this selection if you feel it could be helpful to others.'] = 'Please take a moment to elaborate on this selection if you feel it could be helpful to others.';
$a->strings['Visit $name\'s profile'] = 'Visit $name\'s profile';
$a->strings['Block/Unblock contact'] = 'Block/Unblock contact';
$a->strings['Ignore contact'] = 'Ignore contact';
$a->strings['Delete contact'] = 'Delete contact';
$a->strings['Last updated: '] = 'Last updated: ';
$a->strings['Update public posts: '] = 'Update public posts: ';
$a->strings['Update now'] = 'Update now';
$a->strings['Unblock this contact'] = 'Unblock this contact';
$a->strings['Block this contact'] = 'Block this contact';
$a->strings['Unignore this contact'] = 'Unignore this contact';
$a->strings['Ignore this contact'] = 'Ignore this contact';
$a->strings['Currently blocked'] = 'Currently blocked';
$a->strings['Currently ignored'] = 'Currently ignored';
$a->strings['Contacts'] = 'Contacts';
$a->strings['Show Blocked Connections'] = 'Show Blocked Connections';
$a->strings['Hide Blocked Connections'] = 'Hide Blocked Connections';
$a->strings['Finding: '] = 'Finding: ';
$a->strings['Find'] = 'Find';
$a->strings['Visit $username\'s profile'] = 'Visit $username\'s profile';
$a->strings['Edit contact'] = 'Edit contact';
$a->strings['Profile not found.'] = 'Profile not found.';
$a->strings['Response from remote site was not understood.'] = 'Response from remote site was not understood.';
$a->strings['Unexpected response from remote site: '] = 'Unexpected response from remote site: ';
$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
$a->strings['Remote site reported: '] = 'Remote site reported: ';
$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
$a->strings['Unable to set contact photo.'] = 'Unable to set contact photo.';
$a->strings['is now friends with'] = 'is now friends with';
$a->strings['Our site encryption key is apparently messed up.'] = 'Our site encryption key is apparently messed up.';
$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.';
$a->strings['Contact record was not found for you on our site.'] = 'Contact record was not found for you on our site.';
$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'The ID provided by your system is a duplicate on our system. It should work if you try again.';
$a->strings['Unable to set your contact credentials on our system.'] = 'Unable to set your contact credentials on our system.';
$a->strings['Unable to update your contact profile details on our system'] = 'Unable to update your contact profile details on our system';
$a->strings["Connection accepted at %s"] = "Connection accepted at %s";
$a->strings['Administrator'] = 'Administrator';
$a->strings['noreply'] = 'noreply';
$a->strings["%s commented on an item at %s"] = "%s commented on an item at %s";
$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted.";
$a->strings['Profile location is not valid or does not contain profile information.'] = 'Profile location is not valid or does not contain profile information.';
$a->strings['Warning: profile location has no identifiable owner name.'] = 'Warning: profile location has no identifiable owner name.';
$a->strings['Warning: profile location has no profile photo.'] = 'Warning: profile location has no profile photo.';
$a->strings["Introduction complete."] = "Introduction complete.";
$a->strings['Unrecoverable protocol error.'] = 'Unrecoverable protocol error.';
$a->strings['Profile unavailable.'] = 'Profile unavailable.';
$a->strings['%s has received too many connection requests today.'] = '%s has received too many connection requests today.';
$a->strings['Spam protection measures have been invoked.'] = 'Spam protection measures have been invoked.';
$a->strings['Friends are advised to please try again in 24 hours.'] = 'Friends are advised to please try again in 24 hours.';
$a->strings["Invalid locator"] = "Invalid locator";
$a->strings["Unable to resolve your name at the provided location."] = "Unable to resolve your name at the provided location.";
$a->strings['You have already introduced yourself here.'] = 'You have already introduced yourself here.';
$a->strings['Apparently you are already friends with %s.'] = 'Apparently you are already friends with %s.';
$a->strings['Invalid profile URL.'] = 'Invalid profile URL.';
$a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.';
$a->strings['Your introduction has been sent.'] = 'Your introduction has been sent.';
$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
$a->strings['Welcome home %s.'] = 'Welcome home %s.';
$a->strings['Please confirm your introduction/connection request to %s.'] = 'Please confirm your introduction/connection request to %s.';
$a->strings['Confirm'] = 'Confirm';
$a->strings['[Name Withheld]'] = '[Name Withheld]';
$a->strings["Introduction received at "] = "Introduction received at ";
$a->strings['Friend/Connection Request'] = 'Friend/Connection Request';
$a->strings['Please answer the following:'] = 'Please answer the following:';
$a->strings['Does $name know you?'] = 'Does $name know you?';
$a->strings['Yes'] = 'Yes';
$a->strings['No'] = 'No';
$a->strings['Add a personal note:'] = 'Add a personal note:';
$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Please enter your profile address from one of the following supported social networks:';
$a->strings['Friendika'] = 'Friendika';
$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web';
$a->strings["Private \x28secure\x29 network"] = "Private \x28secure\x29 network";
$a->strings["Public \x28insecure\x29 network"] = "Public \x28insecure\x29 network";
$a->strings['Your profile address:'] = 'Your profile address:';
$a->strings['Submit Request'] = 'Submit Request';
$a->strings['Cancel'] = 'Cancel';
$a->strings["%d required parameter was not found at the given location"] = array(
	0 => "%d required parameter was not found at the given location",
	1 => "%d required parameters were not found at the given location",
);
$a->strings['Global Directory'] = 'Global Directory';
$a->strings['Site Directory'] = 'Site Directory';
$a->strings['Age: '] = 'Age: ';
$a->strings['Gender: '] = 'Gender: ';
$a->strings["No entries \x28some entries may be hidden\x29."] = "No entries \x28some entries may be hidden\x29.";
$a->strings['Item not found.'] = 'Item not found.';
$a->strings['Item has been removed.'] = 'Item has been removed.';
$a->strings['Item not found'] = 'Item not found';
$a->strings['Edit post'] = 'Edit post';
$a->strings['Edit'] = 'Edit';
$a->strings['The profile address specified does not provide adequate information.'] = 'The profile address specified does not provide adequate information.';
$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited profile. This person will be unable to receive direct/personal notifications from you.';
$a->strings['Unable to retrieve contact information.'] = 'Unable to retrieve contact information.';
$a->strings['following'] = 'following';
$a->strings['This is Friendika version'] = 'This is Friendika version';
$a->strings['running at web location'] = 'running at web location';
$a->strings['Shared content within the Friendika network is provided under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>'] = 'Shared content within the Friendika network is provided under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>';
$a->strings['Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.'] = 'Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.';
$a->strings['Bug reports and issues: please visit'] = 'Bug reports and issues: please visit';
$a->strings['Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com'] = 'Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com';
$a->strings['Installed plugins/addons/apps'] = 'Installed plugins/addons/apps';
$a->strings['No installed plugins/addons/apps'] = 'No installed plugins/addons/apps';
$a->strings['Group created.'] = 'Group created.';
$a->strings['Could not create group.'] = 'Could not create group.';
$a->strings['Group not found.'] = 'Group not found.';
$a->strings['Group name changed.'] = 'Group name changed.';
$a->strings['Create a group of contacts/friends.'] = 'Create a group of contacts/friends.';
$a->strings['Group Name: '] = 'Group Name: ';
$a->strings['Group removed.'] = 'Group removed.';
$a->strings['Unable to remove group.'] = 'Unable to remove group.';
$a->strings['Delete'] = 'Delete';
$a->strings['Click on a contact to add or remove.'] = 'Click on a contact to add or remove.';
$a->strings['Group Editor'] = 'Group Editor';
$a->strings['Members'] = 'Members';
$a->strings['All Contacts'] = 'All Contacts';
$a->strings["Welcome to %s"] = "Welcome to %s";
$a->strings['Could not create/connect to database.'] = 'Could not create/connect to database.';
$a->strings['Connected to database.'] = 'Connected to database.';
$a->strings['Proceed with Installation'] = 'Proceed with Installation';
$a->strings['Your Friendika site database has been installed.'] = 'Your Friendika site database has been installed.';
$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: You will need to [manually] setup a scheduled task for the poller.';
$a->strings['Please see the file "INSTALL.txt".'] = 'Please see the file "INSTALL.txt".';
$a->strings['Proceed to registration'] = 'Proceed to registration';
$a->strings['Database import failed.'] = 'Database import failed.';
$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'You may need to import the file "database.sql" manually using phpmyadmin or mysql.';
$a->strings['Welcome to Friendika.'] = 'Welcome to Friendika.';
$a->strings['Friendika Social Network'] = 'Friendika Social Network';
$a->strings['Installation'] = 'Installation';
$a->strings['In order to install Friendika we need to know how to contact your database.'] = 'In order to install Friendika we need to know how to contact your database.';
$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Please contact your hosting provider or site administrator if you have questions about these settings.';
$a->strings['The database you specify below must already exist. If it does not, please create it before continuing.'] = 'The database you specify below must already exist. If it does not, please create it before continuing.';
$a->strings['Database Server Name'] = 'Database Server Name';
$a->strings['Database Login Name'] = 'Database Login Name';
$a->strings['Database Login Password'] = 'Database Login Password';
$a->strings['Database Name'] = 'Database Name';
$a->strings['Please select a default timezone for your website'] = 'Please select a default timezone for your website';
$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.';
$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'This is required. Please adjust the configuration file .htconfig.php accordingly.';
$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'The command line version of PHP on your system does not have "register_argc_argv" enabled.';
$a->strings['This is required for message delivery to work.'] = 'This is required for message delivery to work.';
$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys';
$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".';
$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: Apache webserver mod-rewrite module is required but not installed.';
$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: libCURL PHP module required but not installed.';
$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: GD graphics PHP module with JPEG support required but not installed.';
$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: openssl PHP module required but not installed.';
$a->strings['Error: mysqli PHP module required but not installed.'] = 'Error: mysqli PHP module required but not installed.';
$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.';
$a->strings['This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'] = 'This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.';
$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Please check with your site documentation or support people to see if this situation can be corrected.';
$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.';
$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.';
$a->strings['Errors encountered creating database tables.'] = 'Errors encountered creating database tables.';
$a->strings['%s : Not a valid email address.'] = '%s : Not a valid email address.';
$a->strings['%s : Message delivery failed.'] = '%s : Message delivery failed.';
$a->strings['Send invitations'] = 'Send invitations';
$a->strings['Enter email addresses, one per line:'] = 'Enter email addresses, one per line:';
$a->strings['Your message:'] = 'Your message:';
$a->strings['To accept this invitation, please visit:'] = 'To accept this invitation, please visit:';
$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Once you have registered, please connect with me via my profile page at:';
$a->strings["%d message sent."] = array(
	0 => "%d message sent.",
	1 => "%d messages sent.",
);
$a->strings['Unable to locate original post.'] = 'Unable to locate original post.';
$a->strings['Empty post discarded.'] = 'Empty post discarded.';
$a->strings['Wall Photos'] = 'Wall Photos';
$a->strings["%s commented on your item at %s"] = "%s commented on your item at %s";
$a->strings["Administrator"] = "Administrator";
$a->strings["%s posted on your profile wall at %s"] = "%s posted on your profile wall at %s";
$a->strings['System error. Post not saved.'] = 'System error. Post not saved.';
$a->strings['You may visit them online at'] = 'You may visit them online at';
$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Please contact the sender by replying to this post if you do not wish to receive these messages.';
$a->strings['%s posted an update.'] = '%s posted an update.';
$a->strings['photo'] = 'photo';
$a->strings['status'] = 'status';
$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s likes %2$s\'s %3$s';
$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = '%1$s doesn\'t like %2$s\'s %3$s';
$a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.';
$a->strings['Visible to:'] = 'Visible to:';
$a->strings['Password reset request issued. Check your email.'] = 'Password reset request issued. Check your email.';
$a->strings['Password reset requested at %s'] = 'Password reset requested at %s';
$a->strings["Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."] = "Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed.";
$a->strings['Your password has been reset as requested.'] = 'Your password has been reset as requested.';
$a->strings['Your new password is'] = 'Your new password is';
$a->strings['Save or copy your new password - and then'] = 'Save or copy your new password - and then';
$a->strings['click here to login'] = 'click here to login';
$a->strings['Your password may be changed from the <em>Settings</em> page after successful login.'] = 'Your password may be changed from the <em>Settings</em> page after successful login.';
$a->strings['Forgot your Password?'] = 'Forgot your Password?';
$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Enter your email address and submit to have your password reset. Then check your email for further instructions.';
$a->strings['Nickname or Email: '] = 'Nickname or Email: ';
$a->strings['Reset'] = 'Reset';
$a->strings["Welcome back %s"] = "Welcome back %s";
$a->strings['Manage Identities and/or Pages'] = 'Manage Identities and/or Pages';
$a->strings["\x28Toggle between different identities or community/group pages which share your account details.\x29"] = "\x28Toggle between different identities or community/group pages which share your account details.\x29";
$a->strings['Select an identity to manage: '] = 'Select an identity to manage: ';
$a->strings['Profile Match'] = 'Profile Match';
$a->strings['No matches'] = 'No matches';
$a->strings['No recipient selected.'] = 'No recipient selected.';
$a->strings['[no subject]'] = '[no subject]';
$a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.';
$a->strings['Message sent.'] = 'Message sent.';
$a->strings['Message could not be sent.'] = 'Message could not be sent.';
$a->strings['Messages'] = 'Messages';
$a->strings['Inbox'] = 'Inbox';
$a->strings['Outbox'] = 'Outbox';
$a->strings['New Message'] = 'New Message';
$a->strings['Message deleted.'] = 'Message deleted.';
$a->strings['Conversation removed.'] = 'Conversation removed.';
$a->strings['Send Private Message'] = 'Send Private Message';
$a->strings['To:'] = 'To:';
$a->strings['Subject:'] = 'Subject:';
$a->strings['No messages.'] = 'No messages.';
$a->strings['Delete conversation'] = 'Delete conversation';
$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A';
$a->strings['Message not available.'] = 'Message not available.';
$a->strings['Delete message'] = 'Delete message';
$a->strings['Send Reply'] = 'Send Reply';
$a->strings['Invalid request identifier.'] = 'Invalid request identifier.';
$a->strings['Discard'] = 'Discard';
$a->strings['Ignore'] = 'Ignore';
$a->strings['Pending Friend/Connect Notifications'] = 'Pending Friend/Connect Notifications';
$a->strings['Show Ignored Requests'] = 'Show Ignored Requests';
$a->strings['Hide Ignored Requests'] = 'Hide Ignored Requests';
$a->strings['Claims to be known to you: '] = 'Claims to be known to you: ';
$a->strings['yes'] = 'yes';
$a->strings['no'] = 'no';
$a->strings['Approve as: '] = 'Approve as: ';
$a->strings['Friend'] = 'Friend';
$a->strings['Fan/Admirer'] = 'Fan/Admirer';
$a->strings['Notification type: '] = 'Notification type: ';
$a->strings['Friend/Connect Request'] = 'Friend/Connect Request';
$a->strings['New Follower'] = 'New Follower';
$a->strings['Approve'] = 'Approve';
$a->strings['No notifications.'] = 'No notifications.';
$a->strings['User registrations waiting for confirm'] = 'User registrations waiting for confirm';
$a->strings['Deny'] = 'Deny';
$a->strings['No registrations.'] = 'No registrations.';
$a->strings['Post successful.'] = 'Post successful.';
$a->strings['Login failed.'] = 'Login failed.';
$a->strings["Welcome back "] = "Welcome back ";
$a->strings['Photo Albums'] = 'Photo Albums';
$a->strings['Contact Photos'] = 'Contact Photos';
$a->strings['Contact information unavailable'] = 'Contact information unavailable';
$a->strings['Profile Photos'] = 'Profile Photos';
$a->strings['Album not found.'] = 'Album not found.';
$a->strings['Delete Album'] = 'Delete Album';
$a->strings['Delete Photo'] = 'Delete Photo';
$a->strings['was tagged in a'] = 'was tagged in a';
$a->strings['by'] = 'by';
$a->strings['Image exceeds size limit of '] = 'Image exceeds size limit of ';
$a->strings['Unable to process image.'] = 'Unable to process image.';
$a->strings['Image upload failed.'] = 'Image upload failed.';
$a->strings['No photos selected'] = 'No photos selected';
$a->strings['Upload Photos'] = 'Upload Photos';
$a->strings['New album name: '] = 'New album name: ';
$a->strings['or existing album name: '] = 'or existing album name: ';
$a->strings['Permissions'] = 'Permissions';
$a->strings['Edit Album'] = 'Edit Album';
$a->strings['View Photo'] = 'View Photo';
$a->strings['Photo not available'] = 'Photo not available';
$a->strings['Edit photo'] = 'Edit photo';
$a->strings['Private Message'] = 'Private Message';
$a->strings['<< Prev'] = '<< Prev';
$a->strings['View Full Size'] = 'View Full Size';
$a->strings['Next >>'] = 'Next >>';
$a->strings['Tags: '] = 'Tags: ';
$a->strings['[Remove any tag]'] = '[Remove any tag]';
$a->strings['New album name'] = 'New album name';
$a->strings['Caption'] = 'Caption';
$a->strings['Add a Tag'] = 'Add a Tag';
$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping';
$a->strings["I like this \x28toggle\x29"] = "I like this \x28toggle\x29";
$a->strings["I don't like this \x28toggle\x29"] = "I don't like this \x28toggle\x29";
$a->strings['This is you'] = 'This is you';
$a->strings['Recent Photos'] = 'Recent Photos';
$a->strings['Upload New Photos'] = 'Upload New Photos';
$a->strings['View Album'] = 'View Album';
$a->strings['Status'] = 'Status';
$a->strings['Profile'] = 'Profile';
$a->strings['Photos'] = 'Photos';
$a->strings['Image uploaded but image cropping failed.'] = 'Image uploaded but image cropping failed.';
$a->strings['Unable to process image'] = 'Unable to process image';
$a->strings['Upload File:'] = 'Upload File:';
$a->strings['Upload Profile Photo'] = 'Upload Profile Photo';
$a->strings['Upload'] = 'Upload';
$a->strings['or'] = 'or';
$a->strings['select a photo from your photo albums'] = 'select a photo from your photo albums';
$a->strings['Crop Image'] = 'Crop Image';
$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Please adjust the image cropping for optimum viewing.';
$a->strings['Done Editing'] = 'Done Editing';
$a->strings['Image uploaded successfully.'] = 'Image uploaded successfully.';
$a->strings['Profile Name is required.'] = 'Profile Name is required.';
$a->strings['Profile updated.'] = 'Profile updated.';
$a->strings['Profile deleted.'] = 'Profile deleted.';
$a->strings['Profile-'] = 'Profile-';
$a->strings['New profile created.'] = 'New profile created.';
$a->strings['Profile unavailable to clone.'] = 'Profile unavailable to clone.';
$a->strings['Hide my contact/friend list from viewers of this profile?'] = 'Hide my contact/friend list from viewers of this profile?';
$a->strings['Edit Profile Details'] = 'Edit Profile Details';
$a->strings['View this profile'] = 'View this profile';
$a->strings['Create a new profile using these settings'] = 'Create a new profile using these settings';
$a->strings['Clone this profile'] = 'Clone this profile';
$a->strings['Delete this profile'] = 'Delete this profile';
$a->strings['Profile Name:'] = 'Profile Name:';
$a->strings['Your Full Name:'] = 'Your Full Name:';
$a->strings['Title/Description:'] = 'Title/Description:';
$a->strings['Your Gender:'] = 'Your Gender:';
$a->strings["Birthday \x28y/m/d\x29:"] = "Birthday \x28y/m/d\x29:";
$a->strings['Street Address:'] = 'Street Address:';
$a->strings['Locality/City:'] = 'Locality/City:';
$a->strings['Postal/Zip Code:'] = 'Postal/Zip Code:';
$a->strings['Country:'] = 'Country:';
$a->strings['Region/State:'] = 'Region/State:';
$a->strings['<span class="heart">&hearts;</span> Marital Status:'] = '<span class="heart">&hearts;</span> Marital Status:';
$a->strings["Who: \x28if applicable\x29"] = "Who: \x28if applicable\x29";
$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Examples: cathy123, Cathy Williams, cathy@example.com';
$a->strings['Sexual Preference:'] = 'Sexual Preference:';
$a->strings['Homepage URL:'] = 'Homepage URL:';
$a->strings['Political Views:'] = 'Political Views:';
$a->strings['Religious Views:'] = 'Religious Views:';
$a->strings['Public Keywords:'] = 'Public Keywords:';
$a->strings['Private Keywords:'] = 'Private Keywords:';
$a->strings['Example: fishing photography software'] = 'Example: fishing photography software';
$a->strings["\x28Used for suggesting potential friends, can be seen by others\x29"] = "\x28Used for suggesting potential friends, can be seen by others\x29";
$a->strings["\x28Used for searching profiles, never shown to others\x29"] = "\x28Used for searching profiles, never shown to others\x29";
$a->strings['Tell us about yourself...'] = 'Tell us about yourself...';
$a->strings['Hobbies/Interests'] = 'Hobbies/Interests';
$a->strings['Contact information and Social Networks'] = 'Contact information and Social Networks';
$a->strings['Musical interests'] = 'Musical interests';
$a->strings['Books, literature'] = 'Books, literature';
$a->strings['Television'] = 'Television';
$a->strings['Film/dance/culture/entertainment'] = 'Film/dance/culture/entertainment';
$a->strings['Love/romance'] = 'Love/romance';
$a->strings['Work/employment'] = 'Work/employment';
$a->strings['School/education'] = 'School/education';
$a->strings['This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'] = 'This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.';
$a->strings['Profiles'] = 'Profiles';
$a->strings['Change profile photo'] = 'Change profile photo';
$a->strings['Create New Profile'] = 'Create New Profile';
$a->strings['Profile Image'] = 'Profile Image';
$a->strings['Invalid OpenID url'] = 'Invalid OpenID url';
$a->strings['Please enter the required information.'] = 'Please enter the required information.';
$a->strings['Please use a shorter name.'] = 'Please use a shorter name.';
$a->strings['Name too short.'] = 'Name too short.';
$a->strings["That doesn't appear to be your full \x28First Last\x29 name."] = "That doesn't appear to be your full \x28First Last\x29 name.";
$a->strings['Your email domain is not among those allowed on this site.'] = 'Your email domain is not among those allowed on this site.';
$a->strings['Not a valid email address.'] = 'Not a valid email address.';
$a->strings['Cannot use that email.'] = 'Cannot use that email.';
$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.';
$a->strings['Nickname is already registered. Please choose another.'] = 'Nickname is already registered. Please choose another.';
$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.';
$a->strings['An error occurred during registration. Please try again.'] = 'An error occurred during registration. Please try again.';
$a->strings['An error occurred creating your default profile. Please try again.'] = 'An error occurred creating your default profile. Please try again.';
$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registration successful. Please check your email for further instructions.';
$a->strings['Failed to send email message. Here is the message that failed.'] = 'Failed to send email message. Here is the message that failed.';
$a->strings['Your registration can not be processed.'] = 'Your registration can not be processed.';
$a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site owner.';
$a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'.";
$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.';
$a->strings["Your OpenID \x28optional\x29: "] = "Your OpenID \x28optional\x29: ";
$a->strings['Members of this network prefer to communicate with real people who use their real names.'] = 'Members of this network prefer to communicate with real people who use their real names.';
$a->strings['Include your profile in member directory?'] = 'Include your profile in member directory?';
$a->strings['Registration'] = 'Registration';
$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': ';
$a->strings['Your Email Address: '] = 'Your Email Address: ';
$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'] = 'Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.';
$a->strings['Choose a nickname: '] = 'Choose a nickname: ';
$a->strings['Please login.'] = 'Please login.';
$a->strings['Account approved.'] = 'Account approved.';
$a->strings['Remove My Account'] = 'Remove My Account';
$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'This will completely remove your account. Once this has been done it is not recoverable.';
$a->strings['Please enter your password for verification:'] = 'Please enter your password for verification:';
$a->strings['No results.'] = 'No results.';
$a->strings['Passwords do not match. Password unchanged.'] = 'Passwords do not match. Password unchanged.';
$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Empty passwords are not allowed. Password unchanged.';
$a->strings['Password changed.'] = 'Password changed.';
$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.';
$a->strings[' Please use a shorter name.'] = ' Please use a shorter name.';
$a->strings[' Name too short.'] = ' Name too short.';
$a->strings[' Not valid email.'] = ' Not valid email.';
$a->strings[' Cannot change to that email.'] = ' Cannot change to that email.';
$a->strings['Settings updated.'] = 'Settings updated.';
$a->strings['Plugin Settings'] = 'Plugin Settings';
$a->strings['Account Settings'] = 'Account Settings';
$a->strings['No Plugin settings configured'] = 'No Plugin settings configured';
$a->strings['Normal Account'] = 'Normal Account';
$a->strings['This account is a normal personal profile'] = 'This account is a normal personal profile';
$a->strings['Soapbox Account'] = 'Soapbox Account';
$a->strings['Automatically approve all connection/friend requests as read-only fans'] = 'Automatically approve all connection/friend requests as read-only fans';
$a->strings['Community/Celebrity Account'] = 'Community/Celebrity Account';
$a->strings['Automatically approve all connection/friend requests as read-write fans'] = 'Automatically approve all connection/friend requests as read-write fans';
$a->strings['Automatic Friend Account'] = 'Automatic Friend Account';
$a->strings['Automatically approve all connection/friend requests as friends'] = 'Automatically approve all connection/friend requests as friends';
$a->strings['OpenID: '] = 'OpenID: ';
$a->strings["&nbsp;\x28Optional\x29 Allow this OpenID to login to this account."] = "&nbsp;\x28Optional\x29 Allow this OpenID to login to this account.";
$a->strings['Publish your default profile in site directory?'] = 'Publish your default profile in site directory?';
$a->strings['Publish your default profile in global social directory?'] = 'Publish your default profile in global social directory?';
$a->strings['Profile is <strong>not published</strong>.'] = 'Profile is <strong>not published</strong>.';
$a->strings['Your profile address is'] = 'Your profile address is';
$a->strings['Export Personal Data'] = 'Export Personal Data';
$a->strings['Basic Settings'] = 'Basic Settings';
$a->strings['Full Name:'] = 'Full Name:';
$a->strings['Email Address:'] = 'Email Address:';
$a->strings['Your Timezone:'] = 'Your Timezone:';
$a->strings['Default Post Location:'] = 'Default Post Location:';
$a->strings['Use Browser Location:'] = 'Use Browser Location:';
$a->strings['Display Theme:'] = 'Display Theme:';
$a->strings['Security and Privacy Settings'] = 'Security and Privacy Settings';
$a->strings['Maximum Friend Requests/Day:'] = 'Maximum Friend Requests/Day:';
$a->strings["\x28to prevent spam abuse\x29"] = "\x28to prevent spam abuse\x29";
$a->strings['Allow friends to post to your profile page:'] = 'Allow friends to post to your profile page:';
$a->strings["Automatically expire \x28delete\x29 posts older than"] = "Automatically expire \x28delete\x29 posts older than";
$a->strings['days'] = 'days';
$a->strings['Notification Settings'] = 'Notification Settings';
$a->strings['Send a notification email when:'] = 'Send a notification email when:';
$a->strings['You receive an introduction'] = 'You receive an introduction';
$a->strings['Your introductions are confirmed'] = 'Your introductions are confirmed';
$a->strings['Someone writes on your profile wall'] = 'Someone writes on your profile wall';
$a->strings['Someone writes a followup comment'] = 'Someone writes a followup comment';
$a->strings['You receive a private message'] = 'You receive a private message';
$a->strings['Password Settings'] = 'Password Settings';
$a->strings['Leave password fields blank unless changing'] = 'Leave password fields blank unless changing';
$a->strings['New Password:'] = 'New Password:';
$a->strings['Confirm:'] = 'Confirm:';
$a->strings['Advanced Page Settings'] = 'Advanced Page Settings';
$a->strings['Default Post Permissions'] = 'Default Post Permissions';
$a->strings['Tag removed'] = 'Tag removed';
$a->strings['Remove Item Tag'] = 'Remove Item Tag';
$a->strings['Select a tag to remove: '] = 'Select a tag to remove: ';
$a->strings['Remove'] = 'Remove';
$a->strings['No contacts.'] = 'No contacts.';
$a->strings['Visible To:'] = 'Visible To:';
$a->strings['Groups'] = 'Groups';
$a->strings['Except For:'] = 'Except For:';
$a->strings['Logged out.'] = 'Logged out.';
$a->strings['Unknown | Not categorised'] = 'Unknown | Not categorised';
$a->strings['Block immediately'] = 'Block immediately';
$a->strings['Shady, spammer, self-marketer'] = 'Shady, spammer, self-marketer';
$a->strings['Known to me, but no opinion'] = 'Known to me, but no opinion';
$a->strings['OK, probably harmless'] = 'OK, probably harmless';
$a->strings['Reputable, has my trust'] = 'Reputable, has my trust';
$a->strings['Frequently'] = 'Frequently';
$a->strings['Hourly'] = 'Hourly';
$a->strings['Twice daily'] = 'Twice daily';
$a->strings['Daily'] = 'Daily';
$a->strings['Weekly'] = 'Weekly';
$a->strings['Monthly'] = 'Monthly';
$a->strings['View %s\'s profile'] = 'View %s\'s profile';
$a->strings['View in context'] = 'View in context';
$a->strings['See more posts like this'] = 'See more posts like this';
$a->strings['See all %d comments'] = 'See all %d comments';
$a->strings['to'] = 'to';
$a->strings['Wall-to-Wall'] = 'Wall-to-Wall';
$a->strings['via Wall-To-Wall:'] = 'via Wall-To-Wall:';
$a->strings['Miscellaneous'] = 'Miscellaneous';
$a->strings['less than a second ago'] = 'less than a second ago';
$a->strings['year'] = 'year';
$a->strings['years'] = 'years';
$a->strings['month'] = 'month';
$a->strings['months'] = 'months';
$a->strings['week'] = 'week';
$a->strings['weeks'] = 'weeks';
$a->strings['day'] = 'day';
$a->strings['hour'] = 'hour';
$a->strings['hours'] = 'hours';
$a->strings['minute'] = 'minute';
$a->strings['minutes'] = 'minutes';
$a->strings['second'] = 'second';
$a->strings['seconds'] = 'seconds';
$a->strings[' ago'] = ' ago';
$a->strings['Cannot locate DNS info for database server \'%s\''] = 'Cannot locate DNS info for database server \'%s\'';
$a->strings['Create a new group'] = 'Create a new group';
$a->strings['Everybody'] = 'Everybody';
$a->strings['Birthday:'] = 'Birthday:';
$a->strings['Home'] = 'Home';
$a->strings['Help'] = 'Help';
$a->strings['Apps'] = 'Apps';
$a->strings['Directory'] = 'Directory';
$a->strings['Network'] = 'Network';
$a->strings['Notifications'] = 'Notifications';
$a->strings['Manage'] = 'Manage';
$a->strings['Settings'] = 'Settings';
$a->strings['Embedding disabled'] = 'Embedding disabled';
$a->strings['j F, Y'] = 'j F, Y';
$a->strings['j F'] = 'j F';
$a->strings['Age:'] = 'Age:';
$a->strings['<span class="heart">&hearts;</span> Status:'] = '<span class="heart">&hearts;</span> Status:';
$a->strings['Religion:'] = 'Religion:';
$a->strings['About:'] = 'About:';
$a->strings['Hobbies/Interests:'] = 'Hobbies/Interests:';
$a->strings['Contact information and Social Networks:'] = 'Contact information and Social Networks:';
$a->strings['Musical interests:'] = 'Musical interests:';
$a->strings['Books, literature:'] = 'Books, literature:';
$a->strings['Television:'] = 'Television:';
$a->strings['Film/dance/culture/entertainment:'] = 'Film/dance/culture/entertainment:';
$a->strings['Love/Romance:'] = 'Love/Romance:';
$a->strings['Work/employment:'] = 'Work/employment:';
$a->strings['School/education:'] = 'School/education:';
$a->strings['Male'] = 'Male';
$a->strings['Female'] = 'Female';
$a->strings['Currently Male'] = 'Currently Male';
$a->strings['Currently Female'] = 'Currently Female';
$a->strings['Mostly Male'] = 'Mostly Male';
$a->strings['Mostly Female'] = 'Mostly Female';
$a->strings['Transgender'] = 'Transgender';
$a->strings['Intersex'] = 'Intersex';
$a->strings['Transsexual'] = 'Transsexual';
$a->strings['Hermaphrodite'] = 'Hermaphrodite';
$a->strings['Neuter'] = 'Neuter';
$a->strings['Non-specific'] = 'Non-specific';
$a->strings['Other'] = 'Other';
$a->strings['Undecided'] = 'Undecided';
$a->strings['Males'] = 'Males';
$a->strings['Females'] = 'Females';
$a->strings['Gay'] = 'Gay';
$a->strings['Lesbian'] = 'Lesbian';
$a->strings['No Preference'] = 'No Preference';
$a->strings['Bisexual'] = 'Bisexual';
$a->strings['Autosexual'] = 'Autosexual';
$a->strings['Abstinent'] = 'Abstinent';
$a->strings['Virgin'] = 'Virgin';
$a->strings['Deviant'] = 'Deviant';
$a->strings['Fetish'] = 'Fetish';
$a->strings['Oodles'] = 'Oodles';
$a->strings['Nonsexual'] = 'Nonsexual';
$a->strings['Single'] = 'Single';
$a->strings['Lonely'] = 'Lonely';
$a->strings['Available'] = 'Available';
$a->strings['Unavailable'] = 'Unavailable';
$a->strings['Dating'] = 'Dating';
$a->strings['Unfaithful'] = 'Unfaithful';
$a->strings['Sex Addict'] = 'Sex Addict';
$a->strings['Friends'] = 'Friends';
$a->strings['Friends/Benefits'] = 'Friends/Benefits';
$a->strings['Casual'] = 'Casual';
$a->strings['Engaged'] = 'Engaged';
$a->strings['Married'] = 'Married';
$a->strings['Partners'] = 'Partners';
$a->strings['Cohabiting'] = 'Cohabiting';
$a->strings['Happy'] = 'Happy';
$a->strings['Not Looking'] = 'Not Looking';
$a->strings['Swinger'] = 'Swinger';
$a->strings['Betrayed'] = 'Betrayed';
$a->strings['Separated'] = 'Separated';
$a->strings['Unstable'] = 'Unstable';
$a->strings['Divorced'] = 'Divorced';
$a->strings['Widowed'] = 'Widowed';
$a->strings['Uncertain'] = 'Uncertain';
$a->strings['Complicated'] = 'Complicated';
$a->strings['Don\'t care'] = 'Don\'t care';
$a->strings['Ask me'] = 'Ask me';
$a->strings['Facebook disabled'] = 'Facebook disabled';
$a->strings['Facebook API key is missing.'] = 'Facebook API key is missing.';
$a->strings['Facebook Connect'] = 'Facebook Connect';
$a->strings['Install Facebook post connector'] = 'Install Facebook post connector';
$a->strings['Remove Facebook post connector'] = 'Remove Facebook post connector';
$a->strings['Post to Facebook by default'] = 'Post to Facebook by default';
$a->strings['Facebook'] = 'Facebook';
$a->strings['Facebook Connector Settings'] = 'Facebook Connector Settings';
$a->strings['Post to Facebook'] = 'Post to Facebook';
$a->strings['Image: '] = 'Image: ';
$a->strings['Select files to upload: '] = 'Select files to upload: ';
$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Use the following controls only if the Java uploader [above] fails to launch.';
$a->strings['Upload a file'] = 'Upload a file';
$a->strings['Drop files here to upload'] = 'Drop files here to upload';
$a->strings['Failed'] = 'Failed';
$a->strings['No files were uploaded.'] = 'No files were uploaded.';
$a->strings['Uploaded file is empty'] = 'Uploaded file is empty';
$a->strings['Uploaded file is too large'] = 'Uploaded file is too large';
$a->strings['File has an invalid extension, it should be one of '] = 'File has an invalid extension, it should be one of ';
$a->strings['Upload was cancelled, or server error encountered'] = 'Upload was cancelled, or server error encountered';
$a->strings['Randplace Settings'] = 'Randplace Settings';
$a->strings['Enable Randplace Plugin'] = 'Enable Randplace Plugin';
$a->strings['Post to StatusNet'] = 'Post to StatusNet';
$a->strings['StatusNet Posting Settings'] = 'StatusNet Posting Settings';
$a->strings['No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation.'] = 'No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation.';
$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key';
$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret';
$a->strings["Base API Path \x28remember the trailing /\x29"] = "Base API Path \x28remember the trailing /\x29";
$a->strings['To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet.'] = 'To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet.';
$a->strings['Log in with StatusNet'] = 'Log in with StatusNet';
$a->strings['Copy the security code from StatusNet here'] = 'Copy the security code from StatusNet here';
$a->strings['Currently connected to: '] = 'Currently connected to: ';
$a->strings['If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account as well.'] = 'If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account as well.';
$a->strings['Send public postings to StatusNet'] = 'Send public postings to StatusNet';
$a->strings['Clear OAuth configuration'] = 'Clear OAuth configuration';
$a->strings['Three Dimensional Tic-Tac-Toe'] = 'Three Dimensional Tic-Tac-Toe';
$a->strings['3D Tic-Tac-Toe'] = '3D Tic-Tac-Toe';
$a->strings['New game'] = 'New game';
$a->strings['New game with handicap'] = 'New game with handicap';
$a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. ';
$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.';
$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.';
$a->strings['You go first...'] = 'You go first...';
$a->strings['I\'m going first this time...'] = 'I\'m going first this time...';
$a->strings['You won!'] = 'You won!';
$a->strings['"Cat" game!'] = '"Cat" game!';
$a->strings['I won!'] = 'I won!';
$a->strings['Post to Twitter'] = 'Post to Twitter';
$a->strings['Twitter Posting Settings'] = 'Twitter Posting Settings';
$a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'No consumer key pair for Twitter found. Please contact your site administrator.';
$a->strings['At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.'] = 'At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.';
$a->strings['Copy the PIN from Twitter here'] = 'Copy the PIN from Twitter here';
$a->strings['If enabled all your <strong>public</strong> postings will be posted to the associated Twitter account as well.'] = 'If enabled all your <strong>public</strong> postings will be posted to the associated Twitter account as well.';
$a->strings['Send public postings to Twitter'] = 'Send public postings to Twitter';
$a->strings['Africa/Abidjan'] = 'Africa/Abidjan';
$a->strings['Africa/Accra'] = 'Africa/Accra';
$a->strings['Africa/Addis_Ababa'] = 'Africa/Addis_Ababa';
$a->strings['Africa/Algiers'] = 'Africa/Algiers';
$a->strings['Africa/Asmara'] = 'Africa/Asmara';
$a->strings['Africa/Asmera'] = 'Africa/Asmera';
$a->strings['Africa/Bamako'] = 'Africa/Bamako';
$a->strings['Africa/Bangui'] = 'Africa/Bangui';
$a->strings['Africa/Banjul'] = 'Africa/Banjul';
$a->strings['Africa/Bissau'] = 'Africa/Bissau';
$a->strings['Africa/Blantyre'] = 'Africa/Blantyre';
$a->strings['Africa/Brazzaville'] = 'Africa/Brazzaville';
$a->strings['Africa/Bujumbura'] = 'Africa/Bujumbura';
$a->strings['Africa/Cairo'] = 'Africa/Cairo';
$a->strings['Africa/Casablanca'] = 'Africa/Casablanca';
$a->strings['Africa/Ceuta'] = 'Africa/Ceuta';
$a->strings['Africa/Conakry'] = 'Africa/Conakry';
$a->strings['Africa/Dakar'] = 'Africa/Dakar';
$a->strings['Africa/Dar_es_Salaam'] = 'Africa/Dar_es_Salaam';
$a->strings['Africa/Djibouti'] = 'Africa/Djibouti';
$a->strings['Africa/Douala'] = 'Africa/Douala';
$a->strings['Africa/El_Aaiun'] = 'Africa/El_Aaiun';
$a->strings['Africa/Freetown'] = 'Africa/Freetown';
$a->strings['Africa/Gaborone'] = 'Africa/Gaborone';
$a->strings['Africa/Harare'] = 'Africa/Harare';
$a->strings['Africa/Johannesburg'] = 'Africa/Johannesburg';
$a->strings['Africa/Kampala'] = 'Africa/Kampala';
$a->strings['Africa/Khartoum'] = 'Africa/Khartoum';
$a->strings['Africa/Kigali'] = 'Africa/Kigali';
$a->strings['Africa/Kinshasa'] = 'Africa/Kinshasa';
$a->strings['Africa/Lagos'] = 'Africa/Lagos';
$a->strings['Africa/Libreville'] = 'Africa/Libreville';
$a->strings['Africa/Lome'] = 'Africa/Lome';
$a->strings['Africa/Luanda'] = 'Africa/Luanda';
$a->strings['Africa/Lubumbashi'] = 'Africa/Lubumbashi';
$a->strings['Africa/Lusaka'] = 'Africa/Lusaka';
$a->strings['Africa/Malabo'] = 'Africa/Malabo';
$a->strings['Africa/Maputo'] = 'Africa/Maputo';
$a->strings['Africa/Maseru'] = 'Africa/Maseru';
$a->strings['Africa/Mbabane'] = 'Africa/Mbabane';
$a->strings['Africa/Mogadishu'] = 'Africa/Mogadishu';
$a->strings['Africa/Monrovia'] = 'Africa/Monrovia';
$a->strings['Africa/Nairobi'] = 'Africa/Nairobi';
$a->strings['Africa/Ndjamena'] = 'Africa/Ndjamena';
$a->strings['Africa/Niamey'] = 'Africa/Niamey';
$a->strings['Africa/Nouakchott'] = 'Africa/Nouakchott';
$a->strings['Africa/Ouagadougou'] = 'Africa/Ouagadougou';
$a->strings['Africa/Porto-Novo'] = 'Africa/Porto-Novo';
$a->strings['Africa/Sao_Tome'] = 'Africa/Sao_Tome';
$a->strings['Africa/Timbuktu'] = 'Africa/Timbuktu';
$a->strings['Africa/Tripoli'] = 'Africa/Tripoli';
$a->strings['Africa/Tunis'] = 'Africa/Tunis';
$a->strings['Africa/Windhoek'] = 'Africa/Windhoek';
$a->strings['America/Adak'] = 'America/Adak';
$a->strings['America/Anchorage'] = 'America/Anchorage';
$a->strings['America/Anguilla'] = 'America/Anguilla';
$a->strings['America/Antigua'] = 'America/Antigua';
$a->strings['America/Araguaina'] = 'America/Araguaina';
$a->strings['America/Argentina/Buenos_Aires'] = 'America/Argentina/Buenos_Aires';
$a->strings['America/Argentina/Catamarca'] = 'America/Argentina/Catamarca';
$a->strings['America/Argentina/ComodRivadavia'] = 'America/Argentina/ComodRivadavia';
$a->strings['America/Argentina/Cordoba'] = 'America/Argentina/Cordoba';
$a->strings['America/Argentina/Jujuy'] = 'America/Argentina/Jujuy';
$a->strings['America/Argentina/La_Rioja'] = 'America/Argentina/La_Rioja';
$a->strings['America/Argentina/Mendoza'] = 'America/Argentina/Mendoza';
$a->strings['America/Argentina/Rio_Gallegos'] = 'America/Argentina/Rio_Gallegos';
$a->strings['America/Argentina/Salta'] = 'America/Argentina/Salta';
$a->strings['America/Argentina/San_Juan'] = 'America/Argentina/San_Juan';
$a->strings['America/Argentina/San_Luis'] = 'America/Argentina/San_Luis';
$a->strings['America/Argentina/Tucuman'] = 'America/Argentina/Tucuman';
$a->strings['America/Argentina/Ushuaia'] = 'America/Argentina/Ushuaia';
$a->strings['America/Aruba'] = 'America/Aruba';
$a->strings['America/Asuncion'] = 'America/Asuncion';
$a->strings['America/Atikokan'] = 'America/Atikokan';
$a->strings['America/Atka'] = 'America/Atka';
$a->strings['America/Bahia'] = 'America/Bahia';
$a->strings['America/Barbados'] = 'America/Barbados';
$a->strings['America/Belem'] = 'America/Belem';
$a->strings['America/Belize'] = 'America/Belize';
$a->strings['America/Blanc-Sablon'] = 'America/Blanc-Sablon';
$a->strings['America/Boa_Vista'] = 'America/Boa_Vista';
$a->strings['America/Bogota'] = 'America/Bogota';
$a->strings['America/Boise'] = 'America/Boise';
$a->strings['America/Buenos_Aires'] = 'America/Buenos_Aires';
$a->strings['America/Cambridge_Bay'] = 'America/Cambridge_Bay';
$a->strings['America/Campo_Grande'] = 'America/Campo_Grande';
$a->strings['America/Cancun'] = 'America/Cancun';
$a->strings['America/Caracas'] = 'America/Caracas';
$a->strings['America/Catamarca'] = 'America/Catamarca';
$a->strings['America/Cayenne'] = 'America/Cayenne';
$a->strings['America/Cayman'] = 'America/Cayman';
$a->strings['America/Chicago'] = 'America/Chicago';
$a->strings['America/Chihuahua'] = 'America/Chihuahua';
$a->strings['America/Coral_Harbour'] = 'America/Coral_Harbour';
$a->strings['America/Cordoba'] = 'America/Cordoba';
$a->strings['America/Costa_Rica'] = 'America/Costa_Rica';
$a->strings['America/Cuiaba'] = 'America/Cuiaba';
$a->strings['America/Curacao'] = 'America/Curacao';
$a->strings['America/Danmarkshavn'] = 'America/Danmarkshavn';
$a->strings['America/Dawson'] = 'America/Dawson';
$a->strings['America/Dawson_Creek'] = 'America/Dawson_Creek';
$a->strings['America/Denver'] = 'America/Denver';
$a->strings['America/Detroit'] = 'America/Detroit';
$a->strings['America/Dominica'] = 'America/Dominica';
$a->strings['America/Edmonton'] = 'America/Edmonton';
$a->strings['America/Eirunepe'] = 'America/Eirunepe';
$a->strings['America/El_Salvador'] = 'America/El_Salvador';
$a->strings['America/Ensenada'] = 'America/Ensenada';
$a->strings['America/Fort_Wayne'] = 'America/Fort_Wayne';
$a->strings['America/Fortaleza'] = 'America/Fortaleza';
$a->strings['America/Glace_Bay'] = 'America/Glace_Bay';
$a->strings['America/Godthab'] = 'America/Godthab';
$a->strings['America/Goose_Bay'] = 'America/Goose_Bay';
$a->strings['America/Grand_Turk'] = 'America/Grand_Turk';
$a->strings['America/Grenada'] = 'America/Grenada';
$a->strings['America/Guadeloupe'] = 'America/Guadeloupe';
$a->strings['America/Guatemala'] = 'America/Guatemala';
$a->strings['America/Guayaquil'] = 'America/Guayaquil';
$a->strings['America/Guyana'] = 'America/Guyana';
$a->strings['America/Halifax'] = 'America/Halifax';
$a->strings['America/Havana'] = 'America/Havana';
$a->strings['America/Hermosillo'] = 'America/Hermosillo';
$a->strings['America/Indiana/Indianapolis'] = 'America/Indiana/Indianapolis';
$a->strings['America/Indiana/Knox'] = 'America/Indiana/Knox';
$a->strings['America/Indiana/Marengo'] = 'America/Indiana/Marengo';
$a->strings['America/Indiana/Petersburg'] = 'America/Indiana/Petersburg';
$a->strings['America/Indiana/Tell_City'] = 'America/Indiana/Tell_City';
$a->strings['America/Indiana/Vevay'] = 'America/Indiana/Vevay';
$a->strings['America/Indiana/Vincennes'] = 'America/Indiana/Vincennes';
$a->strings['America/Indiana/Winamac'] = 'America/Indiana/Winamac';
$a->strings['America/Indianapolis'] = 'America/Indianapolis';
$a->strings['America/Inuvik'] = 'America/Inuvik';
$a->strings['America/Iqaluit'] = 'America/Iqaluit';
$a->strings['America/Jamaica'] = 'America/Jamaica';
$a->strings['America/Jujuy'] = 'America/Jujuy';
$a->strings['America/Juneau'] = 'America/Juneau';
$a->strings['America/Kentucky/Louisville'] = 'America/Kentucky/Louisville';
$a->strings['America/Kentucky/Monticello'] = 'America/Kentucky/Monticello';
$a->strings['America/Knox_IN'] = 'America/Knox_IN';
$a->strings['America/La_Paz'] = 'America/La_Paz';
$a->strings['America/Lima'] = 'America/Lima';
$a->strings['America/Los_Angeles'] = 'America/Los_Angeles';
$a->strings['America/Louisville'] = 'America/Louisville';
$a->strings['America/Maceio'] = 'America/Maceio';
$a->strings['America/Managua'] = 'America/Managua';
$a->strings['America/Manaus'] = 'America/Manaus';
$a->strings['America/Marigot'] = 'America/Marigot';
$a->strings['America/Martinique'] = 'America/Martinique';
$a->strings['America/Matamoros'] = 'America/Matamoros';
$a->strings['America/Mazatlan'] = 'America/Mazatlan';
$a->strings['America/Mendoza'] = 'America/Mendoza';
$a->strings['America/Menominee'] = 'America/Menominee';
$a->strings['America/Merida'] = 'America/Merida';
$a->strings['America/Mexico_City'] = 'America/Mexico_City';
$a->strings['America/Miquelon'] = 'America/Miquelon';
$a->strings['America/Moncton'] = 'America/Moncton';
$a->strings['America/Monterrey'] = 'America/Monterrey';
$a->strings['America/Montevideo'] = 'America/Montevideo';
$a->strings['America/Montreal'] = 'America/Montreal';
$a->strings['America/Montserrat'] = 'America/Montserrat';
$a->strings['America/Nassau'] = 'America/Nassau';
$a->strings['America/New_York'] = 'America/New_York';
$a->strings['America/Nipigon'] = 'America/Nipigon';
$a->strings['America/Nome'] = 'America/Nome';
$a->strings['America/Noronha'] = 'America/Noronha';
$a->strings['America/North_Dakota/Center'] = 'America/North_Dakota/Center';
$a->strings['America/North_Dakota/New_Salem'] = 'America/North_Dakota/New_Salem';
$a->strings['America/Ojinaga'] = 'America/Ojinaga';
$a->strings['America/Panama'] = 'America/Panama';
$a->strings['America/Pangnirtung'] = 'America/Pangnirtung';
$a->strings['America/Paramaribo'] = 'America/Paramaribo';
$a->strings['America/Phoenix'] = 'America/Phoenix';
$a->strings['America/Port-au-Prince'] = 'America/Port-au-Prince';
$a->strings['America/Port_of_Spain'] = 'America/Port_of_Spain';
$a->strings['America/Porto_Acre'] = 'America/Porto_Acre';
$a->strings['America/Porto_Velho'] = 'America/Porto_Velho';
$a->strings['America/Puerto_Rico'] = 'America/Puerto_Rico';
$a->strings['America/Rainy_River'] = 'America/Rainy_River';
$a->strings['America/Rankin_Inlet'] = 'America/Rankin_Inlet';
$a->strings['America/Recife'] = 'America/Recife';
$a->strings['America/Regina'] = 'America/Regina';
$a->strings['America/Resolute'] = 'America/Resolute';
$a->strings['America/Rio_Branco'] = 'America/Rio_Branco';
$a->strings['America/Rosario'] = 'America/Rosario';
$a->strings['America/Santa_Isabel'] = 'America/Santa_Isabel';
$a->strings['America/Santarem'] = 'America/Santarem';
$a->strings['America/Santiago'] = 'America/Santiago';
$a->strings['America/Santo_Domingo'] = 'America/Santo_Domingo';
$a->strings['America/Sao_Paulo'] = 'America/Sao_Paulo';
$a->strings['America/Scoresbysund'] = 'America/Scoresbysund';
$a->strings['America/Shiprock'] = 'America/Shiprock';
$a->strings['America/St_Barthelemy'] = 'America/St_Barthelemy';
$a->strings['America/St_Johns'] = 'America/St_Johns';
$a->strings['America/St_Kitts'] = 'America/St_Kitts';
$a->strings['America/St_Lucia'] = 'America/St_Lucia';
$a->strings['America/St_Thomas'] = 'America/St_Thomas';
$a->strings['America/St_Vincent'] = 'America/St_Vincent';
$a->strings['America/Swift_Current'] = 'America/Swift_Current';
$a->strings['America/Tegucigalpa'] = 'America/Tegucigalpa';
$a->strings['America/Thule'] = 'America/Thule';
$a->strings['America/Thunder_Bay'] = 'America/Thunder_Bay';
$a->strings['America/Tijuana'] = 'America/Tijuana';
$a->strings['America/Toronto'] = 'America/Toronto';
$a->strings['America/Tortola'] = 'America/Tortola';
$a->strings['America/Vancouver'] = 'America/Vancouver';
$a->strings['America/Virgin'] = 'America/Virgin';
$a->strings['America/Whitehorse'] = 'America/Whitehorse';
$a->strings['America/Winnipeg'] = 'America/Winnipeg';
$a->strings['America/Yakutat'] = 'America/Yakutat';
$a->strings['America/Yellowknife'] = 'America/Yellowknife';
$a->strings['Antarctica/Casey'] = 'Antarctica/Casey';
$a->strings['Antarctica/Davis'] = 'Antarctica/Davis';
$a->strings['Antarctica/DumontDUrville'] = 'Antarctica/DumontDUrville';
$a->strings['Antarctica/Macquarie'] = 'Antarctica/Macquarie';
$a->strings['Antarctica/Mawson'] = 'Antarctica/Mawson';
$a->strings['Antarctica/McMurdo'] = 'Antarctica/McMurdo';
$a->strings['Antarctica/Palmer'] = 'Antarctica/Palmer';
$a->strings['Antarctica/Rothera'] = 'Antarctica/Rothera';
$a->strings['Antarctica/South_Pole'] = 'Antarctica/South_Pole';
$a->strings['Antarctica/Syowa'] = 'Antarctica/Syowa';
$a->strings['Antarctica/Vostok'] = 'Antarctica/Vostok';
$a->strings['Arctic/Longyearbyen'] = 'Arctic/Longyearbyen';
$a->strings['Asia/Aden'] = 'Asia/Aden';
$a->strings['Asia/Almaty'] = 'Asia/Almaty';
$a->strings['Asia/Amman'] = 'Asia/Amman';
$a->strings['Asia/Anadyr'] = 'Asia/Anadyr';
$a->strings['Asia/Aqtau'] = 'Asia/Aqtau';
$a->strings['Asia/Aqtobe'] = 'Asia/Aqtobe';
$a->strings['Asia/Ashgabat'] = 'Asia/Ashgabat';
$a->strings['Asia/Ashkhabad'] = 'Asia/Ashkhabad';
$a->strings['Asia/Baghdad'] = 'Asia/Baghdad';
$a->strings['Asia/Bahrain'] = 'Asia/Bahrain';
$a->strings['Asia/Baku'] = 'Asia/Baku';
$a->strings['Asia/Bangkok'] = 'Asia/Bangkok';
$a->strings['Asia/Beirut'] = 'Asia/Beirut';
$a->strings['Asia/Bishkek'] = 'Asia/Bishkek';
$a->strings['Asia/Brunei'] = 'Asia/Brunei';
$a->strings['Asia/Calcutta'] = 'Asia/Calcutta';
$a->strings['Asia/Choibalsan'] = 'Asia/Choibalsan';
$a->strings['Asia/Chongqing'] = 'Asia/Chongqing';
$a->strings['Asia/Chungking'] = 'Asia/Chungking';
$a->strings['Asia/Colombo'] = 'Asia/Colombo';
$a->strings['Asia/Dacca'] = 'Asia/Dacca';
$a->strings['Asia/Damascus'] = 'Asia/Damascus';
$a->strings['Asia/Dhaka'] = 'Asia/Dhaka';
$a->strings['Asia/Dili'] = 'Asia/Dili';
$a->strings['Asia/Dubai'] = 'Asia/Dubai';
$a->strings['Asia/Dushanbe'] = 'Asia/Dushanbe';
$a->strings['Asia/Gaza'] = 'Asia/Gaza';
$a->strings['Asia/Harbin'] = 'Asia/Harbin';
$a->strings['Asia/Ho_Chi_Minh'] = 'Asia/Ho_Chi_Minh';
$a->strings['Asia/Hong_Kong'] = 'Asia/Hong_Kong';
$a->strings['Asia/Hovd'] = 'Asia/Hovd';
$a->strings['Asia/Irkutsk'] = 'Asia/Irkutsk';
$a->strings['Asia/Istanbul'] = 'Asia/Istanbul';
$a->strings['Asia/Jakarta'] = 'Asia/Jakarta';
$a->strings['Asia/Jayapura'] = 'Asia/Jayapura';
$a->strings['Asia/Jerusalem'] = 'Asia/Jerusalem';
$a->strings['Asia/Kabul'] = 'Asia/Kabul';
$a->strings['Asia/Kamchatka'] = 'Asia/Kamchatka';
$a->strings['Asia/Karachi'] = 'Asia/Karachi';
$a->strings['Asia/Kashgar'] = 'Asia/Kashgar';
$a->strings['Asia/Kathmandu'] = 'Asia/Kathmandu';
$a->strings['Asia/Katmandu'] = 'Asia/Katmandu';
$a->strings['Asia/Kolkata'] = 'Asia/Kolkata';
$a->strings['Asia/Krasnoyarsk'] = 'Asia/Krasnoyarsk';
$a->strings['Asia/Kuala_Lumpur'] = 'Asia/Kuala_Lumpur';
$a->strings['Asia/Kuching'] = 'Asia/Kuching';
$a->strings['Asia/Kuwait'] = 'Asia/Kuwait';
$a->strings['Asia/Macao'] = 'Asia/Macao';
$a->strings['Asia/Macau'] = 'Asia/Macau';
$a->strings['Asia/Magadan'] = 'Asia/Magadan';
$a->strings['Asia/Makassar'] = 'Asia/Makassar';
$a->strings['Asia/Manila'] = 'Asia/Manila';
$a->strings['Asia/Muscat'] = 'Asia/Muscat';
$a->strings['Asia/Nicosia'] = 'Asia/Nicosia';
$a->strings['Asia/Novokuznetsk'] = 'Asia/Novokuznetsk';
$a->strings['Asia/Novosibirsk'] = 'Asia/Novosibirsk';
$a->strings['Asia/Omsk'] = 'Asia/Omsk';
$a->strings['Asia/Oral'] = 'Asia/Oral';
$a->strings['Asia/Phnom_Penh'] = 'Asia/Phnom_Penh';
$a->strings['Asia/Pontianak'] = 'Asia/Pontianak';
$a->strings['Asia/Pyongyang'] = 'Asia/Pyongyang';
$a->strings['Asia/Qatar'] = 'Asia/Qatar';
$a->strings['Asia/Qyzylorda'] = 'Asia/Qyzylorda';
$a->strings['Asia/Rangoon'] = 'Asia/Rangoon';
$a->strings['Asia/Riyadh'] = 'Asia/Riyadh';
$a->strings['Asia/Saigon'] = 'Asia/Saigon';
$a->strings['Asia/Sakhalin'] = 'Asia/Sakhalin';
$a->strings['Asia/Samarkand'] = 'Asia/Samarkand';
$a->strings['Asia/Seoul'] = 'Asia/Seoul';
$a->strings['Asia/Shanghai'] = 'Asia/Shanghai';
$a->strings['Asia/Singapore'] = 'Asia/Singapore';
$a->strings['Asia/Taipei'] = 'Asia/Taipei';
$a->strings['Asia/Tashkent'] = 'Asia/Tashkent';
$a->strings['Asia/Tbilisi'] = 'Asia/Tbilisi';
$a->strings['Asia/Tehran'] = 'Asia/Tehran';
$a->strings['Asia/Tel_Aviv'] = 'Asia/Tel_Aviv';
$a->strings['Asia/Thimbu'] = 'Asia/Thimbu';
$a->strings['Asia/Thimphu'] = 'Asia/Thimphu';
$a->strings['Asia/Tokyo'] = 'Asia/Tokyo';
$a->strings['Asia/Ujung_Pandang'] = 'Asia/Ujung_Pandang';
$a->strings['Asia/Ulaanbaatar'] = 'Asia/Ulaanbaatar';
$a->strings['Asia/Ulan_Bator'] = 'Asia/Ulan_Bator';
$a->strings['Asia/Urumqi'] = 'Asia/Urumqi';
$a->strings['Asia/Vientiane'] = 'Asia/Vientiane';
$a->strings['Asia/Vladivostok'] = 'Asia/Vladivostok';
$a->strings['Asia/Yakutsk'] = 'Asia/Yakutsk';
$a->strings['Asia/Yekaterinburg'] = 'Asia/Yekaterinburg';
$a->strings['Asia/Yerevan'] = 'Asia/Yerevan';
$a->strings['Atlantic/Azores'] = 'Atlantic/Azores';
$a->strings['Atlantic/Bermuda'] = 'Atlantic/Bermuda';
$a->strings['Atlantic/Canary'] = 'Atlantic/Canary';
$a->strings['Atlantic/Cape_Verde'] = 'Atlantic/Cape_Verde';
$a->strings['Atlantic/Faeroe'] = 'Atlantic/Faeroe';
$a->strings['Atlantic/Faroe'] = 'Atlantic/Faroe';
$a->strings['Atlantic/Jan_Mayen'] = 'Atlantic/Jan_Mayen';
$a->strings['Atlantic/Madeira'] = 'Atlantic/Madeira';
$a->strings['Atlantic/Reykjavik'] = 'Atlantic/Reykjavik';
$a->strings['Atlantic/South_Georgia'] = 'Atlantic/South_Georgia';
$a->strings['Atlantic/St_Helena'] = 'Atlantic/St_Helena';
$a->strings['Atlantic/Stanley'] = 'Atlantic/Stanley';
$a->strings['Australia/ACT'] = 'Australia/ACT';
$a->strings['Australia/Adelaide'] = 'Australia/Adelaide';
$a->strings['Australia/Brisbane'] = 'Australia/Brisbane';
$a->strings['Australia/Broken_Hill'] = 'Australia/Broken_Hill';
$a->strings['Australia/Canberra'] = 'Australia/Canberra';
$a->strings['Australia/Currie'] = 'Australia/Currie';
$a->strings['Australia/Darwin'] = 'Australia/Darwin';
$a->strings['Australia/Eucla'] = 'Australia/Eucla';
$a->strings['Australia/Hobart'] = 'Australia/Hobart';
$a->strings['Australia/LHI'] = 'Australia/LHI';
$a->strings['Australia/Lindeman'] = 'Australia/Lindeman';
$a->strings['Australia/Lord_Howe'] = 'Australia/Lord_Howe';
$a->strings['Australia/Melbourne'] = 'Australia/Melbourne';
$a->strings['Australia/North'] = 'Australia/North';
$a->strings['Australia/NSW'] = 'Australia/NSW';
$a->strings['Australia/Perth'] = 'Australia/Perth';
$a->strings['Australia/Queensland'] = 'Australia/Queensland';
$a->strings['Australia/South'] = 'Australia/South';
$a->strings['Australia/Sydney'] = 'Australia/Sydney';
$a->strings['Australia/Tasmania'] = 'Australia/Tasmania';
$a->strings['Australia/Victoria'] = 'Australia/Victoria';
$a->strings['Australia/West'] = 'Australia/West';
$a->strings['Australia/Yancowinna'] = 'Australia/Yancowinna';
$a->strings['Brazil/Acre'] = 'Brazil/Acre';
$a->strings['Brazil/DeNoronha'] = 'Brazil/DeNoronha';
$a->strings['Brazil/East'] = 'Brazil/East';
$a->strings['Brazil/West'] = 'Brazil/West';
$a->strings['Canada/Atlantic'] = 'Canada/Atlantic';
$a->strings['Canada/Central'] = 'Canada/Central';
$a->strings['Canada/East-Saskatchewan'] = 'Canada/East-Saskatchewan';
$a->strings['Canada/Eastern'] = 'Canada/Eastern';
$a->strings['Canada/Mountain'] = 'Canada/Mountain';
$a->strings['Canada/Newfoundland'] = 'Canada/Newfoundland';
$a->strings['Canada/Pacific'] = 'Canada/Pacific';
$a->strings['Canada/Saskatchewan'] = 'Canada/Saskatchewan';
$a->strings['Canada/Yukon'] = 'Canada/Yukon';
$a->strings['CET'] = 'CET';
$a->strings['Chile/Continental'] = 'Chile/Continental';
$a->strings['Chile/EasterIsland'] = 'Chile/EasterIsland';
$a->strings['CST6CDT'] = 'CST6CDT';
$a->strings['Cuba'] = 'Cuba';
$a->strings['EET'] = 'EET';
$a->strings['Egypt'] = 'Egypt';
$a->strings['Eire'] = 'Eire';
$a->strings['EST'] = 'EST';
$a->strings['EST5EDT'] = 'EST5EDT';
$a->strings['Etc/GMT'] = 'Etc/GMT';
$a->strings['Etc/GMT+0'] = 'Etc/GMT+0';
$a->strings['Etc/GMT+1'] = 'Etc/GMT+1';
$a->strings['Etc/GMT+10'] = 'Etc/GMT+10';
$a->strings['Etc/GMT+11'] = 'Etc/GMT+11';
$a->strings['Etc/GMT+12'] = 'Etc/GMT+12';
$a->strings['Etc/GMT+2'] = 'Etc/GMT+2';
$a->strings['Etc/GMT+3'] = 'Etc/GMT+3';
$a->strings['Etc/GMT+4'] = 'Etc/GMT+4';
$a->strings['Etc/GMT+5'] = 'Etc/GMT+5';
$a->strings['Etc/GMT+6'] = 'Etc/GMT+6';
$a->strings['Etc/GMT+7'] = 'Etc/GMT+7';
$a->strings['Etc/GMT+8'] = 'Etc/GMT+8';
$a->strings['Etc/GMT+9'] = 'Etc/GMT+9';
$a->strings['Etc/GMT-0'] = 'Etc/GMT-0';
$a->strings['Etc/GMT-1'] = 'Etc/GMT-1';
$a->strings['Etc/GMT-10'] = 'Etc/GMT-10';
$a->strings['Etc/GMT-11'] = 'Etc/GMT-11';
$a->strings['Etc/GMT-12'] = 'Etc/GMT-12';
$a->strings['Etc/GMT-13'] = 'Etc/GMT-13';
$a->strings['Etc/GMT-14'] = 'Etc/GMT-14';
$a->strings['Etc/GMT-2'] = 'Etc/GMT-2';
$a->strings['Etc/GMT-3'] = 'Etc/GMT-3';
$a->strings['Etc/GMT-4'] = 'Etc/GMT-4';
$a->strings['Etc/GMT-5'] = 'Etc/GMT-5';
$a->strings['Etc/GMT-6'] = 'Etc/GMT-6';
$a->strings['Etc/GMT-7'] = 'Etc/GMT-7';
$a->strings['Etc/GMT-8'] = 'Etc/GMT-8';
$a->strings['Etc/GMT-9'] = 'Etc/GMT-9';
$a->strings['Etc/GMT0'] = 'Etc/GMT0';
$a->strings['Etc/Greenwich'] = 'Etc/Greenwich';
$a->strings['Etc/UCT'] = 'Etc/UCT';
$a->strings['Etc/Universal'] = 'Etc/Universal';
$a->strings['Etc/UTC'] = 'Etc/UTC';
$a->strings['Etc/Zulu'] = 'Etc/Zulu';
$a->strings['Europe/Amsterdam'] = 'Europe/Amsterdam';
$a->strings['Europe/Andorra'] = 'Europe/Andorra';
$a->strings['Europe/Athens'] = 'Europe/Athens';
$a->strings['Europe/Belfast'] = 'Europe/Belfast';
$a->strings['Europe/Belgrade'] = 'Europe/Belgrade';
$a->strings['Europe/Berlin'] = 'Europe/Berlin';
$a->strings['Europe/Bratislava'] = 'Europe/Bratislava';
$a->strings['Europe/Brussels'] = 'Europe/Brussels';
$a->strings['Europe/Bucharest'] = 'Europe/Bucharest';
$a->strings['Europe/Budapest'] = 'Europe/Budapest';
$a->strings['Europe/Chisinau'] = 'Europe/Chisinau';
$a->strings['Europe/Copenhagen'] = 'Europe/Copenhagen';
$a->strings['Europe/Dublin'] = 'Europe/Dublin';
$a->strings['Europe/Gibraltar'] = 'Europe/Gibraltar';
$a->strings['Europe/Guernsey'] = 'Europe/Guernsey';
$a->strings['Europe/Helsinki'] = 'Europe/Helsinki';
$a->strings['Europe/Isle_of_Man'] = 'Europe/Isle_of_Man';
$a->strings['Europe/Istanbul'] = 'Europe/Istanbul';
$a->strings['Europe/Jersey'] = 'Europe/Jersey';
$a->strings['Europe/Kaliningrad'] = 'Europe/Kaliningrad';
$a->strings['Europe/Kiev'] = 'Europe/Kiev';
$a->strings['Europe/Lisbon'] = 'Europe/Lisbon';
$a->strings['Europe/Ljubljana'] = 'Europe/Ljubljana';
$a->strings['Europe/London'] = 'Europe/London';
$a->strings['Europe/Luxembourg'] = 'Europe/Luxembourg';
$a->strings['Europe/Madrid'] = 'Europe/Madrid';
$a->strings['Europe/Malta'] = 'Europe/Malta';
$a->strings['Europe/Mariehamn'] = 'Europe/Mariehamn';
$a->strings['Europe/Minsk'] = 'Europe/Minsk';
$a->strings['Europe/Monaco'] = 'Europe/Monaco';
$a->strings['Europe/Moscow'] = 'Europe/Moscow';
$a->strings['Europe/Nicosia'] = 'Europe/Nicosia';
$a->strings['Europe/Oslo'] = 'Europe/Oslo';
$a->strings['Europe/Paris'] = 'Europe/Paris';
$a->strings['Europe/Podgorica'] = 'Europe/Podgorica';
$a->strings['Europe/Prague'] = 'Europe/Prague';
$a->strings['Europe/Riga'] = 'Europe/Riga';
$a->strings['Europe/Rome'] = 'Europe/Rome';
$a->strings['Europe/Samara'] = 'Europe/Samara';
$a->strings['Europe/San_Marino'] = 'Europe/San_Marino';
$a->strings['Europe/Sarajevo'] = 'Europe/Sarajevo';
$a->strings['Europe/Simferopol'] = 'Europe/Simferopol';
$a->strings['Europe/Skopje'] = 'Europe/Skopje';
$a->strings['Europe/Sofia'] = 'Europe/Sofia';
$a->strings['Europe/Stockholm'] = 'Europe/Stockholm';
$a->strings['Europe/Tallinn'] = 'Europe/Tallinn';
$a->strings['Europe/Tirane'] = 'Europe/Tirane';
$a->strings['Europe/Tiraspol'] = 'Europe/Tiraspol';
$a->strings['Europe/Uzhgorod'] = 'Europe/Uzhgorod';
$a->strings['Europe/Vaduz'] = 'Europe/Vaduz';
$a->strings['Europe/Vatican'] = 'Europe/Vatican';
$a->strings['Europe/Vienna'] = 'Europe/Vienna';
$a->strings['Europe/Vilnius'] = 'Europe/Vilnius';
$a->strings['Europe/Volgograd'] = 'Europe/Volgograd';
$a->strings['Europe/Warsaw'] = 'Europe/Warsaw';
$a->strings['Europe/Zagreb'] = 'Europe/Zagreb';
$a->strings['Europe/Zaporozhye'] = 'Europe/Zaporozhye';
$a->strings['Europe/Zurich'] = 'Europe/Zurich';
$a->strings['Factory'] = 'Factory';
$a->strings['GB'] = 'GB';
$a->strings['GB-Eire'] = 'GB-Eire';
$a->strings['GMT'] = 'GMT';
$a->strings['GMT+0'] = 'GMT+0';
$a->strings['GMT-0'] = 'GMT-0';
$a->strings['GMT0'] = 'GMT0';
$a->strings['Greenwich'] = 'Greenwich';
$a->strings['Hongkong'] = 'Hongkong';
$a->strings['HST'] = 'HST';
$a->strings['Iceland'] = 'Iceland';
$a->strings['Indian/Antananarivo'] = 'Indian/Antananarivo';
$a->strings['Indian/Chagos'] = 'Indian/Chagos';
$a->strings['Indian/Christmas'] = 'Indian/Christmas';
$a->strings['Indian/Cocos'] = 'Indian/Cocos';
$a->strings['Indian/Comoro'] = 'Indian/Comoro';
$a->strings['Indian/Kerguelen'] = 'Indian/Kerguelen';
$a->strings['Indian/Mahe'] = 'Indian/Mahe';
$a->strings['Indian/Maldives'] = 'Indian/Maldives';
$a->strings['Indian/Mauritius'] = 'Indian/Mauritius';
$a->strings['Indian/Mayotte'] = 'Indian/Mayotte';
$a->strings['Indian/Reunion'] = 'Indian/Reunion';
$a->strings['Iran'] = 'Iran';
$a->strings['Israel'] = 'Israel';
$a->strings['Jamaica'] = 'Jamaica';
$a->strings['Japan'] = 'Japan';
$a->strings['Kwajalein'] = 'Kwajalein';
$a->strings['Libya'] = 'Libya';
$a->strings['MET'] = 'MET';
$a->strings['Mexico/BajaNorte'] = 'Mexico/BajaNorte';
$a->strings['Mexico/BajaSur'] = 'Mexico/BajaSur';
$a->strings['Mexico/General'] = 'Mexico/General';
$a->strings['MST'] = 'MST';
$a->strings['MST7MDT'] = 'MST7MDT';
$a->strings['Navajo'] = 'Navajo';
$a->strings['NZ'] = 'NZ';
$a->strings['NZ-CHAT'] = 'NZ-CHAT';
$a->strings['Pacific/Apia'] = 'Pacific/Apia';
$a->strings['Pacific/Auckland'] = 'Pacific/Auckland';
$a->strings['Pacific/Chatham'] = 'Pacific/Chatham';
$a->strings['Pacific/Easter'] = 'Pacific/Easter';
$a->strings['Pacific/Efate'] = 'Pacific/Efate';
$a->strings['Pacific/Enderbury'] = 'Pacific/Enderbury';
$a->strings['Pacific/Fakaofo'] = 'Pacific/Fakaofo';
$a->strings['Pacific/Fiji'] = 'Pacific/Fiji';
$a->strings['Pacific/Funafuti'] = 'Pacific/Funafuti';
$a->strings['Pacific/Galapagos'] = 'Pacific/Galapagos';
$a->strings['Pacific/Gambier'] = 'Pacific/Gambier';
$a->strings['Pacific/Guadalcanal'] = 'Pacific/Guadalcanal';
$a->strings['Pacific/Guam'] = 'Pacific/Guam';
$a->strings['Pacific/Honolulu'] = 'Pacific/Honolulu';
$a->strings['Pacific/Johnston'] = 'Pacific/Johnston';
$a->strings['Pacific/Kiritimati'] = 'Pacific/Kiritimati';
$a->strings['Pacific/Kosrae'] = 'Pacific/Kosrae';
$a->strings['Pacific/Kwajalein'] = 'Pacific/Kwajalein';
$a->strings['Pacific/Majuro'] = 'Pacific/Majuro';
$a->strings['Pacific/Marquesas'] = 'Pacific/Marquesas';
$a->strings['Pacific/Midway'] = 'Pacific/Midway';
$a->strings['Pacific/Nauru'] = 'Pacific/Nauru';
$a->strings['Pacific/Niue'] = 'Pacific/Niue';
$a->strings['Pacific/Norfolk'] = 'Pacific/Norfolk';
$a->strings['Pacific/Noumea'] = 'Pacific/Noumea';
$a->strings['Pacific/Pago_Pago'] = 'Pacific/Pago_Pago';
$a->strings['Pacific/Palau'] = 'Pacific/Palau';
$a->strings['Pacific/Pitcairn'] = 'Pacific/Pitcairn';
$a->strings['Pacific/Ponape'] = 'Pacific/Ponape';
$a->strings['Pacific/Port_Moresby'] = 'Pacific/Port_Moresby';
$a->strings['Pacific/Rarotonga'] = 'Pacific/Rarotonga';
$a->strings['Pacific/Saipan'] = 'Pacific/Saipan';
$a->strings['Pacific/Samoa'] = 'Pacific/Samoa';
$a->strings['Pacific/Tahiti'] = 'Pacific/Tahiti';
$a->strings['Pacific/Tarawa'] = 'Pacific/Tarawa';
$a->strings['Pacific/Tongatapu'] = 'Pacific/Tongatapu';
$a->strings['Pacific/Truk'] = 'Pacific/Truk';
$a->strings['Pacific/Wake'] = 'Pacific/Wake';
$a->strings['Pacific/Wallis'] = 'Pacific/Wallis';
$a->strings['Pacific/Yap'] = 'Pacific/Yap';
$a->strings['Poland'] = 'Poland';
$a->strings['Portugal'] = 'Portugal';
$a->strings['PRC'] = 'PRC';
$a->strings['PST8PDT'] = 'PST8PDT';
$a->strings['ROC'] = 'ROC';
$a->strings['ROK'] = 'ROK';
$a->strings['Singapore'] = 'Singapore';
$a->strings['Turkey'] = 'Turkey';
$a->strings['UCT'] = 'UCT';
$a->strings['Universal'] = 'Universal';
$a->strings['US/Alaska'] = 'US/Alaska';
$a->strings['US/Aleutian'] = 'US/Aleutian';
$a->strings['US/Arizona'] = 'US/Arizona';
$a->strings['US/Central'] = 'US/Central';
$a->strings['US/East-Indiana'] = 'US/East-Indiana';
$a->strings['US/Eastern'] = 'US/Eastern';
$a->strings['US/Hawaii'] = 'US/Hawaii';
$a->strings['US/Indiana-Starke'] = 'US/Indiana-Starke';
$a->strings['US/Michigan'] = 'US/Michigan';
$a->strings['US/Mountain'] = 'US/Mountain';
$a->strings['US/Pacific'] = 'US/Pacific';
$a->strings['US/Pacific-New'] = 'US/Pacific-New';
$a->strings['US/Samoa'] = 'US/Samoa';
$a->strings['UTC'] = 'UTC';
$a->strings['W-SU'] = 'W-SU';
$a->strings['WET'] = 'WET';
$a->strings['Zulu'] = 'Zulu';