Skip to content

Commit

Permalink
Merge branch 'master' into warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Exitare authored Jan 19, 2025
2 parents 0051ff3 + e0ee752 commit e3a6a85
Show file tree
Hide file tree
Showing 65 changed files with 1,668 additions and 50 deletions.
21 changes: 21 additions & 0 deletions apps/keira/src/app/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ import {
QuestOfferRewardComponent,
QuestRequestItemsComponent,
QuestTemplateAddonComponent,
QuestTemplateLocaleComponent,
QuestTemplateComponent,
SelectQuestComponent,
} from '@keira/features/quest';
Expand All @@ -92,6 +93,7 @@ import {
AcoreStringHandlerService,
SelectAcoreStringComponent,
} from 'texts';
import { GameTeleComponent, GameTeleHandlerService, SelectGameTeleComponent } from '@keira/features/game-tele';

export const KEIRA_ROUTES: Routes = [
{
Expand Down Expand Up @@ -223,6 +225,11 @@ export const KEIRA_ROUTES: Routes = [
component: QuestTemplateAddonComponent,
canActivate: [QuestHandlerService],
},
{
path: 'quest-template-locale',
component: QuestTemplateLocaleComponent,
canActivate: [QuestHandlerService],
},
{
path: 'quest-offer-reward',
component: QuestOfferRewardComponent,
Expand Down Expand Up @@ -484,4 +491,18 @@ export const KEIRA_ROUTES: Routes = [
},
],
},
{
path: 'game-tele',
children: [
{
path: 'select',
component: SelectGameTeleComponent,
},
{
path: 'tele',
component: GameTeleComponent,
canActivate: [GameTeleHandlerService],
},
],
},
];
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Quest auswählen",
"QUEST_TEMPLATE": "Questvorlage",
"QUEST_TEMPLATE_ADDON": "Questvorlagen-Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest-Belohnung anbieten",
"QUEST_REQUEST_ITEMS": "Quest-Objekte anfordern",
"CREATURE_QUESTSTARTER": "Questgeber-Kreatur",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Zauber-DBC-Overrides",
"SEARCH_SPELL": "Zauber suchen",
"SPELL_DBC_EDITOR": "Zauber-DBC-Editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Select Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
9 changes: 9 additions & 0 deletions apps/keira/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Select Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Seleccionar Misión",
"QUEST_TEMPLATE": "Plantilla de Misión",
"QUEST_TEMPLATE_ADDON": "Addon de Plantilla de Misión",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Recompensa por Ofrecimiento de la Misión",
"QUEST_REQUEST_ITEMS": "Items Requeridos para la Misión",
"CREATURE_QUESTSTARTER": "Criatura para Iniciar la Misión",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Anulaciones de Hechizos (Spell DBC)",
"SEARCH_SPELL": "Buscar Hechizos",
"SPELL_DBC_EDITOR": "Editor de Hechizos (Spell DBC)"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Desconocido. Sólo se usa el valor 50 para algunos hechizos.",
"REQUIRED_AURA_VISION": "Desconocido. Sólo 16 hechizos usan otro valor como 0. Podría ser usado para efectos visuales."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Sélectionner une quête",
"QUEST_TEMPLATE": "Modèle de quête",
"QUEST_TEMPLATE_ADDON": "Modèle d'addon de quête",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Offre de récompense de quête",
"QUEST_REQUEST_ITEMS": "Requête d'objets de quête",
"CREATURE_QUESTSTARTER": "Créature qui débute une quête",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Select Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Select Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Select Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Select Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Selecionar Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Procurar Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Desconhecido. O único valor usado é 50 para alguns spells.",
"REQUIRED_AURA_VISION": "Desconhecido. Somente 16 Spells usam um valor diferente de 0. Talvez é usado para efeitos visuais."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
11 changes: 10 additions & 1 deletion apps/keira/src/assets/i18n/ro.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"SELECT_QUEST": "Select Quest",
"QUEST_TEMPLATE": "Quest Template",
"QUEST_TEMPLATE_ADDON": "Quest Template Addon",
"QUEST_TEMPLATE_LOCALE": "Quest Template Locale",
"QUEST_OFFER_REWARD": "Quest Offer Reward",
"QUEST_REQUEST_ITEMS": "Quest Request Items",
"CREATURE_QUESTSTARTER": "Creature Queststarter",
Expand Down Expand Up @@ -173,6 +174,11 @@
"TITLE": "Spell DBC overrides",
"SEARCH_SPELL": "Search Spell",
"SPELL_DBC_EDITOR": "Spell DBC editor"
},
"GAME_TELE": {
"TITLE": "Game Teleport",
"SEARCH_GAME_TELE": "Search Teleport",
"SELECT_GAME_TELE": "Game Tele Editor"
}
},
"DASHBOARD": {
Expand Down Expand Up @@ -862,5 +868,8 @@
"SPELL_PRIORITY": "Unknown. Only used value is 50 for some spells.",
"REQUIRED_AURA_VISION": "Unknown. Only 16 Spells use another value as 0. Could be used for visual effects."
}
},
"GAME_TELE": {
"EDITOR": "Teleport Editor"
}
}
}
Loading

0 comments on commit e3a6a85

Please sign in to comment.