Skip to content

Commit

Permalink
update copy
Browse files Browse the repository at this point in the history
  • Loading branch information
paglias committed Jun 16, 2017
1 parent 0d56335 commit 4fb8fbe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website/client/components/inventory/equipment/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
a.btn.btn-show-more(
v-if="items[group.key].length > itemsPerLine",
@click="viewOptions[group.key].open = !viewOptions[group.key].open"
) {{ viewOptions[group.key].open ? $t('showLessGearItems', { type: group.label }) : $t('showAllGearItems', { type: group.label, items: items[group.key].length }) }}
) {{ viewOptions[group.key].open ? $t('showLessItems', { type: group.label }) : $t('showAllItems', { type: group.label, items: items[group.key].length }) }}
</template>

<style lang="scss" scoped>
Expand Down
2 changes: 1 addition & 1 deletion website/client/components/inventory/items/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
a.btn.btn-show-more(
v-if="items[group.key].length > itemsPerLine",
@click="group.open = !group.open"
) {{ group.open ? $t('showLessGearItems', { type: $t(group.key) }) : $t('showAllGearItems', { type: $t(group.key), items: items[group.key].length }) }}
) {{ group.open ? $t('showLessItems', { type: $t(group.key) }) : $t('showAllItems', { type: $t(group.key), items: items[group.key].length }) }}

</template>

Expand Down
4 changes: 2 additions & 2 deletions website/common/locales/en/newClient.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"memberCount": "Member Count",
"recentActivity": "Recent Activity",
"gearNotOwned": "You do not own this item.",
"showAllGearItems": "Show All <%= items %> <%= type %> Gear Items",
"showLessGearItems": "Show Less <%= type %> Gear Items",
"showAllItems": "Show All <%= items %> <%= type %> Items",
"showLessItems": "Show Less <%= type %> Items",
"noGearItemsOfType": "You don't own any pieces of <%= type %>.",
"myGuilds": "My Guilds",
"guildsDiscovery": "Discover Guilds",
Expand Down

0 comments on commit 4fb8fbe

Please sign in to comment.