Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/messages/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,31 @@ export default {
legacyInfo: 'Allows some common API methods to be used by plugins that haven\'t upgraded to v5 version of the API yet.',
more: 'Check out the {wiki} for more information!',
wiki: 'wiki section',
wikiThis: 'this section',
defaultAssignments: 'Default Assignments Extension',
defaultAssignmentsInfo: 'Provides an alternate approach for assigning {wiki} if the recommended way is impractical.',
defaultAssignmentsInfoMore: 'Check out the {wikiSection} for more information. See also {thisSection} about configuring default assignments.',
groups: 'default groups',
version: 'LuckPerms 5.0 and above',
},
additionalPlugins: {
title: 'Additional Plugins',
description: 'Additional plugins can provide more complex features, but may not be available on all platforms',
extraContexts: 'ExtraContexts Plugin',
extraContextsInfo: 'Add more contexts, including some for other plugins',
version: 'LuckPerms 5.0 and above, Bukkit only',
},
placeholderExpansions: {
title: 'Placeholder Expansions',
description: 'LuckPerms adds {placeholders} to PlaceholderAPI and MVdWPlaceholderAPI',
placeholderApi: 'PlaceholderAPI',
placeholders: 'Placeholders',
placeholderApiInfo: 'Install using either {command} or by {installingManually}.',
placeholderApiInstallingManually: 'installing manually',
mvdwPlaceholderApi: 'MVdWPlaceholderAPI',
mvdwPlaceholderApiInfo: 'Place the JAR file in your {plugins} folder.',
version: 'LuckPerms 5.0 and above, Bukkit only',
},
},
editor: {
description: 'Web Permissions Editor',
Expand Down
66 changes: 48 additions & 18 deletions src/views/Download.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,20 +205,26 @@
</router-link>
</template>
</i18n>
<p>Check out the <router-link to="/wiki/Extensions#extension-default-assignments">wiki
section</router-link> for more information. See also
<a href="/wiki/Default-Groups#configure-default-assignments">this section</a> about
configuring default assignments.
</p>
<i18n
path="download.extensions.defaultAssignmentsInfoMore"
tag="p"
>
<template #wikiSection>
<router-link to="/wiki/Extensions#extension-default-assignments">{{ $t('download.extensions.wiki') }}</router-link>
</template>
<template #thisSection>
<router-link to="/wiki/Default-Groups#configure-default-assignments">{{ $t('download.extensions.wikiThis') }}</router-link>
</template>
</i18n>
</div>
</div>
</section>
</div>
<section class="hero additional-plugins">
<div class="container">
<div>
<h1>Additional Plugins</h1>
<p>Additional plugins can provide more complex features, but may not be available on all platforms</p>
<h1>{{ $t('download.additionalPlugins.title') }}</h1>
<p>{{ $t('download.additionalPlugins.description') }}</p>
</div>
</div>
</section>
Expand All @@ -228,21 +234,28 @@
<a :href="additionalPlugins['extracontexts']" class="resource">
<span>
<font-awesome icon="arrow-alt-circle-down" />
ExtraContexts Plugin
{{ $t('download.additionalPlugins.extraContexts') }}
</span>
<small>LuckPerms 5.0 and above, Bukkit only</small>
<small>{{ $t('download.additionalPlugins.version') }}</small>
</a>
<div>
<p>Add more contexts, including some for other plugins</p>
<p>{{ $t('download.additionalPlugins.extraContextsInfo') }}</p>
</div>
</div>
</section>
</div>
<section class="hero placeholder-expansions">
<div class="container">
<div>
<h1>Placeholder Expansions</h1>
<p>LuckPerms adds <router-link to="/wiki/Placeholders#placeholders">placeholders</router-link> to PlaceholderAPI and MVdWPlaceholderAPI</p>
<h1>{{ $t('download.placeholderExpansions.title') }}</h1>
<i18n
path="download.placeholderExpansions.description"
tag="p"
>
<template #placeholders>
<router-link to="/wiki/Placeholders#placeholders">{{ $t('download.placeholderExpansions.placeholders') }}</router-link>
</template>
</i18n>
</div>
</div>
</section>
Expand All @@ -252,24 +265,41 @@
<a :href="placeholderExpansions['luckperms-papi-expansion']" class="resource">
<span>
<font-awesome icon="arrow-alt-circle-down" />
PlaceholderAPI
{{ $t('download.placeholderExpansions.placeholderApi') }}
</span>
<small>LuckPerms 5.0 and above, Bukkit only</small>
<small>{{ $t('download.placeholderExpansions.version') }}</small>
</a>
<div>
<p>Install using either <code>/papi ecloud download LuckPerms</code> or by <router-link to="/wiki/Placeholders#manual-install">installing manually</router-link>.</p>
<i18n
path="download.placeholderExpansions.placeholderApiInfo"
tag="p"
>
<template #command>
<code>/papi ecloud download LuckPerms</code>
</template>
<template #installingManually>
<router-link to="/wiki/Placeholders#placeholderapi">{{ $t('download.placeholderExpansions.placeholderApiInstallingManually') }}</router-link>
</template>
</i18n>
</div>
</div>
<div>
<a :href="placeholderExpansions['luckperms-mvdw-hook']" class="resource">
<span>
<font-awesome icon="arrow-alt-circle-down" />
MVdWPlaceholderAPI
{{ $t('download.placeholderExpansions.mvdwPlaceholderApi') }}
</span>
<small>LuckPerms 5.0 and above, Bukkit only</small>
<small>{{ $t('download.placeholderExpansions.version') }}</small>
</a>
<div>
<p>Place the JAR file in your <code>/plugins/</code> folder.</p>
<i18n
path="download.placeholderExpansions.mvdwPlaceholderApiInfo"
tag="p"
>
<template #plugins>
<code>/plugins/</code>
</template>
</i18n>
</div>
</div>
</section>
Expand Down