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

@@ -81,7 +81,7 @@ export default {
},
},
head: {
title: 'Followed mods - Modrinth',
title: 'Followed Mods - Modrinth',
},
}
</script>

View File

@@ -6,12 +6,12 @@
<section class="essentials pad-maker">
<p>
Revoking your Modrinth token can have unintended consequences. Please be
wary, the following could break:
aware that the following could break:
</p>
<ul>
<li>Any application that uses your token to access the API.</li>
<li>
Gradle - if Minotaur is given a incorrect token, your gradle builds
Gradle - if Minotaur is given a incorrect token, your Gradle builds
could fail.
</li>
<li>
@@ -35,10 +35,12 @@
header.
</li>
</ol>
<p>Once you have completed the steps, press the continue button below.</p>
<p>
Once you have completed those steps, press the continue button below.
</p>
<p>
<strong>
This will log you out of Modrinth, however when you log back in your
This will log you out of Modrinth, however, when you log back in, your
token will be regenerated.
</strong>
</p>

View File

@@ -97,7 +97,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

@@ -2,12 +2,12 @@
<template>
<div class="popup card">
<div class="consent-container">
<div class="h1">Tweak your privacy settings</div>
<div class="h1">Privacy settings</div>
<div>
Modrinth relies on different providers and in-house tools to allow us to
provide custom-tailored experiences, and personalized advertising. You
can at any moment change your privacy settings by going to the setting
page, or at the footer of any page.
provide custom-tailored experiences and personalized advertising. You
can change your privacy settings at any time by going to this settings
page, via the dashboard or via the footer of any page.
</div>
<br class="divider" />
<div class="toggles">

View File

@@ -70,7 +70,7 @@ export default {
}
},
head: {
title: 'My mods - Modrinth',
title: 'My Mods - Modrinth',
},
}
</script>

View File

@@ -6,7 +6,7 @@
title="Are you sure you want to delete your account?"
description="If you proceed, your user and all attached data will be removed from our
servers. This cannot be reversed, so be careful!"
proceed-label="Delete Account"
proceed-label="Delete account"
:confirmation-text="username"
:has-to-type="true"
@proceed="deleteAccount"
@@ -19,8 +19,8 @@
<h3>Username</h3>
<label>
<span>
The username used on the Modrinth site to identify yourself. This must
be unique.
The username used on Modrinth to identify yourself. This must be
unique.
</span>
<input
v-model="username"
@@ -40,7 +40,7 @@
<label>
<span>
The email for your account. This is private information which is not
displayed in any API routes or your profile. It is also optional.
exposed in any API routes or on your profile. It is also optional.
</span>
<input v-model="email" type="email" placeholder="Enter your email" />
</label>
@@ -56,14 +56,15 @@
<h3>Theme</h3>
<label>
<span
>Change the global site theme of Modrinth. You can choose from light
mode and dark mode. You can switch it using this button or anywhere by
accessing the theme switcher in the navigation bar dropdown.</span
>Change the global site theme of Modrinth. You can choose between
light mode and dark mode. You can switch it using this button or
anywhere by accessing the theme switcher in the navigation bar
dropdown.</span
>
<input
type="button"
class="button pad-rem"
value="Change Theme"
value="Change theme"
@click="changeTheme"
/>
</label>
@@ -72,36 +73,37 @@
<h3>Authorization token</h3>
<label>
<span>
Your authorization token can be used with the Modrinth API and for the
Minotaur Gradle plugin. However, it must be kept secret!
Your authorization token can be used with the Modrinth API, the
Minotaur Gradle plugin, and other applications that interact with
Modrinth's API. Be sure to keep this secret!
</span>
<input
type="button"
class="button pad-rem"
value="Copy to Clipboard"
value="Copy to clipboard"
@click="copyToken"
/>
</label>
<h3>Revoke your token</h3>
<label>
<span
>Beware, this will log you out of Modrinth, and you will have to login
again to access Modrinth with a new token.</span
>This will log you out of Modrinth, and you will have to log in again
to access Modrinth with a new token.</span
>
<input
type="button"
class="button"
value="Revoke Token"
value="Revoke token"
@click="gotoRevoke"
/>
</label>
<h3>Delete your account</h3>
<label>
<span
>Clicking on this WILL delete your user. Do not click on this unless
you want your user deleted. If you delete your user, all attached data
will be removed from our servers. This cannot be reversed, so be
careful!</span
>Clicking on this WILL delete your account. Do not click on this
unless you want your account deleted. If you delete your account, all
attached data, including projects, will be removed from our servers.
This cannot be reversed, so be careful!</span
>
<input
value="Delete Account"
@@ -178,7 +180,7 @@ export default {
} catch (err) {
this.$notify({
group: 'main',
title: 'An Error Occurred',
title: 'An error occurred',
text: err.response.data.description,
type: 'error',
})
@@ -197,7 +199,7 @@ export default {
} catch (err) {
this.$notify({
group: 'main',
title: 'An Error Occurred',
title: 'An error occurred',
text: err.response.data.description,
type: 'error',
})