Skip to content

Commit

Permalink
fix some capitalizations
Browse files Browse the repository at this point in the history
  • Loading branch information
Mawex committed May 11, 2024
1 parent 97123a2 commit ebd0db3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions components/WotwRandoSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
/>
<v-checkbox
v-model="settings['Flags.SelectInLogicFilterByDefault']"
label="Start with In Logic filter"
label="Start with In Logic Filter"
messages="Select the In Logic map filter by default instead of the All filter"
/>
<v-checkbox
Expand All @@ -84,7 +84,7 @@
/>
</div>
<div class="mb-8">
<h3>Launch settings</h3>
<h3>Launch Settings</h3>
<template v-if="isWindows">
<div class="mt-3">
<v-label>Game Distribution Service</v-label>
Expand Down Expand Up @@ -158,7 +158,7 @@
/>
<v-checkbox
v-model="settings['Flags.InvertSwim']"
label="Invert swim speeds"
label="Invert Swim Speeds"
messages="Swim fast by default. Hold jump to swim slower instead"
/>
<v-checkbox
Expand Down Expand Up @@ -189,7 +189,7 @@

<v-checkbox
v-model="settings['LocalTracker.AlwaysOnTop']"
label="Always on top"
label="Always on Top"
messages="Show the Item Tracker on top of other windows"
/>

Expand All @@ -201,7 +201,7 @@

<v-checkbox
v-model="settings['LocalTracker.IgnoreMouse']"
label="Ignore mouse"
label="Ignore Mouse"
messages="This is helpful if you want to show the tracker above the game. Note that you cannot move/resize the tracker with this option enabled"
/>

Expand Down Expand Up @@ -282,7 +282,7 @@
></v-combobox>
<v-checkbox
v-model="useSecureConnection"
label="Use Secure connection"
label="Use Secure Connection"
messages="Connect to the Server using HTTPS and WSS instead of HTTP and WS"
/>
<v-btn depressed color="accent" class="mt-5" @click="disableDevTools"> Disable Developer Tools </v-btn>
Expand Down
2 changes: 1 addition & 1 deletion components/WotwSeedgen/CustomPresetSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</v-list-item>
<v-list-item @click="copyToClipboard(contextMenuCustomPresetIndex)">
<v-icon left>mdi-clipboard-arrow-up-outline</v-icon>
Copy to clipboard
Copy to Clipboard
</v-list-item>
</v-list>
</v-menu>
Expand Down
2 changes: 1 addition & 1 deletion components/WotwSeedgen/Toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</v-list-item>
<v-list-item :disabled="disabled" @click="$emit('save-world-as-custom-preset', worldMenuWorldIndex)">
<v-icon left>mdi-content-save-outline</v-icon>
Save as custom preset
Save as Custom Preset
</v-list-item>
</v-list>
</v-menu>
Expand Down
6 changes: 3 additions & 3 deletions components/WotwSeedgen/WorldPresetSetup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<v-window vertical :value="state">
<v-window-item value="select_base_preset" active-class="active-window-item">
<template v-if="universeSettings.worldSettings.length > 0">
<h2 class="mb-3">Copy settings from an existing world</h2>
<h2 class="mb-3">Copy Settings from an Existing World</h2>

<div class="mb-5">
<v-btn
Expand All @@ -26,7 +26,7 @@
singleWorldPresets?.length > 0 || (universeSettings.worldSettings.length === 0 && customPresets?.length > 0)
"
>
<h2 class="mb-3">Select a custom preset</h2>
<h2 class="mb-3">Select a Custom Preset</h2>
<wotw-seedgen-custom-preset-select
class="mb-3"
:custom-presets="customPresets"
Expand All @@ -36,7 +36,7 @@
/>
</div>

<h2 class="mb-3">Select a base preset</h2>
<h2 class="mb-3">Select a Base Preset</h2>

<v-card
v-for="(preset, presetId) in basePresets"
Expand Down

0 comments on commit ebd0db3

Please sign in to comment.