mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Rename /admin/tags.vue to /admin/hashtags.vue
This commit is contained in:
parent
0157cc3700
commit
92df820323
@ -269,7 +269,7 @@
|
|||||||
"categoryName": "Name",
|
"categoryName": "Name",
|
||||||
"postCount": "Beiträge"
|
"postCount": "Beiträge"
|
||||||
},
|
},
|
||||||
"tags": {
|
"hashtags": {
|
||||||
"name": "Hashtags",
|
"name": "Hashtags",
|
||||||
"number": "Nr.",
|
"number": "Nr.",
|
||||||
"nameOfHashtag": "Name",
|
"nameOfHashtag": "Name",
|
||||||
|
|||||||
@ -270,7 +270,7 @@
|
|||||||
"categoryName": "Name",
|
"categoryName": "Name",
|
||||||
"postCount": "Posts"
|
"postCount": "Posts"
|
||||||
},
|
},
|
||||||
"tags": {
|
"hashtags": {
|
||||||
"name": "Hashtags",
|
"name": "Hashtags",
|
||||||
"number": "No.",
|
"number": "No.",
|
||||||
"nameOfHashtag": "Name",
|
"nameOfHashtag": "Name",
|
||||||
|
|||||||
@ -48,8 +48,8 @@ export default {
|
|||||||
path: `/admin/categories`,
|
path: `/admin/categories`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: this.$t('admin.tags.name'),
|
name: this.$t('admin.hashtags.name'),
|
||||||
path: `/admin/tags`,
|
path: `/admin/hashtags`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: this.$t('admin.invites.name'),
|
name: this.$t('admin.invites.name'),
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<ds-card :header="$t('admin.tags.name')">
|
<ds-card :header="$t('admin.hashtags.name')">
|
||||||
<ds-table :data="Tag" :fields="fields" condensed>
|
<ds-table :data="Tag" :fields="fields" condensed>
|
||||||
<template slot="index" slot-scope="scope">
|
<template slot="index" slot-scope="scope">
|
||||||
{{ scope.index + 1 }}.
|
{{ scope.index + 1 }}.
|
||||||
@ -25,14 +25,14 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
fields() {
|
fields() {
|
||||||
return {
|
return {
|
||||||
index: this.$t('admin.tags.number'),
|
index: this.$t('admin.hashtags.number'),
|
||||||
id: this.$t('admin.tags.name'),
|
id: this.$t('admin.hashtags.name'),
|
||||||
taggedCountUnique: {
|
taggedCountUnique: {
|
||||||
label: this.$t('admin.tags.tagCountUnique'),
|
label: this.$t('admin.hashtags.tagCountUnique'),
|
||||||
align: 'right',
|
align: 'right',
|
||||||
},
|
},
|
||||||
taggedCount: {
|
taggedCount: {
|
||||||
label: this.$t('admin.tags.tagCount'),
|
label: this.$t('admin.hashtags.tagCount'),
|
||||||
align: 'right',
|
align: 'right',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user