You've already forked AstralRinth
forked from didirus/AstralRinth
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:
@@ -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',
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user