Skip to content

Commit

Permalink
feat: tone indicators and text abbreviations updates/fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eejit43 committed Jul 19, 2024
1 parent 340b1b4 commit 9142527
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/public/data/pages-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export const textAbbreviations = [
{ abbreviation: 'NMU', meaning: 'not much, you?' },
{ abbreviation: 'NP', meaning: 'no problem' },
{ abbreviation: 'NSFW', meaning: 'not safe for work, usually sexual or gross content' },
{ abbreviation: 'NVM / NM', meaning: 'nevermind <em>OR</em> not (very) much' },
{ abbreviation: 'NVM / NM', meaning: 'nevermind <i>OR</i> not (very) much' },
{ abbreviation: 'NW', meaning: 'no worries' },
{ abbreviation: 'OC', meaning: 'original content' },
{ abbreviation: 'OG', meaning: 'original (original gangster)' },
Expand All @@ -230,7 +230,7 @@ export const textAbbreviations = [
{ abbreviation: 'RL', meaning: 'real life' },
{ abbreviation: 'RN', meaning: 'right now' },
{ abbreviation: 'ROLF', meaning: 'rolling on the floor laughing' },
{ abbreviation: 'RT', meaning: 'retweet (used on Twitter)' },
{ abbreviation: 'RT', meaning: 'retweet (used on Twitter/X)' },
{ abbreviation: 'RUOK', meaning: 'are you okay?' },
{ abbreviation: 'SFW', meaning: 'safe for work, opposite of NSFW' },
{ abbreviation: 'SMH', meaning: 'shaking my head' },
Expand Down Expand Up @@ -284,7 +284,7 @@ export const toneIndicators = [
{ indicators: ['hyp'], meaning: 'hyperbole' },
{ indicators: ['i', 'ir'], meaning: 'ironic' },
{ indicators: ['ij'], meaning: 'inside joke' },
{ indicators: ['j'], meaning: 'joke or joking' },
{ indicators: ['j'], meaning: 'joke / joking' },
{ indicators: ['l', 'ly', 'lyr'], meaning: 'lyric(s)' },
{ indicators: ['lh'], meaning: 'light hearted' },
{ indicators: ['li'], meaning: 'literal / literally' },
Expand Down
2 changes: 1 addition & 1 deletion src/views/pages/info/text-abbreviations.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{{#each additionalData.textAbbreviations}}
<tr>
<td>{{this.abbreviation}}</td>
<td>{{{this.meaning}}}</td>
<td>{{this.meaning}}</td>
</tr>
{{/each}}
</tbody>
Expand Down
4 changes: 2 additions & 2 deletions src/views/pages/info/tone-indicators.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Tone indicators can be used to express tones or emotions in online messages, and
<tbody>
{{#each additionalData.toneIndicators}}
<tr>
<td>/{{this.fullIndicators}}</td>
<td>{{{this.meaning}}}</td>
<td>{{this.fullIndicators}}</td>
<td>{{this.meaning}}</td>
</tr>
{{/each}}
</tbody>
Expand Down

0 comments on commit 9142527

Please sign in to comment.