Skip to content

Commit

Permalink
cleanup after rollable tables merge
Browse files Browse the repository at this point in the history
  • Loading branch information
akrigline committed Jan 29, 2021
1 parent fe94fe2 commit 5392809
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions lang/en.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"LMRTFY.Title" : "Let Me Roll That For You!",
"LMRTFY.Title": "Let Me Roll That For You!",
"LMRTFY.ControlTitle": "Request Roll",
"LMRTFY.AdvantageNote": "These rolls will be made with advantage",
"LMRTFY.DisadvantageNote": "These rolls will be made with disadvantage",
Expand All @@ -10,27 +10,27 @@
"LMRTFY.SelectCharacters": "Select characters:",
"LMRTFY.SelectAll": "Select All",
"LMRTFY.SelectNone": "Clear Selection",
"LMRTFY.Modifiers": "Modifiers : ",
"LMRTFY.Modifiers": "Modifiers: ",
"LMRTFY.NormalRoll": "Normal Roll",
"LMRTFY.AdvantageRoll": "Advantage",
"LMRTFY.DisadvantageRoll": "Disadvantage",
"LMRTFY.QueryRoll": "Query Player",
"LMRTFY.WindowTitle": "Window Title :",
"LMRTFY.WindowTitle": "Window Title:",
"LMRTFY.WindowTitleValue": "Get Rolling!",
"LMRTFY.WindowTitlePlaceholder": "They see me Rollin', they hating'",
"LMRTFY.Message": "Message :",
"LMRTFY.Message": "Message:",
"LMRTFY.MessagePlaceholder": "Roll to see if you find any traps...",
"LMRTFY.AbilityChecks": "Ability Checks :",
"LMRTFY.AbilityCheck": "Ability Check : ",
"LMRTFY.SavingThrows": "Saving Throws :",
"LMRTFY.SavingThrow": "Saving Throw : ",
"LMRTFY.SkillChecks": "Skill Checks :",
"LMRTFY.SkillCheck": "Skill Check : ",
"LMRTFY.AbilityChecks": "Ability Checks:",
"LMRTFY.AbilityCheck": "Ability Check: ",
"LMRTFY.SavingThrows": "Saving Throws:",
"LMRTFY.SavingThrow": "Saving Throw: ",
"LMRTFY.SkillChecks": "Skill Checks:",
"LMRTFY.SkillCheck": "Skill Check: ",
"LMRTFY.RequestRolls": "Request Rolls!",
"LMRTFY.SaveRequest": "Save Request as Macro",
"LMRTFY.RollerIntro": " Your GM has requested rolls from your character(s) : ",
"LMRTFY.Reason": "Reason : ",
"LMRTFY.CustomFormula": "Custom Formula : ",
"LMRTFY.RollerIntro": " Your GM has requested rolls from your character(s): ",
"LMRTFY.Reason": "Reason: ",
"LMRTFY.CustomFormula": "Custom Formula: ",
"LMRTFY.CustomFormulaPlaceholder": "1d20 + @abilities.str.mod + 1",
"LMRTFY.Initiative": "Initiative",
"LMRTFY.DeathSave": "Death Save",
Expand All @@ -43,7 +43,7 @@
"LMRTFY.EnableParchmentThemeHint": "Enables the use of the stylized UI with a parchment look",
"LMRTFY.SentNotification": "LMRTFY: Roll request sent to connected players",
"LMRTFY.NothingNotification": "LMRTFY: Nothing to request",
"LMRTFY.RollTables": "Rollable Table :",
"LMRTFY.RollTables": "Rollable Table:",
"LMRTFY.DeselectOnRequestorRender": "Deselect tokens when opening requestor",
"LMRTFY.DeselectOnRequestorRenderHint": "Enable to prevent roll requests from being sent to GM user (yourself)"
}
2 changes: 1 addition & 1 deletion src/roller.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LMRTFYRoller extends Application {
this.tables = data.tables;
if (data.title) {
this.options.title = data.title;
}
}
}

static get defaultOptions() {
Expand Down
2 changes: 1 addition & 1 deletion templates/roller.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{{#if tables}}
{{#each tables as |table|}}
<div>
<button type="button" class="lmrtfy-roll-table" data-table="{{table}}">{{table}}</button>
<button type="button" class="lmrtfy-roll-table" data-table="{{table}}">{{localize "LMRTFY.RollTables"}} {{table}}</button>
</div>
{{/each}}
{{/if}}
Expand Down

0 comments on commit 5392809

Please sign in to comment.