Skip to content

Commit

Permalink
Fixes for some localization not working
Browse files Browse the repository at this point in the history
  • Loading branch information
ChasarooniZ committed May 1, 2024
1 parent 668c7b7 commit 28f88bb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@
"token-options": {
"tab-label": "PF2e RPG #s",
"rotation-offset": {
"name": "Rotation Offset",
"hint": "Sets how much to offset rotation by. Down ⬇ 0, Right ➡ 90, Up ⬆ 180, Left ⬅ 270"
"name": "Turn On Attack - Rotation Offset",
"hint": "Sets how much to offset the turn on attack rotation by. Down ⬇ 0, Right ➡ 90, Up ⬆ 180, Left ⬅ 270"
},
"fire-emblem-img": {
"name": "Fire Emblem Critical Pic",
Expand Down
16 changes: 8 additions & 8 deletions scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,15 +348,15 @@ Hooks.on("init", () => {
});

//Token Damage Shake
registerSetting("token-damage-shake", "dmg-shake-directional-enabled", {
registerSetting("token-dmg-shake", "dmg-shake-directional-enabled", {
desc: "enabled",
scope: "world",
config: true,
default: true,
type: Boolean,
});

registerSetting("token-damage-shake", "tok-shake-distance", {
registerSetting("token-dmg-shake", "tok-shake-distance", {
desc: "distance",
scope: "world",
config: true,
Expand All @@ -369,7 +369,7 @@ Hooks.on("init", () => {
type: Number,
});

registerSetting("token-damage-shake", "tok-shake-shakes", {
registerSetting("token-dmg-shake", "tok-shake-shakes", {
desc: "shakes",
scope: "world",
config: true,
Expand All @@ -382,7 +382,7 @@ Hooks.on("init", () => {
type: Number,
});

registerSetting("token-damage-shake", "tok-shake-duration", {
registerSetting("token-dmg-shake", "tok-shake-duration", {
desc: "duration",
scope: "world",
config: true,
Expand All @@ -395,7 +395,7 @@ Hooks.on("init", () => {
type: Number,
});

registerSetting("token-damage-shake", "tok-shake-scaling-type", {
registerSetting("token-dmg-shake", "tok-shake-scaling-type", {
desc: "scaling.type",
scope: "world",
config: true,
Expand All @@ -404,7 +404,7 @@ Hooks.on("init", () => {
choices: ["no", "%-current-hp", "%-max-hp"],
});

registerSetting("token-damage-shake", "tok-shake-scaling-distance", {
registerSetting("token-dmg-shake", "tok-shake-scaling-distance", {
desc: "scaling.distance",
scope: "world",
config: true,
Expand All @@ -413,7 +413,7 @@ Hooks.on("init", () => {
choices: ["no", "max", "mid"],
});

registerSetting("token-damage-shake", "tok-shake-scaling-shakes", {
registerSetting("token-dmg-shake", "tok-shake-scaling-shakes", {
desc: "scaling.shakes",
scope: "world",
config: true,
Expand All @@ -422,7 +422,7 @@ Hooks.on("init", () => {
choices: ["no", "max", "mid"],
});

registerSetting("token-damage-shake", "tok-shake-scaling-duration", {
registerSetting("token-dmg-shake", "tok-shake-scaling-duration", {
desc: "scaling.duration",
scope: "world",
config: true,
Expand Down

0 comments on commit 28f88bb

Please sign in to comment.