Reorganizing languages files properties

This commit is contained in:
Vlyan
2022-02-26 13:27:24 +01:00
parent 0d3ac2ce83
commit b5bb4e04f2
61 changed files with 530 additions and 531 deletions

View File

@@ -56,7 +56,7 @@ export class DicePickerDialog extends FormApplication {
id: "l5r5e-dice-picker-dialog",
classes: ["l5r5e", "dice-picker-dialog"],
template: CONFIG.l5r5e.paths.templates + "dice/dice-picker-dialog.html",
title: "L5R Dice Roller",
title: game.i18n.localize("l5r5e.dice.dicepicker.title"),
actor: null,
ringId: null,
skillId: "",
@@ -73,7 +73,7 @@ export class DicePickerDialog extends FormApplication {
let buttons = super._getHeaderButtons();
buttons.unshift({
label: game.i18n.localize("l5r5e.dicepicker.bt_add_macro"),
label: game.i18n.localize("l5r5e.dice.dicepicker.bt_add_macro"),
class: "bt-add-macro",
icon: "fas fa-star",
onclick: async () => {
@@ -317,7 +317,7 @@ export class DicePickerDialog extends FormApplication {
* @type {String}
*/
get title() {
return `L5R Dice Roller` + (this._actor ? " - " + this._actor.data.name : "");
return game.i18n.localize("l5r5e.dice.dicepicker.title") + (this._actor ? " - " + this._actor.data.name : "");
}
/**
@@ -730,7 +730,7 @@ export class DicePickerDialog extends FormApplication {
}
// Wrong syntax or no target set, do manual TN
if (!targetActor) {
console.log("L5R5E | Fail to get actor from target selection");
console.log("L5R5E | Fail to get actor from target selection, or no target selected");
return false;
}

View File

@@ -50,7 +50,7 @@ export class RollnKeepDialog extends FormApplication {
id: "l5r5e-roll-n-keep-dialog",
classes: ["l5r5e", "roll-n-keep-dialog"],
template: CONFIG.l5r5e.paths.templates + "dice/roll-n-keep-dialog.html",
title: game.i18n.localize("l5r5e.roll_n_keep.title"),
title: game.i18n.localize("l5r5e.dice.roll_n_keep.title"),
closeOnSubmit: false,
});
}
@@ -255,7 +255,7 @@ export class RollnKeepDialog extends FormApplication {
// Add Context menu to rollback choices
new ContextMenu(html, ".l5r5e.profil", [
{
name: game.i18n.localize("l5r5e.roll_n_keep.undo"),
name: game.i18n.localize("l5r5e.dice.roll_n_keep.undo"),
icon: '<i class="fas fa-undo"></i>',
callback: () => this._undoLastStepChoices(),
},