aboutsummaryrefslogtreecommitdiffstats
path: root/view/de/strings.php
blob: bc31fab78a1cb990eec844f4fd10418e14a85d93 (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
<?php
$a->strings['Not Found'] = 'Nicht gefunden';
$a->strings['Page not found.' ] = 'Seite nicht gefunden.' ;
$a->strings['Permission denied'] = 'Zugriff verweigert';
$a->strings['Permission denied.'] = 'Zugriff verweigert.';
$a->strings['Nickname or Email address: '] = 'Spitzname oder Email-Adresse: ';
$a->strings['Password: '] = 'Passwort: ';
$a->strings['Login'] = 'Anmeldung';
$a->strings['Nickname/Email/OpenID: '] = 'Spitzname/Email/OpenID: ';
$a->strings["Password \x28if not OpenID\x29: "] = "Passwort \x28falls nicht OpenID\x29: ";
$a->strings['Forgot your password?'] = 'Passwort vergessen?';
$a->strings['Password Reset'] = 'Passwort zurücksetzen';
$a->strings['prev'] = 'vorige';
$a->strings['first'] = 'erste';
$a->strings['last'] = 'letzte';
$a->strings['next'] = 'nächste';
$a->strings[' likes this.'] = ' mag dies.';
$a->strings[' doesn\'t like this.'] = ' mag dies nicht.';
$a->strings['people'] = 'Leute';
$a->strings['like this.'] = 'mögen dies.';
$a->strings['don\'t like this.'] = 'mögen dies nicht.';
$a->strings['and'] = 'und';
$a->strings[', and '] = ' und ';
$a->strings[' other people'] = ' andere Leute';
$a->strings[' like this.'] = ' mögen dies.';
$a->strings[' don\'t like this.'] = ' mögen dies nicht.';
$a->strings['No contacts'] = 'Keine Kontakte';
$a->strings['Contacts'] = 'Kontakte';
$a->strings['View Contacts'] = 'Kontakte anzeigen';
$a->strings['Search'] = 'Suche';
$a->strings['No profile'] = 'Kein Profil';
$a->strings['Connect'] = 'Verbinden';
$a->strings['Location:'] = 'Ort:';
$a->strings[', '] = ', ';
$a->strings['Gender:'] = 'Geschlecht:';
$a->strings['Status:'] = 'Status:';
$a->strings['Homepage:'] = 'Homepage:';
$a->strings['Monday'] = 'Montag';
$a->strings['Tuesday'] = 'Dienstag';
$a->strings['Wednesday'] = 'Mittwoch';
$a->strings['Thursday'] = 'Donnerstag';
$a->strings['Friday'] = 'Freitag';
$a->strings['Saturday'] = 'Samstag';
$a->strings['Sunday'] = 'Sonntag';
$a->strings['January'] = 'Januar';
$a->strings['February'] = 'Februar';
$a->strings['March'] = 'März';
$a->strings['April'] = 'April';
$a->strings['May'] = 'Mai';
$a->strings['June'] = 'Juni';
$a->strings['July'] = 'Juli';
$a->strings['August'] = 'August';
$a->strings['September'] = 'September';
$a->strings['October'] = 'Oktober';
$a->strings['November'] = 'November';
$a->strings['December'] = 'Dezember';
$a->strings['Birthdays this week:'] = 'Geburtstage diese Woche:';
$a->strings["\x28Adjusted for local time\x29"] = "\x28an die lokale Zeit angepasst\x29";
$a->strings['[today]'] = '[heute]';
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings['Connect/Follow [profile address]'] = 'Kontaktiere/Folge [Profil Adresse]';
$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Beispiel: bob@example.com, http://example.com/barbara';
$a->strings['Follow'] = 'Folge';
$a->strings['Could not access contact record.'] = 'Konnte nicht auf die Kontaktdaten zugreifen.';
$a->strings['Could not locate selected profile.'] = 'Konnte das ausgewählte Profiel nicht finden.';
$a->strings['Contact updated.'] = 'Kontakt aktualisiert.';
$a->strings['Failed to update contact record.'] = 'Aktualisierung der Kontaktdaten fehlgeschlagen.';
$a->strings['Contact has been '] = 'Kontakt ';
$a->strings['blocked'] = 'wurde blockiert';
$a->strings['unblocked'] = 'ist nicht mehr blockiert';
$a->strings['ignored'] = 'wurde ignoriert';
$a->strings['unignored'] = 'wird nicht mehr ignoriert';
$a->strings['stopped following'] = 'wird nicht mehr gefolgt';
$a->strings['Contact has been removed.'] = 'Kontakt wurde entfernt.';
$a->strings['Contact not found.'] = 'Kontakt nicht gefunden.';
$a->strings['Mutual Friendship'] = 'Beidseitige Freundschaft';
$a->strings['is a fan of yours'] = 'ist ein Fan von dir';
$a->strings['you are a fan of'] = 'du bist Fan von';
$a->strings['Contact Editor'] = 'Kontakt Editor';
$a->strings['Visit $name\'s profile'] = 'Besuche das Profil von $name';
$a->strings['Block/Unblock contact'] = 'Kontakt blockieren/freischalten';
$a->strings['Ignore contact'] = 'Ignoriere den Kontakt';
$a->strings['Delete contact'] = 'Lösche den Kontakt';
$a->strings['Last updated: '] = 'Letzte Aktualisierung: ';
$a->strings['Update public posts: '] = 'Aktualisierung öffentlicher Nachrichten: ';
$a->strings['Never'] = 'Niemals';
$a->strings['Update now'] = 'Jetzt aktualisieren';
$a->strings['Unblock this contact'] = 'Blockade dieses Kontakts aufheben';
$a->strings['Block this contact'] = 'Diesen Kontakt blockieren';
$a->strings['Unignore this contact'] = 'Diesen Kontakt nicht mehr ignorieren';
$a->strings['Ignore this contact'] = 'Diesen Kontakt ignorieren';
$a->strings['Currently blocked'] = 'Derzeit geblockt';
$a->strings['Currently ignored'] = 'Derzeit ignoriert';
$a->strings['Show Blocked Connections'] = 'Zeige geblockte Verbindungen';
$a->strings['Hide Blocked Connections'] = 'Verstecke geblockte Verbindungen';
$a->strings['Finding: '] = 'Funde: ';
$a->strings['Find'] = 'Finde';
$a->strings['Visit '] = 'Besuche ';
$a->strings['\'s profile'] = 's Profile';
$a->strings['Edit contact'] = 'Kontakt bearbeiten';
$a->strings['Profile not found.'] = 'Profil nicht gefunden.';
$a->strings['Response from remote site was not understood.'] = 'Antwort der entfernten Gegenstelle unverständlich.';
$a->strings['Unexpected response from remote site: '] = 'Unerwartete Antwort der Gegenstelle: ';
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
$a->strings['Remote site reported: '] = 'Entfernte Seite meldet: ';
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
$a->strings["Introduction failed or was revoked."] = "Vorstellung schlug fehl oder wurde zurück gezogen.";
$a->strings['Unable to set contact photo.'] = 'Konnte das Bild des Kontakts nicht speichern.';
$a->strings['is now friends with'] = 'ist jetzt ein(e) Freund(in) von';
$a->strings['No user record found for '] = 'Kein Nutzereintrag gefunden für ';
$a->strings['Our site encryption key is apparently messed up.'] = 'Der Verschlüsslungsschlüssel unserer Seite ist anscheinend im Arsch.';
$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.';
$a->strings['Contact record was not found for you on our site.'] = 'Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.';
$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'Die ID die uns dein System angeboten hat ist hier bereits vergeben. Bitte versuche es noch einmal.';
$a->strings['Unable to set your contact credentials on our system.'] = 'Deine Kontaktreferenzen konnten nicht in unserm System gespeichert werden.';
$a->strings['Unable to update your contact profile details on our system'] = 'Die Updates für dein Profil konnten nicht gespeichert werden';
$a->strings["Connection accepted at "] = "Connection accepted at ";
$a->strings['Administrator'] = 'Administrator';
$a->strings['New mail received at '] = 'New mail received at ';
$a->strings[' commented on an item at '] = ' commented on an item at ';
$a->strings[" commented on an item at "] = " commented on an item at ";
$a->strings[' welcomes '] = ' welcomes ';
$a->strings["This introduction has already been accepted."] = "Diese Vorstellung wurde bereits abgeschlossen.";
$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[' required parameter'] = ' required parameter';
$a->strings[" was "] = " was ";
$a->strings["s were "] = "s were ";
$a->strings["not found at the given location."] = "not found at the given location.";
$a->strings["Introduction complete."] = "Vorstellung abgeschlossen.";
$a->strings['Unrecoverable protocol error.'] = 'Nicht behebbarer Protokollfehler.';
$a->strings['Profile unavailable.'] = 'Profil nicht verfügbar.';
$a->strings[' has received too many connection requests today.'] = ' hat heute zu viele Nachfragen zwecks Kontaktaufnahme erhalten.';
$a->strings['Spam protection measures have been invoked.'] = 'Maßnahmen zum Spamschutz wurden ergriffen.';
$a->strings['Friends are advised to please try again in 24 hours.'] = 'Freunde sind angehalten es in 24 Stunden erneut zu versuchen.';
$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.'] = 'Du hast dich hier bereits vorgestellt.';
$a->strings['Apparently you are already friends with .'] = 'Offenbar bist du bereits ein Freund von ';
$a->strings['Invalid profile URL.'] = 'Ungültige Profil URL.';
$a->strings['Disallowed profile URL.'] = 'Nicht erlaubte Profil URL.';
$a->strings['Your introduction has been sent.'] = 'Deine Vorstellung wurde abgeschickt.';
$a->strings["Please login to confirm introduction."] = "Bitte melde dich an um die Vorstellung zu bestätigen.";
$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['[Name Withheld]'] = '[Name Zurückgehalten]';
$a->strings['Friend/Connection Request'] = 'Freundschafts/Kontakt Anfrage';
$a->strings['Please answer the following:'] = 'Bitte beantworte folgende Fragen:';
$a->strings['Does $name know you?'] = 'Kennt $name dich?';
$a->strings['Yes'] = 'Ja';
$a->strings['No'] = 'Nein';
$a->strings['Add a personal note:'] = 'Eine persönliche Notiz anfügen:';
$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Bitte gib deine Profil Adresse von einem der unterstützten Sozialen Netzwerken an:';
$a->strings['Friendika'] = 'Friendika';
$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web';
$a->strings["Private \x28secure\x29 network"] = "Privates \x28sicheres\x29 Netzwerk";
$a->strings["Public \x28insecure\x29 network"] = "Öffentliches \x28unsicheres\x29 Netzwerk";
$a->strings['Your profile address:'] = 'Deine Profiladresse:';
$a->strings['Submit Request'] = 'Anfrage abschicken';
$a->strings['Cancel'] = 'Abbrechen';
$a->strings['Global Directory'] = 'Weltweites Verzeichnis';
$a->strings['Item not found.'] = 'Eintrag nicht gefunden.';
$a->strings['Private Message'] = 'Private Nachricht';
$a->strings['This is you'] = 'Das bist du';
$a->strings['View $name\'s profile'] = 'Profile von $name';
$a->strings['Item has been removed.'] = 'Eintrag wurde entfernt.';
$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['The profile address specified does not provide adequate information.'] = 'Die angegebene Profiladresse liefert unzureichende Informationen.';
$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.';
$a->strings['Unable to retrieve contact information.'] = 'Konnte die Kontaktinformationen nicht empfangen.';
$a->strings['following'] = 'folgen';
$a->strings['Group created.'] = 'Gruppe erstellt.';
$a->strings['Could not create group.'] = 'Konnte die Gruppe nicht erstellen.';
$a->strings['Group not found.'] = 'Gruppe nicht gefunden.';
$a->strings['Group name changed.'] = 'Gruppenname geändert.';
$a->strings['Membership list updated.'] = 'Mitgliedsliste aktualisiert.';
$a->strings['Group removed.'] = 'Gruppe entfernt.';
$a->strings['Unable to remove group.'] = 'Konnte die Gruppe nicht entfernen.';
$a->strings['Delete'] = 'Löschen';
$a->strings["Welcome to "] = "Willkommen zu ";
$a->strings['Could not create/connect to database.'] = 'Konnte die Verbindung zur Datenbank nicht aufbauen bzw. die Datenbank anlegen.';
$a->strings['Connected to database.'] = 'Mit der Datenbank verbunden.';
$a->strings['Database import succeeded.'] = 'Import der Datenbank erfolgreich.';
$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'WICHTIG: Du musst [manuell] einen cron Job (o.ä.) für den Poller einrichten.';
$a->strings['Please see the file "INSTALL.txt".'] = 'Lies bitte die "INSTALL.txt".';
$a->strings['Database import failed.'] = 'Import der Datenbank schlug fehl.';
$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Möglicherweise musst du die Datei "database.sql" manuell mit phpmyadmin oder mysql importieren.';
$a->strings['Welcome to Friendika.'] = 'Willkommen bei Friendika.';
$a->strings['Submit'] = 'Senden';
$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.';
$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'Diese wird von Friendika benötigt. Bitte passe die Konfigurationsdatei .htconfig.php entsprechend an.';
$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'Die Kommandozeilenversion von PHP auf deinem System hat "register_argc_argv" nicht aktiviert.';
$a->strings['This is required for message delivery to work.'] = 'Dies wird für die Auslieferung von Nachrichten benötigt.';
$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Fehler: Die "openssl_pkey_new" Funktion auf diesem System ist nicht in der lage Verschlüsselungsschlüssel zu erzeugen';
$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Wenn der Server unter Windows läuft, schau dir bitte "http://www.php.net/manual/en/openssl.installation.php" an.';
$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Fehler: Das Apache Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.';
$a->strings['Error: libCURL PHP module required but not installed.'] = 'Fehler: Das libCURL PHP Modul wird benötigt ist aber nicht installiert.';
$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Fehler: Das GD Graphikmodul für PHP mit JPEG Unterstützung ist nicht installiert.';
$a->strings['Error: openssl PHP module required but not installed.'] = 'Fehler: Das openssl Modul von PHP ist nict installiert.';
$a->strings['Error: mysqli PHP module required but not installed.'] = 'Fehler: Das mysqli Modul von PHP ist nicht installiert.';
$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.'] = 'Der Installationswizzard muss in der Lage sein eine Datei im Stammverzeichnis deines Webservers anzuliegen ist allerdings derzeit nicht in der Lage dies zu tun.';
$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.'] = 'In den meisten Fällen ist dies ein Problem mit den Schreibrechten, der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.';
$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Bitte überprüfe die Einstellungen und frage im Zweifelsfall dein Support Team um diese Situations zu beheben.';
$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Sollte dies nicht möglich sein musst du die Installation manuell durchführen. Lies dazu bitte in der Datei "INSTALL.txt".';
$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.'] = 'Die Konfigurationsdatei ".htconfig.php" konnte nicht angelegt werden. Bitte verwende den angefügten Text um die Datei im Stammverzeichnis deiner Friendika Installation zu erzeugen.';
$a->strings['Errors encountered creating database tables.'] = 'Fehler aufgetreten wärend der Erzeugung der Datenbank Tabellen.';
$a->strings[' : '] = ' : ';
$a->strings['Not a valid email address.'] = 'Keine gültige EMail Adresse.';
$a->strings['Please join my network on '] = 'Bitte trete meinem Netzwerk bei ';
$a->strings['Message delivery failed.'] = 'Zustellung der Nachricht fehlgeschlagen.';
$a->strings[' messages sent.'] = ' Nachrichten gesendet.';
$a->strings['Send invitations'] = 'Einladungen senden';
$a->strings['Enter email addresses, one per line:'] = 'EMail Adressen eingeben, eine pro Zeile:';
$a->strings['Your message:'] = 'Deine Nachricht:';
$a->strings['Please join my social network on '] = 'Bitte trete meinem sozialen Netzwerk bei ';
$a->strings['To accept this invitation, please visit:'] = 'Um diese Einladung anzunehmen beuche bitte:';
$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Sobald du registriert bist kontaktiere mich bitte auf meiner Profilseite:';
$a->strings['Unable to locate original post.'] = 'Konnte das original Posting nicht finden.';
$a->strings['Empty post discarded.'] = 'Leere Nachricht verworfen.';
$a->strings['Wall Photos'] = 'Pinnwand Fotos';
$a->strings[" commented on your item at "] = " kommentierte eines deiner Postings auf ";
$a->strings[" posted on your profile wall at "] = " schrieb an deine Profilwand auf ";
$a->strings['This message was sent to you by '] = 'This message was sent to you by ';
$a->strings[', a member of the Friendika social network.'] = ', a member of the Friendika social network.';
$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['posted an update.'] = 'posted an update.';
$a->strings['photo'] = 'Foto';
$a->strings['status'] = 'Status';
$a->strings['likes'] = 'mag das';
$a->strings['doesn\'t like'] = 'mag das nicht';
$a->strings['\'s'] = '\'s';
$a->strings['Remote privacy information not available.'] = 'Entfernte Privatsphäreneinstellungen nicht verfügbar.';
$a->strings['Visible to:'] = 'Sichtbar für:';
$a->strings['Password reset requested at '] = 'Anfrage zum Zurücksetzen des Passworts erhalten ';
$a->strings['No recipient selected.'] = 'Kein Empfänger gewählt.';
$a->strings['[no subject]'] = '[kein Betreff]';
$a->strings['Unable to locate contact information.'] = 'Konnte die Kontaktinformationen nicht finden.';
$a->strings['Message sent.'] = 'Nachricht gesendet.';
$a->strings['Message could not be sent.'] = 'Nachricht konnte nicht gesendet werden.';
$a->strings['Messages'] = 'Nachrichten';
$a->strings['Inbox'] = 'Eingang';
$a->strings['Outbox'] = 'Ausgang';
$a->strings['New Message'] = 'Neue Nachricht';
$a->strings['Message deleted.'] = 'Nachricht gelöscht.';
$a->strings['Conversation removed.'] = 'Unterhaltung gelöscht.';
$a->strings['Send Private Message'] = 'Private Nachricht senden';
$a->strings['To:'] = 'An:';
$a->strings['Subject:'] = 'Betreff:';
$a->strings['Upload photo'] = 'Foto hochladen';
$a->strings['Insert web link'] = 'Weblink einfügen';
$a->strings['Please wait'] = 'Bitte warten';
$a->strings['No messages.'] = 'Keine Nachrichten.';
$a->strings['Delete conversation'] = 'Unterhaltung löschen';
$a->strings['Message not available.'] = 'Nachricht nicht verfügbar.';
$a->strings['Delete message'] = 'Nachricht löschen';
$a->strings['Send Reply'] = 'Antwort senden';
$a->strings['Normal View'] = 'Normale Ansicht';
$a->strings['New Item View'] = 'Neue Einträge';
$a->strings['CC: email addresses'] = 'CC: EMail Addresse';
$a->strings['Example: bob@example.com, mary@example.com'] = 'Z.B.: bob@example.com, mary@example.com';
$a->strings['No such group'] = 'Es gibt keine solche Gruppe';
$a->strings['Group is empty'] = 'Gruppe ist leer';
$a->strings['Group: '] = 'Gruppe: ';
$a->strings['View in context'] = 'Im Zusammenhang betrachten';
$a->strings['Invalid request identifier.'] = 'Invalid request identifier.';
$a->strings['Discard'] = 'Verwerfen';
$a->strings['Ignore'] = 'Ignorieren';
$a->strings['Show Ignored Requests'] = 'Zeige ignorierte Anfragen';
$a->strings['Hide Ignored Requests'] = 'Verberge ignorierte Anfragen';
$a->strings['Claims to be known to you: '] = 'Behauptet dich zu kennen: ';
$a->strings['yes'] = 'ja';
$a->strings['no'] = 'nein';
$a->strings['Notification type: '] = 'Benachrichtigungs Typ: ';
$a->strings['Friend/Connect Request'] = 'Kontakt-/Freundschaftsanfrage';
$a->strings['New Follower'] = 'Neuer Bewunderer';
$a->strings['Approve'] = 'Genehmigen';
$a->strings['No notifications.'] = 'Keine Benachrichtigungen.';
$a->strings['No registrations.'] = 'Keine Neuanmeldungen.';
$a->strings['Login failed.'] = 'Annmeldung fehlgeschlagen.';
$a->strings["Welcome back "] = "Willkommen zurück ";
$a->strings['Photo Albums'] = 'Fotoalben';
$a->strings['Contact Photos'] = 'Kontaktbilder';
$a->strings['Contact information unavailable'] = 'Kontakt Informationen nicht verfügbar';
$a->strings['Profile Photos'] = 'Profilbilder';
$a->strings['Album not found.'] = 'Album nicht gefunden.';
$a->strings['Delete Album'] = 'Album löschen';
$a->strings['Delete Photo'] = 'Foto löschen';
$a->strings['was tagged in a'] = 'was tagged in a';
$a->strings['by'] = 'by';
$a->strings['Image exceeds size limit of '] = 'Die Bildgröße übersteigt das Limit von ';
$a->strings['Unable to process image.'] = 'Konnte das Bild nicht bearbeiten.';
$a->strings['Image upload failed.'] = 'Hochladen des Bildes gescheitert.';
$a->strings['No photos selected'] = 'Keine Bilder ausgewählt';
$a->strings['Upload Photos'] = 'Bilder hochladen';
$a->strings['New album name: '] = 'Name des neuen Albums: ';
$a->strings['or existing album name: '] = 'oder existierender Albumname: ';
$a->strings['Permissions'] = 'Berechtigungen';
$a->strings['Edit Album'] = 'Album bearbeiten';
$a->strings['View Photo'] = 'Fotos betrachten';
$a->strings['Photo not available'] = 'Foto nicht verfügbar';
$a->strings['Edit photo'] = 'Foto bearbeiten';
$a->strings['View Full Size'] = 'Betrachte Originalgröße';
$a->strings['Tags: '] = 'Tags: ';
$a->strings['[Remove any tag]'] = '[Tag entfernen]';
$a->strings['New album name'] = 'Name des neuen Albums';
$a->strings['Caption'] = 'Titel';
$a->strings['Add a Tag'] = 'Tag hinzufügen';
$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping';
$a->strings['Recent Photos'] = 'Neuste Fotos';
$a->strings['Upload New Photos'] = 'Weitere Fotos hochladen';
$a->strings['View Album'] = 'Album betrachten';
$a->strings['Image uploaded but image cropping failed.'] = 'Bilder hochgeladen aber das Zuschneiden ist fehlgeschlagen.';
$a->strings['Image size reduction [175] failed.'] = 'Image size reduction [175] failed.';
$a->strings['Image size reduction [80] failed.'] = 'Image size reduction [80] failed.';
$a->strings['Image size reduction [48] failed.'] = 'Image size reduction [48] failed.';
$a->strings['Unable to process image'] = 'Bild konnte nicht verarbeitet werden';
$a->strings['Image uploaded successfully.'] = 'Bild erfolgreich auf den Server geladen.';
$a->strings['Image size reduction [640] failed.'] = 'Image size reduction [640] failed.';
$a->strings['Profile Name is required.'] = 'Profilname ist erforderlich.';
$a->strings['Profile updated.'] = 'Profil aktualisiert.';
$a->strings['Profile deleted.'] = 'Profil gelöscht.';
$a->strings['Profile-'] = 'Profil-';
$a->strings['New profile created.'] = 'Neues Profil angelegt';
$a->strings['Profile unavailable to clone.'] = 'Profil nicht zum Duplizieren verfügbar.';
$a->strings['This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'] = 'Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.';
$a->strings['Age: '] = 'Alter: ';
$a->strings['Profile Image'] = 'Profilbild';
$a->strings['Invalid OpenID url'] = 'Ungültige OpenID URL';
$a->strings['Please enter the required information.'] = 'Bitte trage die erforderlichen Informationen ein.';
$a->strings['Please use a shorter name.'] = 'Bitte verwende einen kürzeren Namen.';
$a->strings['Name too short.'] = 'Der Name ist zu kurz.';
$a->strings["That doesn\'t appear to be your full \x28First Last\x29 name."] = "Das scheint kein vollständiger Name zu sein, verwende \x28Vorname Nachname\x29.";
$a->strings['Your email domain is not among those allowed on this site.'] = 'Die Domain deiner EMail Adresse ist nicht erlaubt auf dieser Seite.';
$a->strings['Cannot use that email.'] = 'Konnte diese EMail Adresse nicht verwenden';
$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Dein Spitzname darf nur aus Buchstaben und Zahlen ("a-z","0-9", "_" und "-") bestehen, außerdem muss er mit einem Buchstaben beginnen.';
$a->strings['Nickname is already registered. Please choose another.'] = 'Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.';
$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.'] = 'Wärend der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.';
$a->strings['An error occurred creating your default profile. Please try again.'] = 'Bei der Erstellung des Standard-Profils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.';
$a->strings['Registration details for '] = 'Details der Registrierung für ';
$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registration erfolgreich. Eine EMail mit weiteren Anweisungen wurde an dich gesendet.';
$a->strings['Failed to send email message. Here is the message that failed.'] = 'Konnte die EMail nicht versenden. Hier ist die Nachricht die nicht gesendet werden konnte.';
$a->strings['Your registration can not be processed.'] = 'Deine Registration konnte nicht verarbeitet werden.';
$a->strings['Registration request at '] = 'Registrationsanfrage für ';
$a->strings['Your registration is pending approval by the site owner.'] = 'Deine Registration muss noch vom Betreiber der Seite freigegeben werden.';
$a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch \x28optional\x29 mit deiner OpenID ausfüllen indem du deine OpenID angibst und 'Registrieren' klickst.";
$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.';
$a->strings["Your OpenID \x28optional\x29: "] = "Deine OpenID \x28optional\x29: ";
$a->strings['Registration'] = 'Registration';
$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Vollständiger Name ' . "\x28" . 'z.B. Joe Smith' . "\x29" . ': ';
$a->strings['Your Email Address: '] = 'Deine EMail Adresse: ';
$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'] = 'Wähle eine Spitznamen, der mit einem Buchstaben beginnt. Deine globale Profiladresse wird dann \'<strong>spitzname@$sitename</strong>\' sein.';
$a->strings['Choose a nickname: '] = 'Spitznamen wählen: ';
$a->strings['Register'] = 'Registrieren';
$a->strings['Please login.'] = 'Bitte melde dich an.';
$a->strings['Registration revoked for '] = 'Registration zurückgezogen ';
$a->strings['Account approved.'] = 'Account freigegeben.';
$a->strings['View in context'] = 'Im Kontext betrachten';
$a->strings['Passwords do not match. Password unchanged.'] = 'Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.';
$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.';
$a->strings['Password changed.'] = 'Passwort ändern.';
$a->strings['Password update failed. Please try again.'] = 'Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal';
$a->strings[' Please use a shorter name.'] = ' Bitte verwende einen kürzeren Namen.';
$a->strings[' Name too short.'] = ' Name ist zu kurz.';
$a->strings[' Not valid email.'] = ' Keine gültige EMail.';
$a->strings['Settings updated.'] = 'Einstellungen aktualisiert.';
$a->strings['Plugin Settings'] = 'Plugin Einstellungen';
$a->strings['Account Settings'] = 'Account Einstellungen';
$a->strings['No Plugin settings configured'] = 'Keine Erweiterungen konfiguriert';
$a->strings['OpenID: '] = 'OpenID: ';
$a->strings["&nbsp;\x28Optional\x29 Allow this OpenID to login to this account."] = "&nbsp;\x28Optional\x29 Erlaube dieser OpenID sich für diesen Account anzumelden.";
$a->strings['Profile is <strong>not published</strong>.'] = 'Profil ist <strong>nicht veröffentlicht</strong>.';
$a->strings['Default Post Permissions'] = 'Grundeinstellung für Veröffentlichungen';
$a->strings['Tag removed'] = 'Tag entfernt';
$a->strings['Remove Item Tag'] = 'Gegenstands Tag entfernen';
$a->strings['Select a tag to remove: '] = 'Wähle ein Tag zum Entfernen aus: ';
$a->strings['Remove'] = 'Entfernen';
$a->strings['No contacts.'] = 'Keine Kontakte.';
$a->strings['Visible To:'] = 'Sichtbar für:';
$a->strings['Groups'] = 'Gruppen';
$a->strings['Except For:'] = 'Abgesehen von:';
$a->strings['Logged out.'] = 'Abgemeldet.';
$a->strings['Unknown | Not categorised'] = 'Unbekannt | Nicht kategorisiert';
$a->strings['Block immediately'] = 'Sofort blockieren';
$a->strings['Shady, spammer, self-marketer'] = 'Zwielichtig, Spammer, Selbstdarsteller';
$a->strings['Known to me, but no opinion'] = 'Ist mir bekannt, hab aber keine Meinung';
$a->strings['OK, probably harmless'] = 'OK, wahrscheinlich harmlos';
$a->strings['Reputable, has my trust'] = 'Seriös, hat mein Vertrauen';
$a->strings['Frequently'] = 'Häufig';
$a->strings['Hourly'] = 'Stündlich';
$a->strings['Twice daily'] = 'Zweimal Täglich';
$a->strings['Daily'] = 'Täglich';
$a->strings['Weekly'] = 'Wöchendlich';
$a->strings['Monthly'] = 'Monatlich';
$a->strings['Miscellaneous'] = 'Verschiedenes';
$a->strings['less than a second ago'] = 'vor weniger als einer Sekunde';
$a->strings['year'] = 'Jahr';
$a->strings['years'] = 'Jahre';
$a->strings['month'] = 'Monat';
$a->strings['months'] = 'Monate';
$a->strings['week'] = 'Woche';
$a->strings['weeks'] = 'Wochen';
$a->strings['day'] = 'Tag';
$a->strings['days'] = 'Tage';
$a->strings['hour'] = 'Stunde';
$a->strings['hours'] = 'Stunden';
$a->strings['minute'] = 'Minute';
$a->strings['minutes'] = 'Minuten';
$a->strings['second'] = 'Sekunde';
$a->strings['seconds'] = 'Sekunden';
$a->strings[' ago'] = ' her';
$a->strings['Create a new group'] = 'Neue Gruppe erstellen';
$a->strings['Everybody'] = 'Alle Kontakte';
$a->strings['Birthday:'] = 'Geburtstag:';
$a->strings['Logout'] = 'Abmelden';
$a->strings['Home'] = 'Persönlich';
$a->strings['Directory'] = 'Verzeichnis';
$a->strings['Network'] = 'Netzwerk';
$a->strings['Notifications'] = 'Benachrichtigungen';
$a->strings['Settings'] = 'Einstellungen';
$a->strings['Profiles'] = 'Profile';
$a->strings['Embedding disabled'] = 'Einbettungen deaktiviert';
$a->strings['Male'] = 'Männlich';
$a->strings['Female'] = 'Weiblich';
$a->strings['Currently Male'] = 'Momentan Männlich';
$a->strings['Currently Female'] = 'Momentan Weiblich';
$a->strings['Mostly Male'] = 'Hauptsächlich Männlich';
$a->strings['Mostly Female'] = 'Hauptsächlich Weiblich';
$a->strings['Transgender'] = 'Transgender';
$a->strings['Intersex'] = 'Intersex';
$a->strings['Transsexual'] = 'Transsexuel';
$a->strings['Hermaphrodite'] = 'Hermaphrodit';
$a->strings['Neuter'] = 'Neuter';
$a->strings['Non-specific'] = 'Nicht spezifiziert';
$a->strings['Other'] = 'Andere';
$a->strings['Undecided'] = 'Unentschieden';
$a->strings['Males'] = 'Männer';
$a->strings['Females'] = 'Frauen';
$a->strings['Gay'] = 'Schwul';
$a->strings['Lesbian'] = 'Lesbisch';
$a->strings['No Preference'] = 'Keine Vorlieben';
$a->strings['Bisexual'] = 'Bisexuel';
$a->strings['Autosexual'] = 'Autosexual';
$a->strings['Abstinent'] = 'Abstinent';
$a->strings['Virgin'] = 'Jungfrau';
$a->strings['Deviant'] = 'Deviant';
$a->strings['Fetish'] = 'Fetish';
$a->strings['Oodles'] = 'Oodles';
$a->strings['Nonsexual'] = 'Nonsexual';
$a->strings['Single'] = 'Single';
$a->strings['Lonely'] = 'Einsam';
$a->strings['Available'] = 'Verfügbar';
$a->strings['Unavailable'] = 'Nichtverfügbar';
$a->strings['Dating'] = 'Dating';
$a->strings['Unfaithful'] = 'Untreu';
$a->strings['Sex Addict'] = 'Sex Besessen';
$a->strings['Friends'] = 'Freunde';
$a->strings['Friends/Benefits'] = 'Friends/Benefits';
$a->strings['Casual'] = 'Casual';
$a->strings['Engaged'] = 'Verlobt';
$a->strings['Married'] = 'Verheiratet';
$a->strings['Partners'] = 'Partner';
$a->strings['Cohabiting'] = 'kohabitierend';
$a->strings['Happy'] = 'Glücklich';
$a->strings['Not Looking'] = 'Nicht auf der Suche';
$a->strings['Swinger'] = 'Swinger';
$a->strings['Betrayed'] = 'Betrogen';
$a->strings['Separated'] = 'Getrennt';
$a->strings['Unstable'] = 'Unstabil';
$a->strings['Divorced'] = 'Geschieden';
$a->strings['Widowed'] = 'Verwidwet';
$a->strings['Uncertain'] = 'Unsicher';
$a->strings['Complicated'] = 'Kompliziert';
$a->strings['Don\'t care'] = 'Ist mir nicht wichtig';
$a->strings['Ask me'] = 'Frag mich';
$a->strings['Facebook status update failed.'] = 'Konnte den Facebook Status nicht aktualisieren.';
$a->strings['Select files to upload: '] = 'Wähle Dateien zum Upload aus: ';
$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Verwende die folgenden Kontrollen nur, wenn der Java Uploader [oben] nicht funktioniert.';
$a->strings['Upload a file'] = 'Datei hochladen';
$a->strings['Drop files here to upload'] = 'Ziehe die Dateien hier her die du hochladen willst';
$a->strings['Failed'] = 'Fehlgeschlagen';
$a->strings['No files were uploaded.'] = 'Keine Dateien hochgeladen.';
$a->strings['Uploaded file is empty'] = 'Hochgeladene Datei ist leer';
$a->strings['Uploaded file is too large'] = 'Hochgeladene Datei ist zu groß';
$a->strings['File has an invalid extension, it should be one of '] = 'Die Dateiextension ist nicht erlaubt, sie muss eine der folgenden sein ';
$a->strings['Upload was cancelled, or server error encountered'] = 'Upload abgebrochen oder Serverfehler aufgetreten';
$a->strings['Randplace Settings'] = 'Randplace Settings';
$a->strings['Enable Randplace Plugin'] = 'Randplace Erweiterung aktivieren';
$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';