diff --git a/components/nav/NavSide.vue b/components/nav/NavSide.vue
index 0724a44baa..96eace195a 100644
--- a/components/nav/NavSide.vue
+++ b/components/nav/NavSide.vue
@@ -28,7 +28,6 @@ const useStarFavoriteIcon = usePreferences('useStarFavoriteIcon')
-
@@ -38,6 +37,9 @@ const useStarFavoriteIcon = usePreferences('useStarFavoriteIcon')
+
+
+
diff --git a/components/nav/NavSideItem.vue b/components/nav/NavSideItem.vue
index 8c5858e8c3..488dea29ee 100644
--- a/components/nav/NavSideItem.vue
+++ b/components/nav/NavSideItem.vue
@@ -5,8 +5,10 @@ const props = withDefaults(defineProps<{
to: string | Record
userOnly?: boolean
command?: boolean
+ lozenge?: boolean
}>(), {
userOnly: false,
+ lozenge: false,
})
defineSlots<{
@@ -56,12 +58,14 @@ const noUserVisual = computed(() => isHydrated.value && props.userOnly && !curre
@@ -75,6 +79,36 @@ const noUserVisual = computed(() => isHydrated.value && props.userOnly && !curre
diff --git a/components/publish/PublishWidget.vue b/components/publish/PublishWidget.vue
index 36bb4eabb4..cc56b9b053 100644
--- a/components/publish/PublishWidget.vue
+++ b/components/publish/PublishWidget.vue
@@ -494,7 +494,7 @@ onDeactivated(() => {
{{ $t('action.save_changes') }}
{{ $t('action.reply') }}
- {{ !isSending ? $t('action.publish') : $t('state.publishing') }}
+ {{ !isSending ? $t('action.post') : $t('state.publishing') }}
@@ -504,6 +504,15 @@ onDeactivated(() => {