Skip to content

Commit 5392809

Browse files
committed
cleanup after rollable tables merge
1 parent fe94fe2 commit 5392809

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

lang/en.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"LMRTFY.Title" : "Let Me Roll That For You!",
2+
"LMRTFY.Title": "Let Me Roll That For You!",
33
"LMRTFY.ControlTitle": "Request Roll",
44
"LMRTFY.AdvantageNote": "These rolls will be made with advantage",
55
"LMRTFY.DisadvantageNote": "These rolls will be made with disadvantage",
@@ -10,27 +10,27 @@
1010
"LMRTFY.SelectCharacters": "Select characters:",
1111
"LMRTFY.SelectAll": "Select All",
1212
"LMRTFY.SelectNone": "Clear Selection",
13-
"LMRTFY.Modifiers": "Modifiers : ",
13+
"LMRTFY.Modifiers": "Modifiers: ",
1414
"LMRTFY.NormalRoll": "Normal Roll",
1515
"LMRTFY.AdvantageRoll": "Advantage",
1616
"LMRTFY.DisadvantageRoll": "Disadvantage",
1717
"LMRTFY.QueryRoll": "Query Player",
18-
"LMRTFY.WindowTitle": "Window Title :",
18+
"LMRTFY.WindowTitle": "Window Title:",
1919
"LMRTFY.WindowTitleValue": "Get Rolling!",
2020
"LMRTFY.WindowTitlePlaceholder": "They see me Rollin', they hating'",
21-
"LMRTFY.Message": "Message :",
21+
"LMRTFY.Message": "Message:",
2222
"LMRTFY.MessagePlaceholder": "Roll to see if you find any traps...",
23-
"LMRTFY.AbilityChecks": "Ability Checks :",
24-
"LMRTFY.AbilityCheck": "Ability Check : ",
25-
"LMRTFY.SavingThrows": "Saving Throws :",
26-
"LMRTFY.SavingThrow": "Saving Throw : ",
27-
"LMRTFY.SkillChecks": "Skill Checks :",
28-
"LMRTFY.SkillCheck": "Skill Check : ",
23+
"LMRTFY.AbilityChecks": "Ability Checks:",
24+
"LMRTFY.AbilityCheck": "Ability Check: ",
25+
"LMRTFY.SavingThrows": "Saving Throws:",
26+
"LMRTFY.SavingThrow": "Saving Throw: ",
27+
"LMRTFY.SkillChecks": "Skill Checks:",
28+
"LMRTFY.SkillCheck": "Skill Check: ",
2929
"LMRTFY.RequestRolls": "Request Rolls!",
3030
"LMRTFY.SaveRequest": "Save Request as Macro",
31-
"LMRTFY.RollerIntro": " Your GM has requested rolls from your character(s) : ",
32-
"LMRTFY.Reason": "Reason : ",
33-
"LMRTFY.CustomFormula": "Custom Formula : ",
31+
"LMRTFY.RollerIntro": " Your GM has requested rolls from your character(s): ",
32+
"LMRTFY.Reason": "Reason: ",
33+
"LMRTFY.CustomFormula": "Custom Formula: ",
3434
"LMRTFY.CustomFormulaPlaceholder": "1d20 + @abilities.str.mod + 1",
3535
"LMRTFY.Initiative": "Initiative",
3636
"LMRTFY.DeathSave": "Death Save",
@@ -43,7 +43,7 @@
4343
"LMRTFY.EnableParchmentThemeHint": "Enables the use of the stylized UI with a parchment look",
4444
"LMRTFY.SentNotification": "LMRTFY: Roll request sent to connected players",
4545
"LMRTFY.NothingNotification": "LMRTFY: Nothing to request",
46-
"LMRTFY.RollTables": "Rollable Table :",
46+
"LMRTFY.RollTables": "Rollable Table:",
4747
"LMRTFY.DeselectOnRequestorRender": "Deselect tokens when opening requestor",
4848
"LMRTFY.DeselectOnRequestorRenderHint": "Enable to prevent roll requests from being sent to GM user (yourself)"
4949
}

src/roller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class LMRTFYRoller extends Application {
1515
this.tables = data.tables;
1616
if (data.title) {
1717
this.options.title = data.title;
18-
}
18+
}
1919
}
2020

2121
static get defaultOptions() {

templates/roller.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
{{#if tables}}
5757
{{#each tables as |table|}}
5858
<div>
59-
<button type="button" class="lmrtfy-roll-table" data-table="{{table}}">{{table}}</button>
59+
<button type="button" class="lmrtfy-roll-table" data-table="{{table}}">{{localize "LMRTFY.RollTables"}} {{table}}</button>
6060
</div>
6161
{{/each}}
6262
{{/if}}

0 commit comments

Comments
 (0)