1
0

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

@@ -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',
})