@rpg-engine/shared 0.8.89 → 0.8.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/README.md +29 -29
  2. package/dist/constants/date.constants.d.ts +2 -2
  3. package/dist/constants/date.constants.js +5 -5
  4. package/dist/constants/npc.constants.d.ts +1 -1
  5. package/dist/constants/npc.constants.js +4 -4
  6. package/dist/constants/socket.constants.d.ts +2 -2
  7. package/dist/constants/socket.constants.js +6 -6
  8. package/dist/constants/world.constants.d.ts +10 -10
  9. package/dist/constants/world.constants.js +13 -13
  10. package/dist/helpers/deviceHelpers.d.ts +2 -2
  11. package/dist/helpers/deviceHelpers.js +16 -16
  12. package/dist/helpers/itemSlotHelper.d.ts +7 -7
  13. package/dist/helpers/itemSlotHelper.js +27 -27
  14. package/dist/helpers/skillHelpers.d.ts +4 -4
  15. package/dist/helpers/skillHelpers.js +25 -25
  16. package/dist/helpers/weightHelper.d.ts +1 -1
  17. package/dist/helpers/weightHelper.js +14 -14
  18. package/dist/index.d.ts +57 -57
  19. package/dist/index.js +73 -73
  20. package/dist/libs/GridHelper.d.ts +11 -11
  21. package/dist/libs/GridHelper.js +37 -37
  22. package/dist/libs/MathHelper.d.ts +16 -16
  23. package/dist/libs/MathHelper.js +14 -14
  24. package/dist/libs/SocketHelper.d.ts +2 -2
  25. package/dist/libs/SocketHelper.js +14 -14
  26. package/dist/libs/TextHelper.d.ts +7 -7
  27. package/dist/libs/TextHelper.js +21 -21
  28. package/dist/libs/TypeHelper.d.ts +3 -3
  29. package/dist/libs/TypeHelper.js +16 -16
  30. package/dist/translations/app-rate.lang.json +38 -38
  31. package/dist/translations/assets.lang.json +82 -82
  32. package/dist/translations/auth.lang.json +182 -182
  33. package/dist/translations/email.lang.json +70 -70
  34. package/dist/translations/error.lang.json +18 -18
  35. package/dist/translations/form.lang.json +94 -94
  36. package/dist/translations/global.lang.json +90 -90
  37. package/dist/translations/logs.lang.json +6 -6
  38. package/dist/translations/onboarding.lang.d.ts +10 -10
  39. package/dist/translations/onboarding.lang.js +21 -21
  40. package/dist/translations/onboarding.lang.json +50 -50
  41. package/dist/translations/order.lang.json +90 -90
  42. package/dist/translations/search.lang.json +50 -50
  43. package/dist/translations/settings.lang.json +14 -14
  44. package/dist/translations/tabs.lang.json +22 -22
  45. package/dist/translations/users.lang.json +22 -22
  46. package/dist/translations/validation.lang.json +86 -86
  47. package/dist/types/animation.types.d.ts +69 -69
  48. package/dist/types/animation.types.js +46 -46
  49. package/dist/types/api.types.d.ts +21 -21
  50. package/dist/types/api.types.js +20 -20
  51. package/dist/types/asset.types.d.ts +6 -6
  52. package/dist/types/asset.types.js +2 -2
  53. package/dist/types/auth.types.d.ts +7 -7
  54. package/dist/types/auth.types.js +2 -2
  55. package/dist/types/battle.types.d.ts +41 -41
  56. package/dist/types/battle.types.js +18 -18
  57. package/dist/types/buff.types.d.ts +39 -39
  58. package/dist/types/buff.types.js +13 -13
  59. package/dist/types/character.types.d.ts +233 -233
  60. package/dist/types/character.types.js +65 -65
  61. package/dist/types/chat.types.d.ts +72 -72
  62. package/dist/types/chat.types.js +22 -22
  63. package/dist/types/depot.types.d.ts +18 -18
  64. package/dist/types/depot.types.js +9 -9
  65. package/dist/types/device.types.d.ts +24 -24
  66. package/dist/types/device.types.js +7 -7
  67. package/dist/types/displayText.types.d.ts +10 -10
  68. package/dist/types/displayText.types.js +7 -7
  69. package/dist/types/entity.types.d.ts +30 -30
  70. package/dist/types/entity.types.js +20 -20
  71. package/dist/types/env.types.d.ts +5 -5
  72. package/dist/types/env.types.js +9 -9
  73. package/dist/types/equipment.types.d.ts +35 -35
  74. package/dist/types/equipment.types.js +18 -18
  75. package/dist/types/googleOAuth.types.d.ts +47 -47
  76. package/dist/types/googleOAuth.types.js +2 -2
  77. package/dist/types/inventory.types.d.ts +7 -7
  78. package/dist/types/inventory.types.js +2 -2
  79. package/dist/types/item.types.d.ts +377 -376
  80. package/dist/types/item.types.d.ts.map +1 -1
  81. package/dist/types/item.types.js +154 -154
  82. package/dist/types/item.types.js.map +1 -1
  83. package/dist/types/itemContainer.types.d.ts +83 -83
  84. package/dist/types/itemContainer.types.js +11 -11
  85. package/dist/types/leaderboard.types.d.ts +32 -32
  86. package/dist/types/leaderboard.types.js +9 -9
  87. package/dist/types/macro.types.d.ts +8 -8
  88. package/dist/types/macro.types.js +12 -12
  89. package/dist/types/maps.types.d.ts +90 -90
  90. package/dist/types/maps.types.js +85 -85
  91. package/dist/types/marketplace.types.d.ts +61 -61
  92. package/dist/types/marketplace.types.js +15 -15
  93. package/dist/types/notification.types.d.ts +14 -14
  94. package/dist/types/notification.types.js +2 -2
  95. package/dist/types/npc.types.d.ts +165 -165
  96. package/dist/types/npc.types.js +49 -49
  97. package/dist/types/pagination.types.d.ts +13 -13
  98. package/dist/types/pagination.types.js +2 -2
  99. package/dist/types/party.types.d.ts +83 -83
  100. package/dist/types/party.types.js +54 -54
  101. package/dist/types/places.types.d.ts +16 -16
  102. package/dist/types/places.types.js +9 -9
  103. package/dist/types/preloadScene.types.d.ts +4 -4
  104. package/dist/types/preloadScene.types.js +7 -7
  105. package/dist/types/premiumAccount.types.d.ts +7 -7
  106. package/dist/types/premiumAccount.types.js +11 -11
  107. package/dist/types/quest.types.d.ts +74 -74
  108. package/dist/types/quest.types.js +21 -21
  109. package/dist/types/raid.types.d.ts +6 -6
  110. package/dist/types/raid.types.js +2 -2
  111. package/dist/types/resource.types.d.ts +5 -5
  112. package/dist/types/resource.types.js +2 -2
  113. package/dist/types/scene.types.d.ts +8 -8
  114. package/dist/types/scene.types.js +8 -8
  115. package/dist/types/shortcut.types.d.ts +11 -11
  116. package/dist/types/shortcut.types.js +9 -9
  117. package/dist/types/skills.types.d.ts +144 -144
  118. package/dist/types/skills.types.js +106 -106
  119. package/dist/types/socket.types.d.ts +18 -18
  120. package/dist/types/socket.types.js +8 -8
  121. package/dist/types/spell.types.d.ts +156 -144
  122. package/dist/types/spell.types.d.ts.map +1 -1
  123. package/dist/types/spell.types.js +108 -96
  124. package/dist/types/spell.types.js.map +1 -1
  125. package/dist/types/tiled.types.d.ts +119 -119
  126. package/dist/types/tiled.types.js +7 -7
  127. package/dist/types/trade.types.d.ts +65 -65
  128. package/dist/types/trade.types.js +15 -15
  129. package/dist/types/translation.types.d.ts +5 -5
  130. package/dist/types/translation.types.js +8 -8
  131. package/dist/types/ui.types.d.ts +8 -8
  132. package/dist/types/ui.types.js +7 -7
  133. package/dist/types/useWith.types.d.ts +25 -25
  134. package/dist/types/useWith.types.js +9 -9
  135. package/dist/types/user.types.d.ts +104 -104
  136. package/dist/types/user.types.js +38 -38
  137. package/dist/types/validation.types.d.ts +9 -9
  138. package/dist/types/validation.types.js +2 -2
  139. package/dist/types/view.types.d.ts +15 -15
  140. package/dist/types/view.types.js +7 -7
  141. package/package.json +43 -43
@@ -1,50 +1,50 @@
1
- {
2
- "milestoneCompleted": {
3
- "eng": "Milestone Completed",
4
- "ptBr": "Meta Concluída"
5
- },
6
- "firstStockBuyModalSubtitle": {
7
- "eng": "Ahoy! You bought your first stock",
8
- "ptBr": "Boa! Você comprou seu primeiro ativo"
9
- },
10
- "firstStockSellModalSubtitle": {
11
- "eng": "Ahoy! You sold your first stock",
12
- "ptBr": "Boa! Você vendeu seu primeiro ativo"
13
- },
14
- "searchAsset": {
15
- "eng": "Search for an Asset",
16
- "ptBr": "Procure por um Ativo"
17
- },
18
- "setOrderQty": {
19
- "eng": "Set your order quantity",
20
- "ptBr": "Defina a quantidade da ordem"
21
- },
22
- "selectOperationType": {
23
- "eng": "Select operation type",
24
- "ptBr": "Selecione o tipo de operação"
25
- },
26
- "placeYourOrder": {
27
- "eng": "Place your order",
28
- "ptBr": "Faça sua ordem"
29
- },
30
- "searchAssetText": {
31
- "eng": "Search for any stock that's interesting for you. You can try by name or ticker. For example: Type 'Netflix' or 'NFLX' to buy the Netflix stock.",
32
- "ptBr": "Pesquise qualquer ação que seja do seu interesse. Você pode tentar por nome da empresa ou ticker. Por exemplo: digite 'Netflix' ou 'NFLX' para comprar ações da Netflix."
33
- },
34
- "setOrderQtyText": {
35
- "eng": "Here you set how much from your funds you'd like to invest in this asset. Try typing 10,000, for example.",
36
- "ptBr": "Aqui você define quanto de seus fundos gostaria de investir neste ativo. Tente digitar 10.000, por exemplo."
37
- },
38
- "selectOperationTypeText": {
39
- "eng": "You can toggle here the order operation. For this example, let's leave the 'buy' toggle selected.",
40
- "ptBr": "Você pode alternar aqui a operação da ordem. Para este exemplo, vamos deixar o botão de alternância 'comprar' selecionado."
41
- },
42
- "placeYourOrderText": {
43
- "eng": "Now click here to place your order.",
44
- "ptBr": "Agora clique aqui para fazer sua ordem."
45
- },
46
- "gotIt": {
47
- "eng": "Got It!",
48
- "ptBr": "Entendi!"
49
- }
50
- }
1
+ {
2
+ "milestoneCompleted": {
3
+ "eng": "Milestone Completed",
4
+ "ptBr": "Meta Concluída"
5
+ },
6
+ "firstStockBuyModalSubtitle": {
7
+ "eng": "Ahoy! You bought your first stock",
8
+ "ptBr": "Boa! Você comprou seu primeiro ativo"
9
+ },
10
+ "firstStockSellModalSubtitle": {
11
+ "eng": "Ahoy! You sold your first stock",
12
+ "ptBr": "Boa! Você vendeu seu primeiro ativo"
13
+ },
14
+ "searchAsset": {
15
+ "eng": "Search for an Asset",
16
+ "ptBr": "Procure por um Ativo"
17
+ },
18
+ "setOrderQty": {
19
+ "eng": "Set your order quantity",
20
+ "ptBr": "Defina a quantidade da ordem"
21
+ },
22
+ "selectOperationType": {
23
+ "eng": "Select operation type",
24
+ "ptBr": "Selecione o tipo de operação"
25
+ },
26
+ "placeYourOrder": {
27
+ "eng": "Place your order",
28
+ "ptBr": "Faça sua ordem"
29
+ },
30
+ "searchAssetText": {
31
+ "eng": "Search for any stock that's interesting for you. You can try by name or ticker. For example: Type 'Netflix' or 'NFLX' to buy the Netflix stock.",
32
+ "ptBr": "Pesquise qualquer ação que seja do seu interesse. Você pode tentar por nome da empresa ou ticker. Por exemplo: digite 'Netflix' ou 'NFLX' para comprar ações da Netflix."
33
+ },
34
+ "setOrderQtyText": {
35
+ "eng": "Here you set how much from your funds you'd like to invest in this asset. Try typing 10,000, for example.",
36
+ "ptBr": "Aqui você define quanto de seus fundos gostaria de investir neste ativo. Tente digitar 10.000, por exemplo."
37
+ },
38
+ "selectOperationTypeText": {
39
+ "eng": "You can toggle here the order operation. For this example, let's leave the 'buy' toggle selected.",
40
+ "ptBr": "Você pode alternar aqui a operação da ordem. Para este exemplo, vamos deixar o botão de alternância 'comprar' selecionado."
41
+ },
42
+ "placeYourOrderText": {
43
+ "eng": "Now click here to place your order.",
44
+ "ptBr": "Agora clique aqui para fazer sua ordem."
45
+ },
46
+ "gotIt": {
47
+ "eng": "Got It!",
48
+ "ptBr": "Entendi!"
49
+ }
50
+ }
@@ -1,90 +1,90 @@
1
- {
2
- "placeAssetOrder": {
3
- "eng": "Place an Asset Order",
4
- "ptBr": "Nova Ordem de Ativo"
5
- },
6
- "amountIn": {
7
- "eng": "Amount in",
8
- "ptBr": "Quantia em"
9
- },
10
- "funds": {
11
- "eng": "Remaining funds",
12
- "ptBr": "Fundos restantes"
13
- },
14
- "placeBuyOrderCTA": {
15
- "eng": "Place a buy order",
16
- "ptBr": "Finalizar compra"
17
- },
18
- "placeSellOrderCTA": {
19
- "eng": "Place a sell order",
20
- "ptBr": "Finalizar venda"
21
- },
22
- "buy": {
23
- "eng": "Buy",
24
- "ptBr": "Compra"
25
- },
26
- "sell": {
27
- "eng": "Sell",
28
- "ptBr": "Venda"
29
- },
30
- "confirmBuyOrder": {
31
- "eng": "Confirm the Buy Order.",
32
- "ptBr": "Confirme o Pedido de Compra."
33
- },
34
- "confirmSellOrder": {
35
- "eng": "Confirm the Sell Order.",
36
- "ptBr": "Confirme o Pedido de Venda."
37
- },
38
- "noPortfolioDefined": {
39
- "eng": "Error: No portfolio defined.",
40
- "ptBr": "Erro: Nenhuma carteira definida."
41
- },
42
- "noAssetDefined": {
43
- "eng": "Please, select an asset.",
44
- "ptBr": "Por favor, selecione um ativo."
45
- },
46
- "selectPositiveQuantity": {
47
- "eng": "Please, enter a positive quantity.",
48
- "ptBr": "Por favor, adicione uma quantidade positiva"
49
- },
50
- "selectPositiveValue": {
51
- "eng": "Please, enter a positive amount.",
52
- "ptBr": "Por favor, adicione uma quantia positiva"
53
- },
54
- "noHasAssetToSell": {
55
- "eng": "The portfolio does not have the selected asset to sell it.",
56
- "ptBr": "A carteira não possui o ativo selecionado para venda."
57
- },
58
- "noPurchaseTypeDefined": {
59
- "eng": "Error: No purchase type defined.",
60
- "ptBr": "Erro: Nenhum tipo de compra definido."
61
- },
62
- "quantity": {
63
- "eng": "Quantity",
64
- "ptBr": "Quantidade"
65
- },
66
- "amount": {
67
- "eng": "Amount",
68
- "ptBr": "Quantia"
69
- },
70
- "shares": {
71
- "eng": "Number of",
72
- "ptBr": "Número de"
73
- },
74
- "shares2": {
75
- "eng": "shares",
76
- "ptBr": "ações"
77
- },
78
- "portfolioAsset": {
79
- "eng": "Trade a portfolio asset",
80
- "ptBr": "Faça uma nova transação"
81
- },
82
- "youHave": {
83
- "eng": "You have",
84
- "ptBt": "Você tem"
85
- },
86
- "insufficientFunds": {
87
- "eng": "Your portfolio does not have sufficient funds to process the order.",
88
- "ptBr": "Sua carteira não tem fundos suficientes para processar o pedido."
89
- }
90
- }
1
+ {
2
+ "placeAssetOrder": {
3
+ "eng": "Place an Asset Order",
4
+ "ptBr": "Nova Ordem de Ativo"
5
+ },
6
+ "amountIn": {
7
+ "eng": "Amount in",
8
+ "ptBr": "Quantia em"
9
+ },
10
+ "funds": {
11
+ "eng": "Remaining funds",
12
+ "ptBr": "Fundos restantes"
13
+ },
14
+ "placeBuyOrderCTA": {
15
+ "eng": "Place a buy order",
16
+ "ptBr": "Finalizar compra"
17
+ },
18
+ "placeSellOrderCTA": {
19
+ "eng": "Place a sell order",
20
+ "ptBr": "Finalizar venda"
21
+ },
22
+ "buy": {
23
+ "eng": "Buy",
24
+ "ptBr": "Compra"
25
+ },
26
+ "sell": {
27
+ "eng": "Sell",
28
+ "ptBr": "Venda"
29
+ },
30
+ "confirmBuyOrder": {
31
+ "eng": "Confirm the Buy Order.",
32
+ "ptBr": "Confirme o Pedido de Compra."
33
+ },
34
+ "confirmSellOrder": {
35
+ "eng": "Confirm the Sell Order.",
36
+ "ptBr": "Confirme o Pedido de Venda."
37
+ },
38
+ "noPortfolioDefined": {
39
+ "eng": "Error: No portfolio defined.",
40
+ "ptBr": "Erro: Nenhuma carteira definida."
41
+ },
42
+ "noAssetDefined": {
43
+ "eng": "Please, select an asset.",
44
+ "ptBr": "Por favor, selecione um ativo."
45
+ },
46
+ "selectPositiveQuantity": {
47
+ "eng": "Please, enter a positive quantity.",
48
+ "ptBr": "Por favor, adicione uma quantidade positiva"
49
+ },
50
+ "selectPositiveValue": {
51
+ "eng": "Please, enter a positive amount.",
52
+ "ptBr": "Por favor, adicione uma quantia positiva"
53
+ },
54
+ "noHasAssetToSell": {
55
+ "eng": "The portfolio does not have the selected asset to sell it.",
56
+ "ptBr": "A carteira não possui o ativo selecionado para venda."
57
+ },
58
+ "noPurchaseTypeDefined": {
59
+ "eng": "Error: No purchase type defined.",
60
+ "ptBr": "Erro: Nenhum tipo de compra definido."
61
+ },
62
+ "quantity": {
63
+ "eng": "Quantity",
64
+ "ptBr": "Quantidade"
65
+ },
66
+ "amount": {
67
+ "eng": "Amount",
68
+ "ptBr": "Quantia"
69
+ },
70
+ "shares": {
71
+ "eng": "Number of",
72
+ "ptBr": "Número de"
73
+ },
74
+ "shares2": {
75
+ "eng": "shares",
76
+ "ptBr": "ações"
77
+ },
78
+ "portfolioAsset": {
79
+ "eng": "Trade a portfolio asset",
80
+ "ptBr": "Faça uma nova transação"
81
+ },
82
+ "youHave": {
83
+ "eng": "You have",
84
+ "ptBt": "Você tem"
85
+ },
86
+ "insufficientFunds": {
87
+ "eng": "Your portfolio does not have sufficient funds to process the order.",
88
+ "ptBr": "Sua carteira não tem fundos suficientes para processar o pedido."
89
+ }
90
+ }
@@ -1,50 +1,50 @@
1
- {
2
- "search": {
3
- "eng": "Search",
4
- "ptBr": "Pesquisar"
5
- },
6
- "searchPlaceholder": {
7
- "eng": "Search by company or ticker",
8
- "ptBr": "Pesquise a companhia ou ticker"
9
- },
10
- "sortBy": {
11
- "eng": "Sort by",
12
- "ptBr": "Ordenar por"
13
- },
14
- "resultsFound": {
15
- "eng": "results found",
16
- "ptBr": "resultados encontrados"
17
- },
18
- "first15": {
19
- "eng": "First 15 results found",
20
- "ptBr": "15 primeiros resultados encontrados"
21
- },
22
- "noResult": {
23
- "eng": "No result found",
24
- "ptBr": "Nenhum resultado encontrado"
25
- },
26
- "oneResult": {
27
- "eng": "One result found",
28
- "ptBr": "Um resultado encontrado"
29
- },
30
- "countrySortBy": {
31
- "eng": "Country",
32
- "ptBr": "País"
33
- },
34
- "nameSortBy": {
35
- "eng": "Company Name",
36
- "ptBr": "Nome da Companhia"
37
- },
38
- "tickerSortBy": {
39
- "eng": "Ticker",
40
- "ptBr": "Ticker"
41
- },
42
- "typeSortBy": {
43
- "eng": "Type",
44
- "ptBr": "Tipo"
45
- },
46
- "stockExchangeSortBy": {
47
- "eng": "Stock Exchange",
48
- "ptBr": "Bolsa de Valores"
49
- }
50
- }
1
+ {
2
+ "search": {
3
+ "eng": "Search",
4
+ "ptBr": "Pesquisar"
5
+ },
6
+ "searchPlaceholder": {
7
+ "eng": "Search by company or ticker",
8
+ "ptBr": "Pesquise a companhia ou ticker"
9
+ },
10
+ "sortBy": {
11
+ "eng": "Sort by",
12
+ "ptBr": "Ordenar por"
13
+ },
14
+ "resultsFound": {
15
+ "eng": "results found",
16
+ "ptBr": "resultados encontrados"
17
+ },
18
+ "first15": {
19
+ "eng": "First 15 results found",
20
+ "ptBr": "15 primeiros resultados encontrados"
21
+ },
22
+ "noResult": {
23
+ "eng": "No result found",
24
+ "ptBr": "Nenhum resultado encontrado"
25
+ },
26
+ "oneResult": {
27
+ "eng": "One result found",
28
+ "ptBr": "Um resultado encontrado"
29
+ },
30
+ "countrySortBy": {
31
+ "eng": "Country",
32
+ "ptBr": "País"
33
+ },
34
+ "nameSortBy": {
35
+ "eng": "Company Name",
36
+ "ptBr": "Nome da Companhia"
37
+ },
38
+ "tickerSortBy": {
39
+ "eng": "Ticker",
40
+ "ptBr": "Ticker"
41
+ },
42
+ "typeSortBy": {
43
+ "eng": "Type",
44
+ "ptBr": "Tipo"
45
+ },
46
+ "stockExchangeSortBy": {
47
+ "eng": "Stock Exchange",
48
+ "ptBr": "Bolsa de Valores"
49
+ }
50
+ }
@@ -1,14 +1,14 @@
1
- {
2
- "settings": {
3
- "eng": "Settings",
4
- "ptBr": "Configurações"
5
- },
6
- "colorDisplay": {
7
- "eng": "Color Display",
8
- "ptBr": "Modo de Cores"
9
- },
10
- "language": {
11
- "eng": "Language",
12
- "ptBr": "Idioma"
13
- }
14
- }
1
+ {
2
+ "settings": {
3
+ "eng": "Settings",
4
+ "ptBr": "Configurações"
5
+ },
6
+ "colorDisplay": {
7
+ "eng": "Color Display",
8
+ "ptBr": "Modo de Cores"
9
+ },
10
+ "language": {
11
+ "eng": "Language",
12
+ "ptBr": "Idioma"
13
+ }
14
+ }
@@ -1,22 +1,22 @@
1
- {
2
- "home": {
3
- "eng": "Home",
4
- "ptBr": "Início"
5
- },
6
- "track": {
7
- "eng": "Track",
8
- "ptBr": "Rastrear"
9
- },
10
- "search": {
11
- "eng": "Search",
12
- "ptBr": "Buscar"
13
- },
14
- "news": {
15
- "eng": "News",
16
- "ptBr": "Notícias"
17
- },
18
- "settings": {
19
- "eng": "Settings",
20
- "ptBr": "Configurações"
21
- }
22
- }
1
+ {
2
+ "home": {
3
+ "eng": "Home",
4
+ "ptBr": "Início"
5
+ },
6
+ "track": {
7
+ "eng": "Track",
8
+ "ptBr": "Rastrear"
9
+ },
10
+ "search": {
11
+ "eng": "Search",
12
+ "ptBr": "Buscar"
13
+ },
14
+ "news": {
15
+ "eng": "News",
16
+ "ptBr": "Notícias"
17
+ },
18
+ "settings": {
19
+ "eng": "Settings",
20
+ "ptBr": "Configurações"
21
+ }
22
+ }
@@ -1,22 +1,22 @@
1
- {
2
- "adminOnly": {
3
- "eng": "Only admins can access this route!",
4
- "ptBr": "Apenas administradores podem acessar esta rota."
5
- },
6
- "userAlreadyExists": {
7
- "eng": "The user with e-mail {{email}} already exists! Please, try again.",
8
- "ptBr": "O usuário com e-mail {{email}} já existe! Por favor, tente novamente."
9
- },
10
- "userNotFound": {
11
- "eng": "User does not exist!",
12
- "ptBr": "Usuário não existe!"
13
- },
14
- "userCreationError": {
15
- "eng": "Error while trying to sign up. Please, check if all required fields were filled correctly.",
16
- "ptBr": "Erro ao tentar criar novo usuário. Por favor, verifique se todos os campos obrigatórios foram preenchidos corretamente."
17
- },
18
- "userAlreadyUnsubscribed": {
19
- "eng": "This user is already unsubscribed!",
20
- "ptBr": "Este usuário já cancelou a inscrição!"
21
- }
22
- }
1
+ {
2
+ "adminOnly": {
3
+ "eng": "Only admins can access this route!",
4
+ "ptBr": "Apenas administradores podem acessar esta rota."
5
+ },
6
+ "userAlreadyExists": {
7
+ "eng": "The user with e-mail {{email}} already exists! Please, try again.",
8
+ "ptBr": "O usuário com e-mail {{email}} já existe! Por favor, tente novamente."
9
+ },
10
+ "userNotFound": {
11
+ "eng": "User does not exist!",
12
+ "ptBr": "Usuário não existe!"
13
+ },
14
+ "userCreationError": {
15
+ "eng": "Error while trying to sign up. Please, check if all required fields were filled correctly.",
16
+ "ptBr": "Erro ao tentar criar novo usuário. Por favor, verifique se todos os campos obrigatórios foram preenchidos corretamente."
17
+ },
18
+ "userAlreadyUnsubscribed": {
19
+ "eng": "This user is already unsubscribed!",
20
+ "ptBr": "Este usuário já cancelou a inscrição!"
21
+ }
22
+ }