new client: move translatable strings to appropriate locales files (#8992)

* move translatable strings from newClient.json to appropriate locales files

* whitespace changes

* whitespace changes
This commit is contained in:
Alys
2017-08-27 02:53:10 +10:00
committed by Matteo Pagliazzi
parent d24eb67fa2
commit f38e184434
18 changed files with 1661 additions and 1653 deletions

View File

@@ -27,6 +27,8 @@
input.custom-control-input(type="checkbox", v-model="workingGroup.guildLeaderCantBeMessaged")
span.custom-control-indicator
span.custom-control-description(v-once) {{ $t('guildLeaderCantBeMessaged') }}
// "guildLeaderCantBeMessaged": "Leader can not be messaged directly",
// @TODO discuss the impact of this with moderators before implementing
br
label.custom-control.custom-checkbox(v-if='!isParty')
@@ -38,9 +40,10 @@
// br
// @TODO: Implement in v2 label.custom-control.custom-checkbox(v-if='!creatingParty')
input.custom-control-input(type="checkbox", v-model="workingGroup.allowGuildInvationsFromNonMembers")
input.custom-control-input(type="checkbox", v-model="workingGroup.allowGuildInvitationsFromNonMembers")
span.custom-control-indicator
span.custom-control-description(v-once) {{ $t('allowGuildInvationsFromNonMembers') }}
span.custom-control-description(v-once) {{ $t('allowGuildInvitationsFromNonMembers') }}
// "allowGuildInvitationsFromNonMembers": "Allow Guild invitations from non-members",
.form-group(v-if='!creatingParty')
label
@@ -198,7 +201,7 @@ export default {
onlyLeaderCreatesChallenges: true,
guildLeaderCantBeMessaged: true,
privateGuild: true,
allowGuildInvationsFromNonMembers: true,
allowGuildInvitationsFromNonMembers: true,
newLeader: '',
},
categoryOptions: [
@@ -425,7 +428,7 @@ export default {
onlyLeaderCreatesChallenges: true,
guildLeaderCantBeMessaged: true,
privateGuild: true,
allowGuildInvationsFromNonMembers: true,
allowGuildInvitationsFromNonMembers: true,
};
if (newgroup && newgroup._id) {
@@ -443,7 +446,7 @@ export default {
onlyLeaderCreatesChallenges: true,
guildLeaderCantBeMessaged: true,
privateGuild: true,
allowGuildInvationsFromNonMembers: true,
allowGuildInvitationsFromNonMembers: true,
};
},
},