Localise some error text

This commit is contained in:
Dev 2023-10-24 16:40:34 +01:00
parent 657dd358c2
commit a5dbfef7d0
4 changed files with 16 additions and 7 deletions

View File

@ -50,6 +50,7 @@
"bot-unable_to_edit_limits_of_unknown_map": "Unable to edit bot limits of map: %s as it cannot be found",
"bot-unable_to_find_loot_n_value_for_bot": "Unable to find loot N value for bot: %s, using scav n value instead",
"bot-unable_to_find_bot_in_cache": "Unable to find bot in cache with name: %s",
"bot-missing_application_context": "applicationContex could not find %s value. Did you restart the server without restarting the game?",
"client_request": "[Client Request] %s",
"customisation-item_already_purchased": "Clothing item {{itemId}} {{itemName}} already purchased",
"customisation-unable_to_find_suit_by_id": "Unable to find trader suit offer with id: %s",
@ -99,6 +100,8 @@
"inventory-get_item_size_item_not_found_by_tpl": "getSizeByInventoryItemHash() Item with tpl: %s not found",
"inventory-item_to_toggle_missing_upd": "Inventory item with _id: %s is missing a upd object, adding",
"inventory-unable_to_toggle_item_not_found": "Unable to toggle inventory item with id: %s, item not found",
"inventory-missing_stash_size": "Unable to determine stash size as no stash found in player inventory",
"inventory-stash_not_found": "Unable to find stash %s in db",
"item-durability_value_invalid_use_default": "getRepairableItemQualityValue() weapon tpl: %s durability value is invalid, defaulting to 1",
"linux_use_priviledged_port_non_root": "Non-root processes cannot bind to ports below 1024",
"location-containers_generated_success": "A total of %s static containers generated",
@ -115,6 +118,9 @@
"location-spawnpoint_missing_items": "Chosen dynamic spawnpoint %s has no items, skipping",
"loot-item_missing_parentid": "Item: %s lacks a parentId value, unable to use item as loot",
"loot-non_item_picked_as_sealed_weapon_crate_reward": "Invalid weapon: %s, was picked as reward for sealed weapon crate, unable to create loot",
"mailsend-missing_trader": "Unable to send message type: {{messageType}} to player: {{sessionId}}, given trader enum was null",
"mailsend-missing_npc_dialog": "Unable to send message from %s. Dialog for them does not exist",
"mailsend-missing_parent": "Unable to find an item with slotId of: hideout for message to: {{traderId}} sender: {{sender}}",
"mod-send_bundle_url": "[BUNDLE]: %s",
"modloader-checked": "checked",
"modloader-checking_mod": "checking: %s",

View File

@ -83,7 +83,7 @@ export class BotController
const raidConfig = this.applicationContext.getLatestValue(ContextVariableType.RAID_CONFIGURATION)?.getValue<IGetRaidConfigurationRequestData>();
if (!raidConfig)
{
this.logger.error("applicationContex could not find RAID_CONFIGURATION value, raidConfig is undefined");
this.logger.error(this.localisationService.getText("bot-missing_application_context", "RAID_CONFIGURATION"));
}
// Check value chosen in pre-raid difficulty dropdown

View File

@ -941,12 +941,12 @@ export class InventoryHelper
const stashTPL = this.getStashType(sessionID);
if (!stashTPL)
{
this.logger.error("No stash found in player inventory");
this.logger.error(this.localisationService.getText("inventory-missing_stash_size"));
}
const stashItemDetails = this.itemHelper.getItem(stashTPL);
if (!stashItemDetails[0])
{
this.logger.error(`Stash with id: ${stashTPL} not found in db`);
this.logger.error(this.localisationService.getText("inventory-stash_not_found", stashTPL));
}
const stashX = stashItemDetails[1]._props.Grids[0]._props.cellsH !== 0

View File

@ -50,7 +50,7 @@ export class MailSendService
{
if (!trader)
{
this.logger.error(`Unable to send message type: ${messageType} to player: ${sessionId}, provided trader enum was null`);
this.logger.error(this.localisationService.getText("mailsend-missing_trader", {messageType: messageType, sessionId: sessionId}));
return;
}
@ -96,7 +96,7 @@ export class MailSendService
{
if (!trader)
{
this.logger.error(`Unable to send message type: ${messageType} to player: ${sessionId}, provided trader enum was null`);
this.logger.error(this.localisationService.getText("mailsend-missing_trader", {messageType: messageType, sessionId: sessionId}));
return;
}
@ -264,7 +264,9 @@ export class MailSendService
const dialogWithNpc = playerProfile.dialogues[targetNpcId];
if (!dialogWithNpc)
{
this.logger.error(`Dialog for: ${targetNpcId} does not exist`);
this.logger.error(this.localisationService.getText("mailsend-missing_npc_dialog", targetNpcId));
return;
}
dialogWithNpc.messages.push({
@ -348,7 +350,8 @@ export class MailSendService
const parentItem = this.getBaseItemFromRewards(messageDetails.items);
if (!parentItem)
{
this.logger.error(`unable to find an item with slotId of: hideout for message to: ${messageDetails.trader} sender: ${messageDetails.sender}`);
this.localisationService.getText("mailsend-missing_parent", {traderId: messageDetails.trader, sender: messageDetails.sender});
return itemsToSendToPlayer;
}