Skip to content

Commit 608ad33

Browse files
committed
Spellcheck themes
1 parent c6c37e1 commit 608ad33

File tree

19 files changed

+28
-28
lines changed

19 files changed

+28
-28
lines changed

resources/themes/pterodactyl/admin/eggs/new.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
<option value="{{ $nest->id }}" {{ old('nest_id') != $nest->id ?: 'selected' }}>{{ $nest->name }} &lt;{{ $nest->author }}&gt;</option>
3838
@endforeach
3939
</select>
40-
<p class="text-muted small">Think of a Nest as a category. You can put multiple Eggs in a nest, but consider putting only Eggs that are related to eachother in each Nest.</p>
40+
<p class="text-muted small">Think of a Nest as a category. You can put multiple Eggs in a nest, but consider putting only Eggs that are related to each other in each Nest.</p>
4141
</div>
4242
</div>
4343
<div class="form-group">
4444
<label for="pName" class="form-label">Name</label>
4545
<input type="text" id="pName" name="name" value="{{ old('name') }}" class="form-control" />
46-
<p class="text-muted small">A simple, human-readable name to use as an identifier for this Egg. This is what users will see as thier gameserver type.</p>
46+
<p class="text-muted small">A simple, human-readable name to use as an identifier for this Egg. This is what users will see as their game server type.</p>
4747
</div>
4848
<div class="form-group">
4949
<label for="pDescription" class="form-label">Description</label>
@@ -60,7 +60,7 @@
6060
<div class="form-group">
6161
<label for="pStartup" class="control-label">Startup Command</label>
6262
<textarea id="pStartup" name="startup" class="form-control" rows="14">{{ old('startup') }}</textarea>
63-
<p class="text-muted small">The default statup command that should be used for new servers created with this Egg. You can change this per-server as needed.</p>
63+
<p class="text-muted small">The default startup command that should be used for new servers created with this Egg. You can change this per-server as needed.</p>
6464
</div>
6565
</div>
6666
</div>
@@ -76,7 +76,7 @@
7676
<div class="row">
7777
<div class="col-xs-12">
7878
<div class="alert alert-warning">
79-
<p>All fields are required unless you select a seperate option from the 'Copy Settings From' dropdown, in which case fields may be left blank to use the values from that option.</p>
79+
<p>All fields are required unless you select a separate option from the 'Copy Settings From' dropdown, in which case fields may be left blank to use the values from that option.</p>
8080
</div>
8181
</div>
8282
<div class="col-sm-6">

resources/themes/pterodactyl/admin/eggs/scripts.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
@if(! is_null($egg->copyFrom))
4242
<div class="box-body">
4343
<div class="callout callout-warning no-margin">
44-
This service option is copying installation scripts and containe options from <a href="{{ route('admin.nests.egg.view', $egg->copyFrom->id) }}">{{ $egg->copyFrom->name }}</a>. Any changes you make to this script will not apply unless you select "None" from the dropdown box below.
44+
This service option is copying installation scripts and container options from <a href="{{ route('admin.nests.egg.view', $egg->copyFrom->id) }}">{{ $egg->copyFrom->name }}</a>. Any changes you make to this script will not apply unless you select "None" from the dropdown box below.
4545
</div>
4646
</div>
4747
@endif

resources/themes/pterodactyl/admin/eggs/variables.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<input type="text" name="default_value" value="{{ $variable->default_value }}" class="form-control" />
6969
</div>
7070
<div class="col-xs-12">
71-
<p class="text-muted small">This variable can be accessed in the statup command by using <code>{{ $variable->env_variable }}</code>.</p>
71+
<p class="text-muted small">This variable can be accessed in the startup command by using <code>{{ $variable->env_variable }}</code>.</p>
7272
</div>
7373
</div>
7474
<div class="form-group">
@@ -121,7 +121,7 @@
121121
<input type="text" name="default_value" class="form-control" value="{{ old('default_value') }}" />
122122
</div>
123123
<div class="col-xs-12">
124-
<p class="text-muted small">This variable can be accessed in the statup command by entering <code>@{{environment variable value}}</code>.</p>
124+
<p class="text-muted small">This variable can be accessed in the startup command by entering <code>@{{environment variable value}}</code>.</p>
125125
</div>
126126
</div>
127127
<div class="form-group">

resources/themes/pterodactyl/admin/eggs/view.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<div class="form-group">
102102
<label for="pStartup" class="control-label">Startup Command <span class="field-required"></span></label>
103103
<textarea id="pStartup" name="startup" class="form-control" rows="6">{{ $egg->startup }}</textarea>
104-
<p class="text-muted small">The default statup command that should be used for new servers using this Egg.</p>
104+
<p class="text-muted small">The default startup command that should be used for new servers using this Egg.</p>
105105
</div>
106106
</div>
107107
</div>
@@ -118,7 +118,7 @@
118118
<div class="col-xs-12">
119119
<div class="alert alert-warning">
120120
<p>The following configuration options should not be edited unless you understand how this system works. If wrongly modified it is possible for the daemon to break.</p>
121-
<p>All fields are required unless you select a seperate option from the 'Copy Settings From' dropdown, in which case fields may be left blank to use the values from that Egg.</p>
121+
<p>All fields are required unless you select a separate option from the 'Copy Settings From' dropdown, in which case fields may be left blank to use the values from that Egg.</p>
122122
</div>
123123
</div>
124124
<div class="col-sm-6">

resources/themes/pterodactyl/admin/nests/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="row">
2222
<div class="col-xs-12">
2323
<div class="alert alert-danger">
24-
Eggs are a powerful feature of Pterodactyl Panel that allow for extreme flexibility and configuration. Please note that while powerful, modifing an egg wrongly can very easily brick your servers and cause more problems. Please avoid editing our default eggs — those provided by <code>support@pterodactyl.io</code> — unless you are absolutely sure of what you are doing.
24+
Eggs are a powerful feature of Pterodactyl Panel that allow for extreme flexibility and configuration. Please note that while powerful, modifying an egg wrongly can very easily brick your servers and cause more problems. Please avoid editing our default eggs — those provided by <code>support@pterodactyl.io</code> — unless you are absolutely sure of what you are doing.
2525
</div>
2626
</div>
2727
</div>

resources/themes/pterodactyl/admin/nests/new.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<label class="control-label">Name</label>
3232
<div>
3333
<input type="text" name="name" class="form-control" value="{{ old('name') }}" />
34-
<p class="text-muted"><small>This should be a descriptive category name that emcompasses all of the eggs within the nest.</small></p>
34+
<p class="text-muted"><small>This should be a descriptive category name that encompasses all of the eggs within the nest.</small></p>
3535
</div>
3636
</div>
3737
<div class="form-group">

resources/themes/pterodactyl/admin/nests/view.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<label class="control-label">Name <span class="field-required"></span></label>
2929
<div>
3030
<input type="text" name="name" class="form-control" value="{{ $nest->name }}" />
31-
<p class="text-muted"><small>This should be a descriptive category name that emcompasses all of the options within the service.</small></p>
31+
<p class="text-muted"><small>This should be a descriptive category name that encompasses all of the options within the service.</small></p>
3232
</div>
3333
</div>
3434
<div class="form-group">

resources/themes/pterodactyl/admin/nodes/new.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
</div>
127127
</div>
128128
<div class="col-md-12">
129-
<p class="text-muted small">Enter the total amount of memory avaliable for new servers. If you would like to allow overallocation of memory enter the percentage that you want to allow. To disable checking for overallocation enter <code>-1</code> into the field. Entering <code>0</code> will prevent creating new servers if it would put the node over the limit.</p>
129+
<p class="text-muted small">Enter the total amount of memory available for new servers. If you would like to allow overallocation of memory enter the percentage that you want to allow. To disable checking for overallocation enter <code>-1</code> into the field. Entering <code>0</code> will prevent creating new servers if it would put the node over the limit.</p>
130130
</div>
131131
</div>
132132
<div class="row">
@@ -145,7 +145,7 @@
145145
</div>
146146
</div>
147147
<div class="col-md-12">
148-
<p class="text-muted small">Enter the total amount of disk space avaliable for new servers. If you would like to allow overallocation of disk space enter the percentage that you want to allow. To disable checking for overallocation enter <code>-1</code> into the field. Entering <code>0</code> will prevent creating new servers if it would put the node over the limit.</p>
148+
<p class="text-muted small">Enter the total amount of disk space available for new servers. If you would like to allow overallocation of disk space enter the percentage that you want to allow. To disable checking for overallocation enter <code>-1</code> into the field. Entering <code>0</code> will prevent creating new servers if it would put the node over the limit.</p>
149149
</div>
150150
</div>
151151
<div class="row">
@@ -158,7 +158,7 @@
158158
<input type="text" name="daemonSFTP" class="form-control" id="pDaemonSFTP" value="2022" />
159159
</div>
160160
<div class="col-md-12">
161-
<p class="text-muted small">The daemon runs its own SFTP management container and does not use the SSHd process on the main physical server. <Strong>Do not use the same port that you have assigned for your physcial server's SSH process.</strong> If you will be running the daemon behind CloudFlare&reg; you should set the daemon port to <code>8443</code> to allow websocket proxying over SSL.</p>
161+
<p class="text-muted small">The daemon runs its own SFTP management container and does not use the SSHd process on the main physical server. <Strong>Do not use the same port that you have assigned for your physical server's SSH process.</strong> If you will be running the daemon behind CloudFlare&reg; you should set the daemon port to <code>8443</code> to allow websocket proxying over SSL.</p>
162162
</div>
163163
</div>
164164
</div>

resources/themes/pterodactyl/admin/nodes/view/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
<h3 class="box-title">Delete Node</h3>
7777
</div>
7878
<div class="box-body">
79-
<p class="no-margin">Deleting a node is a irreversable action and will immediately remove this node from the panel. There must be no servers associated with this node in order to continue.</p>
79+
<p class="no-margin">Deleting a node is a irreversible action and will immediately remove this node from the panel. There must be no servers associated with this node in order to continue.</p>
8080
</div>
8181
<div class="box-footer">
8282
<form action="{{ route('admin.nodes.view.delete', $node->id) }}" method="POST">

resources/themes/pterodactyl/admin/nodes/view/settings.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
</div>
190190
<div class="row">
191191
<div class="col-md-12">
192-
<p class="text-muted"><small>The daemon runs its own SFTP management container and does not use the SSHd process on the main physical server. <Strong>Do not use the same port that you have assigned for your physcial server's SSH process.</strong></small></p>
192+
<p class="text-muted"><small>The daemon runs its own SFTP management container and does not use the SSHd process on the main physical server. <Strong>Do not use the same port that you have assigned for your physical server's SSH process.</strong></small></p>
193193
</div>
194194
</div>
195195
</div>

0 commit comments

Comments
 (0)