Adjust quite a bit of wording (#252)

* Adjust quite a bit of wording
Also converts many title case things to sentence case (fixes #238)

* Change advised to recommended

* Oops, I missed a page

* That page too

* Missed a spot
This commit is contained in:
Emma
2021-06-05 23:34:43 -04:00
committed by GitHub
parent bb8fd5500d
commit 46bc04f69f
18 changed files with 196 additions and 175 deletions

View File

@@ -10,7 +10,8 @@
<h3>Name</h3>
<label>
<span>
This is what users will see first. Will default to version number
This is what users will see first. If not specified, this will
default to the version number.
</span>
<input
v-model="version.name"
@@ -21,7 +22,7 @@
<h3>Number</h3>
<label>
<span>
That's how your version will appear in mod lists and in URLs
This is how your version will appear in mod lists and URLs.
</span>
<input
v-model="version.version_number"
@@ -32,8 +33,8 @@
<h3>Channel</h3>
<label>
<span>
It is important to notify players and pack makers if the version is
stable
It is important to notify players and modpack makers whether the
version is stable or if it's still in development.
</span>
<multiselect
v-model="version.version_type"
@@ -45,11 +46,9 @@
:allow-empty="false"
/>
</label>
<h3>Loaders</h3>
<h3>Mod loaders</h3>
<label>
<span>
Mark all loaders this version works with. It is essential for search
</span>
<span>Mark all mod loaders this version works with.</span>
<multiselect
v-model="version.loaders"
:options="selectableLoaders"
@@ -65,12 +64,9 @@
placeholder="Choose loaders..."
/>
</label>
<h3>Game versions</h3>
<h3>Minecraft versions</h3>
<label>
<span>
Mark all game version this version supports. It is essential for
search
</span>
<span>Mark all Minecraft versions this mod version supports.</span>
<multiselect
v-model="version.game_versions"
:options="selectableVersions"
@@ -91,8 +87,8 @@
<h3>Changelog</h3>
<span>
Tell players and modpack makers what's new. It supports the same
markdown as description, but it is advisable not to be too creative
with it in changelogs
Markdown as the description, but it is advised not to be too creative
with the changelogs.
</span>
<div class="textarea-wrapper">
<textarea v-model="version.changelog"></textarea>
@@ -196,7 +192,7 @@ export default {
} catch (err) {
this.$notify({
group: 'main',
title: 'An Error Occurred',
title: 'An error occurred',
text: err.response.data.description,
type: 'error',
})

View File

@@ -5,7 +5,7 @@
title="Are you sure you want to delete this file?"
description="This will remove this file forever (like really forever)"
:has-to-type="false"
proceed-label="Delete File"
proceed-label="Delete file"
@proceed="deleteFile(popup_data)"
/>
<ConfirmPopup
@@ -13,7 +13,7 @@
title="Are you sure you want to delete this version?"
description="This will remove this version forever (like really forever), and if some mods depends on this version, it won't work anymore."
:has-to-type="false"
proceed-label="Delete Version"
proceed-label="Delete version"
@proceed="deleteVersion()"
/>
<div class="version">
@@ -97,7 +97,7 @@
<div class="stat">
<TagIcon />
<div class="info">
<h4>Available For</h4>
<h4>Available for</h4>
<p class="value">
{{
version.game_versions ? version.game_versions.join(', ') : ''
@@ -116,10 +116,10 @@
<p>{{ file.filename }}</p>
<div v-if="currentMember" class="actions">
<button @click="deleteFilePopup(file.hashes.sha1)">
Delete File
Delete file
</button>
<button @click="makePrimary(file.hashes.sha1)">
Make Primary
Make primary
</button>
</div>
</div>
@@ -280,7 +280,7 @@ export default {
} catch (err) {
this.$notify({
group: 'main',
title: 'An Error Occurred',
title: 'An error occurred',
text: err.response.data.description,
type: 'error',
})