-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSobre (js) (2).
9356 lines (9356 loc) · 512 KB
/
Sobre (js) (2).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(this["webpackJsonplella-cms-hylib"] = this["webpackJsonplella-cms-hylib"] || []).push([[0], {
548: function(e, t, a) {},
549: function(e, t, a) {},
550: function(e, t, a) {},
551: function(e, t, a) {},
552: function(e, t, a) {},
553: function(e, t, a) {},
554: function(e, t, a) {},
588: function(e, t) {},
610: function(e, t, a) {},
611: function(e, t, a) {},
615: function(e, t, a) {},
616: function(e, t, a) {
"use strict";
a.r(t);
a(330),
a(342);
var s = a(9)
, n = a.n(s)
, o = a(1)
, c = a.n(o)
, i = a(18)
, r = a.n(i)
, l = a(5)
, d = a(32)
, m = (a(548),
a(549),
a(550),
a(551),
a(552),
a(553),
a(554),
a(25))
, u = a(181)
, j = a(168)
, b = a(169)
, h = a(170)
, g = "token"
, x = new (function() {
function e() {
Object(j.a)(this, e)
}
return Object(b.a)(e, [{
key: "isUserLoggedIn",
value: function() {
return !!localStorage.getItem(g)
}
}, {
key: "getToken",
value: function() {
return localStorage.getItem(g)
}
}, {
key: "isTokenExpiredByTimestamp",
value: function(e) {
try {
var t = Object(h.a)(e)
, a = Date.now() / 1e3;
return t.exp < a
} catch (s) {
return !0
}
}
}, {
key: "setupAxiosHeaders",
value: function(e) {
n.a.defaults.headers.common.Authorization = "Bearer ".concat(e)
}
}, {
key: "logout",
value: function() {
localStorage.removeItem(g),
localStorage.removeItem("user"),
localStorage.removeItem("expiration"),
delete n.a.defaults.headers.common.Authorization
}
}]),
e
}())
, p = a(0)
, f = ["component", "onlyUnauthorized", "publicRoute", "privateRoute", "logoutRoute", "externalLink"]
, O = function(e) {
var t = e.component
, a = e.onlyUnauthorized
, s = void 0 !== a && a
, n = e.publicRoute
, o = void 0 !== n && n
, c = e.privateRoute
, i = void 0 !== c && c
, r = e.logoutRoute
, l = e.externalLink
, j = Object(u.a)(e, f);
return Object(p.jsx)(d.b, Object(m.a)(Object(m.a)({}, j), {}, {
render: function() {
var e = x.isUserLoggedIn();
if (!l)
return o ? Object(p.jsx)(t, Object(m.a)({}, j)) : s ? e ? Object(p.jsx)(d.a, {
to: "/home"
}) : Object(p.jsx)(t, Object(m.a)({}, j)) : i ? e ? r ? (x.logout(),
Object(p.jsx)(d.a, {
to: "/"
})) : Object(p.jsx)(t, Object(m.a)({}, j)) : Object(p.jsx)(d.a, {
to: "/"
}) : void 0;
window.location.replace(l)
}
}))
}
, v = a(3)
, N = Object(o.createContext)({
config: {},
user: {},
setUser: function() {},
token: "",
setToken: function() {}
})
, w = a(183)
, y = a.n(w)
, A = {};
try {
if (!window.localStorage)
throw Error("no local storage");
A.set = function(e, t) {
return localStorage.setItem(e, JSON.stringify(t))
}
,
A.get = function(e) {
var t = localStorage.getItem(e);
try {
return JSON.parse(t)
} catch (a) {
return null
}
}
,
A.remove = function(e) {
return localStorage.removeItem(e)
}
} catch (da) {
A.set = y.a.set,
A.get = y.a.getJSON,
A.remove = y.a.remove
}
var k = A;
function S(e) {
var t = Object(o.useState)((function() {
return k.get(e)
}
))
, a = Object(v.a)(t, 2)
, s = a[0]
, n = a[1];
return [s, Object(o.useCallback)((function(t) {
k.set(e, t),
n(t)
}
), [e]), Object(o.useCallback)((function() {
k.remove(e),
n(void 0)
}
), [e])]
}
var C = function(e) {
var t = S("token")
, a = Object(v.a)(t, 2)
, s = a[0]
, n = a[1]
, o = S("user")
, c = Object(v.a)(o, 2)
, i = c[0]
, r = c[1];
return Object(p.jsx)(N.Provider, {
value: {
config: e.config,
token: s,
setToken: n,
user: i,
setUser: r
},
children: e.children
})
}
, D = a(134)
, I = a.n(D)
, P = a(70)
, T = a.n(P)
, B = function() {
return Object(p.jsx)(p.Fragment, {
children: Object(p.jsx)("div", {
className: "tooltip-container",
children: Object(p.jsx)("div", {
className: "tooltip"
})
})
})
}
, q = a(659)
, F = a(651)
, M = a(219)
, E = a(314)
, U = Object(m.a)(Object(m.a)(Object(m.a)({}, {
pt: {
translations: {
header: {
dropdown: {
me: {
home: "Minha P\xe1gina",
profile: "Meu perfil",
settings: "Configura\xe7\xf5es",
logout: "Sair"
},
news: "Jornalismo",
community: {
title: "Comunidade",
halloffame: "Hall da Fama",
staff: "Equipe"
},
shop: "Loja",
housekeeping: "Painel de controle"
}
},
index: {
header: "Ol\xe1, muito bom ver voc\xea por aqui, atualmente temos muitos usu\xe1rios online, que tal se juntar a todos e desfrutar do que preparamos para voc\xea?",
login: {
title: "\xc1rea de login",
smallText: "Fa\xe7a login para jogar conosco!",
forgetPassword: "Esqueci minha senha",
placeholders: {
loginInput: "Nome de usu\xe1rio...",
passwordInput: "Sua senha..."
}
},
pin: {
title: "Insira seu PIN",
smallText: "Verifique seu e-mail e copie seu c\xf3digo de acesso.",
placeholders: {
pinInput: "Digite seu PIN..."
},
pinButton: "Verificar"
},
recover: {
title: "Recuperar conta",
smallText: "Recupere aqui sua conta informando o e-mail que a registrou.",
placeholders: {
recoverInput: "Digite seu e-mail"
},
recoverButton: "Recuperar",
buttonBack: "Voltar"
},
registerAnnouncement: {
title: "BEM-VINDO, OU VINDA!",
subtitle: "\xe9 um incr\xedvel mundo de pixels onde voc\xea pode criar e construir quartos da maneira que quiser e se divertir com seus amigos atrav\xe9s de jogos da comunidade.",
smallText: "N\xe3o perca tempo, registre-se agora mesmo e venha viver pessoalmente uma experi\xeancia agrad\xe1vel, ou n\xe3o, aqui no"
},
featuredUser: {
title: "Sem destaque..",
smallText: "Nenhum usu\xe1rio(a) destaque em eventos se destacou este m\xeas."
},
buttons: {
login: "Entrar",
createAccount: "CRIAR CONTA"
}
},
register: {
title: "Registre-se agora",
smallText: "Junte-se a n\xf3s hoje!",
usernameInput: {
details: "Escolha seu nome de usu\xe1rio sabiamente, n\xe3o toleramos vulgaridades em nomes de usu\xe1rios!",
requirements: "E o seu nome, tamb\xe9m, deve ter entre 4 e 15 letras e sem caracteres especiais.",
placeholder: "Nome de usu\xe1rio(a)"
},
emailInput: {
requirements: "Certifique-se de utilizar um e-mail v\xe1lido e verdadeiro, pois caso necess\xe1rio para recupera\xe7\xe3o de senhas, entrar em contato e dentre outro, entraremos em contato pelo mesmo.",
placeholder: "Endere\xe7o de e-mail"
},
passwordInput: {
requirements: "Seguran\xe7a nunca \xe9 demais! Utilize uma senha segura e f\xe1cil de voc\xea lembrar, outra op\xe7\xe3o \xe9 aceitar sugest\xf5es de senhas pelo seu pr\xf3prio navegador, a senha fica salva nele ao fazer login, facilitando mais e te deixando seguro(a).",
placeholder: "********"
},
gender: {
requirements: "Al\xe9m de ser obrigat\xf3rio, a escolha de sexo \xe9 ess\xeancial para que ao voc\xea se registrar voc\xea possa receber presentes bem legal, al\xe9m de tamb\xe9m identificar o seu g\xeanero de acordo com a sua escolha.",
female: "Sexo feminino",
male: "Sexo masculino"
},
registerPreview: {
title: "Seu nome aqui!",
smallText: "Vamos embarcar?"
},
buttons: {
createAccount: "Vamos nessa!"
},
aboutHotel: {
title: "Venha conhecer o",
firstDescription: "\xe9 um comunidade virtua de pixels onde voc\xea pode criar seu pr\xf3prio avatar, fazer muitos amigos, bater-papo com diversos usu\xe1rios e usu\xe1rias do nosso hotel, construir e decorar seus pr\xf3prios quartos, criar seus pr\xf3prios jogos ou jogar os de outros usu\xe1rios e muitos mais.",
secondDescription: "Criatividade e originalidade s\xe3o super bem-vindas no nosso hotel! Toda semana temos v\xe1rias competi\xe7\xf5es novas para voc\xea participar. De competi\xe7\xf5es de quarto, atividades legais onde voc\xea pode expressar todos os seus dons art\xedsticos e criativos e, ainda por cima, ganhar conquistas e pr\xeamios! Bateu a inspira\xe7\xe3o? D\xea uma olhada nas nossas not\xedcias para ficar por dentro das \xfaltimas atividades e competi\xe7\xf5es da semana!",
threeDescription: "Voc\xea adora bater papo e encontrar os seus amigos? os nossos Grupos, F\xf3rums e comunidades de RPG s\xe3o \xf3timas op\xe7\xf5es para voc\xea. Entre no ex\xe9rcito e assuma seus deveres, monte a sua pr\xf3pria escola e decida voc\xea mesmo o que estudar, e arrase na passarela ou corra para a emerg\xeancia e comece a salvar vidas pixeladas."
}
},
home: {
alert: {
title: "Aviso",
showMore: "Ver mais",
seeLess: "Ver menos"
},
userDetails: {
vip: "Voc\xea \xe9 VIP!",
buttons: {
enter: "Entrar no Hotel",
flash: "Entrar na vers\xe3o antiga",
beta: "Entrar na vers\xe3o NOVA"
}
},
events: {
title: "Nenhum evento no momento",
smallText: "Opps.. por enquanto n\xe3o adicionamos um evento."
},
friendsOnline: {
title: "Amigos Online",
smallText: "Voc\xea tem {{countMessage}} clique ao lado para visualiz\xe1-los.",
connectedFriendsPluralMessage: "amigos conectados",
connectedFriendsSingularMessage: "amigo conectado",
button: "Ver amigos"
},
friendsOffline: {
title: "Amigos Online",
smallText: "Opps.. parece que voc\xea n\xe3o tem nenhum <strong>amigo online</strong> no momento, tente adicionar novas pessoas no hotel."
},
activitys: {
title: "Nenhuma atividade no momento",
smallText: "Opps.. por enquanto n\xe3o adicionamos uma atividade."
},
richestPlayers: {
title: "Usu\xe1rios ricos",
currencys: {
type: {
credits: "cr\xe9ditos",
diamonds: "diamantes",
duckets: "duckets"
}
}
},
featuredGroup: {
title: "Grupos em destaque",
members: "membros"
},
downloadApp: {
title: "Baixe o aplicativo do",
downloads: {
windows: "Baixar para Windows",
macOS: "Baixar para MacOS"
}
},
socialNetworks: {
title: "Mais acessibilidade para voc\xea!",
instagram: "P\xe1gina no instagram",
twitter: "Siga-nos no twitter",
discord: "Servidor no discord"
}
},
profile: {
userNotFound: "Usu\xe1rio n\xe3o existe.",
searchInput: {
placeholder: "Pesquisar perfil de usu\xe1rio"
},
buttons: {
searchUser: "Procurar"
},
infos: {
online: "Conectado",
offline: "Desconectado",
isOwner: "Dono e desenvolvedor",
friendText: "amigos",
registeredIn: "Entrou em"
},
badges: {
ownerBadges: "Emblemas de {{username}}",
countBadges: "{{count}} emblemas"
},
groups: {
title: "Grupos de {{username}}",
countGroups: "<text>{{count}}</text> de {{count2}} grupos"
},
errands: {
title: "Recados de {{username}}",
smallText: "Os recados que amigos de {{username}} deixaram aqui!",
errandsBox: {
title: "Parece que {{username}} n\xe3o tem recados!",
smallText: "Voc\xea n\xe3o pode deixar um recado por enquanto, mas aqui est\xe3o os recados que seus amigos deixaram para voc\xea! Se algum recado contiver algo ofensivo ou que voc\xea n\xe3o goste, voc\xea pode exclu\xed-lo ou, em casos mais graves, denunciar a pessoa que deixou um recado para nossa equipe.",
habboway: 'Por favor, dedique um tempo para ler nossos <a className="bold">termos e condi\xe7\xf5es</a> para evitar penalidades.'
}
},
rooms: {
title: "Quartos de {{ownerRoom}}",
countRooms: "<text>0</text> de {{count}} quartos",
roomsInfo: {
goTo: "Visitar"
},
userNoHasRoom: "{{username}} n\xe3o tem nenhum quarto."
}
},
settings: {
othersPreferences: {
title: "Outras prefer\xeancias",
smallText: "Veja o que mais voc\xea pode alterar em sua conta.",
generalPreferences: "Prefer\xeancias geral",
myMail: "Meu email",
myPassword: "Minha senha",
socialMedia: "Redes sociais"
},
generalSettings: {
title: "Configura\xe7\xf5es r\xe1pidas",
smallText: "Aqui est\xe3o algumas configura\xe7\xf5es r\xe1pidas e ess\xeanciais que voc\xea pode alterar.",
motto: {
title: "Sua miss\xe3o",
smallText: "No que voc\xea est\xe1 pensando hoje",
placeholder: "Sua miss\xe3o aqui..."
},
friendRequests: {
title: "Pedidos de amizade",
smallText: "Eu desejo receber pedidos de amizade de todos."
},
lastOnline: {
title: "\xdaltimo online",
smallText: "Permitir que outros usu\xe1rios vejam a \xfaltima vez que voc\xea entrou no hotel?"
},
statusOnline: {
title: "Estado online",
smallText: "Permitir que outros usu\xe1rios vejam quando voc\xea estiver online?"
},
copyFigure: {
title: "Copiar visual",
smallText: "Permitir que outros usu\xe1rios possam copiar o seu visual? (comando :copy)"
},
followMe: {
title: "Te segui",
smallText: "Permitir que outros usu\xe1rios possam te seguir? (comando :follow)"
},
trade: {
title: "Negocia\xe7\xf5es",
smallText: "Permitir que outros usu\xe1rios possam negociar com voc\xea?"
},
whisper: {
title: "Sussurros",
smallText: "Permitir que outros usu\xe1rios sussurrem com voc\xea?"
},
allowSex: {
title: "Sexo",
smallText: "Permitir que outros usu\xe1rios usem o comando :sexo com voc\xea?"
},
mentions: {
title: "Men\xe7\xf5es",
smallText: "Quem pode usar para mencionar voc\xea?",
types: {
friends: "Amigos",
everyone: "Todos",
nobody: "Ningu\xe9m"
}
},
button: "Salvar altera\xe7\xf5es",
success: "Prefer\xeancias salvas com sucesso!"
},
email: {
title: "Alterar email",
smallText: "Aqui voc\xea pode trocar o email da sua conta.",
infos: {
title: "Seu email \xe9 muito importante!",
smallText: "Ao alterar seu email, use um email real! Porque? Caso algum dia voc\xea esque\xe7a a senha da sua conta, com certeza, precisaremos do seu email para fazer esse processo.",
smallText2: "N\xe3o se preocupe, n\xe3o enviamos esses e-mails promocionais chatos ou coisas desnecess\xe1rias no seu email."
},
emailInput: {
newMail: "Novo email"
},
button: "Concluir",
success: "E-mail alterado com sucesso!"
},
password: {
title: "Alterar senha",
smallText: "Aqui voc\xea pode alterar a senha da sua conta.",
infos: {
title: "SEMPRE ESCOLHA UMA SENHA SEGURA!",
smallText: "Seguran\xe7a nunca \xe9 demais! Portanto, ao alterar sua senha, de prefer\xeancia, escolha uma senha segura, que voc\xea lembre e tamb\xe9m que seja diferente daquela que voc\xea j\xe1 usa em outros habbos.",
smallText2: "Nunca d\xea a ningu\xe9m acesso \xe0 sua conta! Ao fornecer sua senha, n\xe3o somos respons\xe1veis \u200b\u200bpor isso; portanto, \xe9 de sua exclusiva responsabilidade sua comprometer o acesso \xe0 sua conta para outras pessoas.",
smallText3: "E nunca, de forma alguma, um membro de nossa equipe solicitar\xe1 sua senha e, se solicitar, voc\xea deve denunciar imediatamente a um membro superior."
},
passwordInput: {
currentPassword: "Senha atual",
newPassword: "Nova senha",
repeatPassword: "Cofirme sua nova senha",
placeholders: {
currentPassword: "Senha atual...",
newPassword: "Nova senha...",
repeatPassword: "Confirme sua nova senha..."
}
},
button: "Concluir",
success: "Senha alterada com sucesso!"
},
socialMedia: {
title: "Redes sociais",
smallText: "Aqui voc\xea pode alterar suas redes sociais.",
inputs: {
instagram: "Usu\xe1rio do Instagram",
imgur: "ID do Imgur",
vsco: "Usu\xe1rio do Vsco",
twitter: "Usu\xe1rio do twitter",
link: "Link al\xe9atorio",
placeholders: {
instagram: "https://instagram/redelella",
imgur: "https://imgur.com/a/R3h8vll",
vsco: "https://vsco.co/username/gallery",
twitter: "https://twitter/habbinfo",
link: "Link desejado"
}
}
}
},
articles: {
othersArticles: {
title: "Outras noticias",
smallText: "Continue lendo outras noticias que preparamos para voc\xea."
},
footerArticle: {
author: "Publicada por:",
date: "Em"
},
comments: {
placeholders: {
writeComment: "Digite aqui seu coment\xe1rio..."
},
commentOwner: "Por",
date: "\xe0s",
button: "Comentar",
disabledComments: {
title: "Melhor comentar sobre a vida dos outros",
smallText: "Pois os coment\xe1rios para essa noticia, foram desativados pelo autor."
}
}
},
hall: {
pages: {
rich: "Riqueza",
other: "Eventos e Promo\xe7\xf5es"
},
rich: {
currencys: {
credits: {
title: "Cr\xe9ditos",
txt1: "por ter",
txt2: "cr\xe9ditos"
},
diamonds: {
title: "Diamantes",
txt1: "por ter",
txt2: "diamantes"
},
duckets: {
title: "Duckets",
txt1: "por ter",
txt2: "duckets"
}
}
},
events_and_promotions: {
events: {
title: "Eventos",
txt1: "por ganhar",
txt2: "eventos"
},
promotions: {
title: "Promo\xe7\xf5es",
txt1: "por ganhar",
txt2: "promo\xe7\xf5es"
}
},
aboutHall: "O Hall da Fama de pontos e promo\xe7\xf5es foi criado com intuito de promover os melhores jogadores de eventos ou os mais empenhados em ganhar promo\xe7\xf5es onde voc\xea tem a chance de ficar entre os 5 usu\xe1rios que fazem mais pontos em eventos ou que participaram e ganharam promo\xe7\xf5es!",
aboutHall2: "Ao final de todo m\xeas este hall da fama \xe9 resetado, assim dando uma nova chance para que as outras pessoas possam aparecer por aqui, sem contar que ap\xf3s ser resetado os usu\xe1rios que ficaram no p\xf3dio (5 lugares) ganharam pr\xeamios sendo eles rubis, gemas, emblemas ou at\xe9 raros. N\xe3o perca essa chance e participe dos eventos e ganhe promo\xe7\xf5es para receber pr\xeamios e ficar famoso!",
button: "Saber mais"
},
staffs: {
pages: {
staff: "Equipe",
gea: "Gamers em A\xe7\xe3o",
colab: "Colabora\xe7\xe3o",
radio: "R\xe1dio",
creators: "Creators"
},
defaultMotto: "Fa\xe7o parte da equipe do {{hotelName}}!",
noStaff: {
title: "OH BOBBA?!",
smallText: "Parece que ningu\xe9m est\xe1 ocupando essa posi\xe7\xe3o atualmente! Mas fique atento a novas oportunidades, quem sabe voc\xea poderia ocup\xe1-la."
}
},
shop: {
pages: {
vip: "VIP",
stars: "Amuletos",
diamonds: "Diamantes",
duckets: "Duckets"
},
buttons: {
buy: "Comprar",
seeMore: "Ver Benef\xedcios",
seeLess: "Esconder Benef\xedcios",
help: "Ferramenta de ajuda"
}
},
footer: {
text: "<b>{{hotelName}}</b> 2009 - {{currentDate}}. Astro Server \xa9 Todos os direitos reservados.",
text2: "Desenvolvido por",
habboway: "{{hotelName}} Etiqueta",
statusServer: "Status",
publicity: {
title: "Publicidade de terceiros",
smallText: "As publicidades servem como forma de apoio financeiro ao {{hotelName}}"
},
changeLanguage: "Trocar Idioma",
languages: {
pt: "Portugu\xeas",
en: "Ingl\xeas",
es: "Espanhol"
}
}
}
}
}), {
en: {
translations: {
header: {
dropdown: {
me: {
home: "My Page",
profile: "My Profile",
settings: "Settings",
logout: "Logout"
},
news: "Journalism",
community: {
title: "Community",
halloffame: "Hall of Fame",
staff: "Staff"
},
shop: "Shop",
housekeeping: "Control Panel"
}
},
index: {
header: "Hello, great to see you here, we currently have a lot of users online, how about joining them all and enjoying what we have prepared for you?",
login: {
title: "Login Area",
smallText: "Login to play with us!",
forgetPassword: "I forgot my password",
placeholders: {
loginInput: "Username...",
passwordInput: "You password..."
}
},
pin: {
title: "Enter your PIN",
smallText: "Check your email and copy your access code.",
placeholders: {
pinInput: "Enter your PIN..."
},
pinButton: "Verify"
},
recover: {
title: "Recover account",
smallText: "Recover your account here by informing the email that registered it.",
placeholders: {
recoverInput: "Write your email"
},
recoverButton: "Recover",
buttonBack: "Return"
},
registerAnnouncement: {
title: "WELCOME!",
subtitle: "it's an amazing pixel world where you can design and build rooms the way you want and have fun with your friends through community games.",
smallText: "Don't waste time, register right now and come live a pleasant experience, or not, here at"
},
featuredUser: {
title: "No highlight..",
smallText: "No event featured users were featured this month."
},
buttons: {
login: "Enter",
createAccount: "Register now"
}
},
register: {
title: "Register now",
smallText: "Join us today!",
usernameInput: {
details: "Choose your username wisely, we don't tolerate vulgarity in usernames!",
requirements: "And your name, too, must have between 4 and 15 letters and no special characters.",
placeholder: "Username..."
},
emailInput: {
requirements: "Make sure you use a valid and true email, as if necessary to recover passwords, contact us and, among others, we will contact you through it.",
placeholder: "Email address"
},
passwordInput: {
requirements: "Security is never too much! Use a secure password that is easy for you to remember, another option is to accept password suggestions through your own browser, the password is saved in it when you log in, making it easier and making you safer.",
placeholder: "********"
},
gender: {
requirements: "In addition to being mandatory, the choice of gender is essential so that when registering you can receive nice gifts, in addition to also identifying your gender according to your choice.",
female: "Women",
male: "Male"
},
registerPreview: {
title: "Your name here!",
smallText: "Shall we board?"
},
buttons: {
createAccount: "Lets go!"
},
aboutHotel: {
title: "Come meet the",
firstDescription: "is a virtual pixel community where you can create your own avatar, make lots of friends, chat with different users of our hotel, build and decorate your own rooms, create your own games or play those of other users and many more.",
secondDescription: "Creativity and originality are very welcome at our hotel! Every week we have several new competitions for you to participate in. From bedroom competitions, cool activities where you can express all your artistic and creative gifts and, to top it off, earn achievements and prizes! Did you hit the inspiration? Check out our news for the latest activities and competitions of the week!",
threeDescription: "Do you love chatting and meeting your friends? our Groups, Forums and RPG communities are great options for you. Join the army and assume your duties, set up your own school and decide for yourself what to study, and rock the catwalk or rush to the emergency room and start saving pixelated lives."
}
},
home: {
alert: {
title: "Notice",
showMore: "Show more",
seeLess: "See less"
},
userDetails: {
vip: "You are VIP!",
buttons: {
enter: "Enter the Hotel",
flash: "Enter old version",
beta: "Enter the NEW version"
}
},
events: {
title: "No events at the moment",
smallText: "Opps... we havent added an event yet."
},
friendsOnline: {
title: "Online Friends",
smallText: "You have {{countMessage}} click on the side to view them.",
connectedFriendsPluralMessage: "connected friends",
connectedFriendsSingularMessage: "connected friend",
button: "View friends"
},
friendsOffline: {
title: "Online friends",
smallText: "Opps.. looks like you dont have any friends online at the moment, try adding new people in the hotel."
},
activitys: {
title: "No activity at the moment",
smallText: "Opps.. for now we havent added an activity."
},
richestPlayers: {
title: "Rich Users",
currencys: {
type: {
credits: "credits",
diamonds: "diamonds",
duckets: "duckets"
}
}
},
featuredGroup: {
title: "Featured groups",
members: "members"
},
downloadApp: {
title: "Download the app from",
downloads: {
windows: "Download for Windows",
macOS: "Download for MacOS"
}
},
socialNetworks: {
title: "More accessibility for you!",
instagram: "Page on Instagram",
twitter: "Follow us on Twitter",
discord: "Server on Discord"
}
},
profile: {
userNotFound: "User does not exist.",
searchInput: {
placeholder: "Search user profile"
},
buttons: {
searchUser: "Search"
},
infos: {
online: "Online",
offline: "Offline",
isOwner: "Owner and developer",
rank: "User",
friendText: "friends",
relationShips: {
others: "Others..."
},
registeredIn: "Registered in"
},
badges: {
ownerBadges: "Badges of {{username}}",
countBadges: "{{count}} badges"
},
groups: {
title: "Groups of {{username}}",
countGroups: "<text>{{count}}</text> of {{count2}} groups"
},
errands: {
title: "Messages from {{username}}",
smallText: "The errands that friends of {{username}} left here!",
errandsBox: {
title: "It looks like {{username}} has no errands!",
smallText: "You can't leave a message for now, but here are the messages your friends leave you! If any message contains anything offensive or that you don't like, you can delete it or, in more serious cases, report the person who left a message to our staff.",
habboway: 'Please take some time to read our <a className="bold">terms and conditions</a> to avoid penalties.'
}
},
rooms: {
title: "{{ownerRoom}} rooms",
countRooms: "<text>0</text> of {{count}} rooms",
roomsInfo: {
goTo: "Visit"
},
userNoHasRoom: "{{username}} does not have any rooms."
}
},
settings: {
othersPreferences: {
title: "Other preferences",
smallText: "See what else you can change in your account.",
generalPreferences: "General preferences",
myMail: "My email",
myPassword: "My password"
},
generalSettings: {
title: "Quick settings",
smallText: "Here are some quick and essential settings you can change.",
motto: {
title: "Your motto",
smallText: "What are you thinking today?",
placeholder: "Your motto here..."
},
friendRequests: {
title: "Friend requests",
smallText: "I want to receive friend requests from everyone."
},
lastOnline: {
title: "Last online",
smallText: "Allow other users to see the last time you logged into the hotel?"
},
statusOnline: {
title: "Online status",
smallText: "Allow other users to see when you are online?"
},
copyFigure: {
title: "Copy figure",
smallText: "Allow other users to copy your look? (command :copy)"
},
followMe: {
title: "Follow me",
smallText: "Allow other users to follow you? (command :follow)"
},
trade: {
title: "Trades",
smallText: "Allow other users to trade with you?"
},
whisper: {
title: "Whispers",
smallText: "Allow other users to whisper with you?"
},
allowSex: {
title: "Sex",
smallText: "Allow other users to use the :sex command with you?"
},
mentions: {
title: "Mentions",
smallText: "Who can use to mention you?",
types: {
friends: "Friends",
everyone: "Everyone",
nobody: "Nobody"
}
},
button: "Save changes",
success: "Preferences saved successfully!"
},
email: {
title: "Change email",
smallText: "Here you can change the email of your account.",
infos: {
title: "Your email is very important!",
smallText: "When changing your email, use a real email! Why? In case you forget your account password, we will surely need your email to reset it.",
smallText2: "Dont worry, we dont send those annoying promotional emails or unnecessary things to your email."
},
emailInput: {
newMail: "New email"
},
button: "Finish",
success: "Email successfully changed!"
},
password: {
title: "Change password",
smallText: "Here you can change your account password.",
infos: {
title: "ALWAYS CHOOSE A SECURE PASSWORD!",
smallText: "Security is never too much! Therefore, when changing your password, preferably choose a secure password that you remember and that is different from the one you already use on other Habbo sites.",
smallText2: "Never give anyone access to your account! By providing your password, we are not responsible for it, so it is your sole responsibility to compromise access to your account for others.",
smallText3: "And never, under any circumstances, will a member of our staff request your password, and if they do, you must report it immediately to a higher-up."
},
passwordInput: {
currentPassword: "Current password",
newPassword: "New password",
repeatPassword: "Confirm your new password",
placeholders: {
currentPassword: "Current password...",
newPassword: "New password...",
repeatPassword: "Confirm your new password..."
}
},
button: "Finish",
success: "Password changed successfully!"
}
},
articles: {
othersArticles: {
title: "Other news",
smallText: "Continue reading other news we have prepared for you."
},
footerArticle: {
author: "Published by:",
date: "On"
},
comments: {
placeholders: {
writeComment: "Type your comment here..."
},
commentOwner: "By",
date: "at",
button: "Comment",
disabledComments: {
title: "Better to comment on other peoples lives",
smallText: "Because comments for this news have been disabled by the author."
}
}
},
hall: {
pages: {
rich: "Wealth",
other: "Events and Promotions"
},
rich: {
currencys: {
credits: {
title: "Credits",
txt1: "for having",
txt2: "credits"
},
diamonds: {
title: "Diamonds",
txt1: "for having",
txt2: "diamonds"
},
duckets: {
title: "Duckets",
txt1: "for having",
txt2: "duckets"
}
}
},
events_and_promotions: {
events: {
title: "Events",
txt1: "for winning",
txt2: "events"
},
promotions: {
title: "Promotions",
txt1: "for winning",
txt2: "promotions"
}
},
aboutHall: "The Hall of Fame for points and promotions was created with the intention of promoting the best event players or those most committed to winning promotions where you have the chance to be among the 5 users who score the most points in events or who participated and won promotions!",
aboutHall2: "At the end of every month, this hall of fame is reset, thus giving a new chance for other people to appear here, not to mention that after being reset, the users who stayed on the podium (5 places) won prizes, such as rubies, gems, badges or even rares. Do not miss this chance and participate in events and win promotions to receive prizes and become famous!",
button: "Learn more"
},
staffs: {
pages: {
staff: "Staff",
gea: "Gamers in Action",
colab: "Collaboration",
radio: "Radio",
creators: "Creators"
},
defaultMotto: "I am part of the {{hotelName}} team!",
noStaff: {
title: "OH BOBBA?!",
smallText: "It looks like no one is currently holding this position! But stay tuned for new opportunities, who knows, maybe you could take on this role."
}