diff --git a/src/GZCTF/ClientApp/src/components/AppNavbar.tsx b/src/GZCTF/ClientApp/src/components/AppNavbar.tsx index 9fe0292c..a1d08a9a 100644 --- a/src/GZCTF/ClientApp/src/components/AppNavbar.tsx +++ b/src/GZCTF/ClientApp/src/components/AppNavbar.tsx @@ -14,6 +14,7 @@ import { createStyles, getStylesRef } from '@mantine/emotion' import { mdiAccountCircleOutline, mdiAccountGroupOutline, + mdiBullhornOutline, mdiCached, mdiFlagOutline, mdiHomeVariantOutline, @@ -133,10 +134,10 @@ const AppNavbar: FC = () => { const items: NavbarItem[] = [ { icon: mdiHomeVariantOutline, label: 'common.tab.home', link: '/' }, - { icon: mdiNoteTextOutline, label: 'common.tab.post', link: '/posts' }, + { icon: mdiBullhornOutline, label: 'common.tab.post', link: '/posts' }, { icon: mdiFlagOutline, label: 'common.tab.game', link: '/games' }, { icon: mdiAccountGroupOutline, label: 'common.tab.team', link: '/teams' }, - { icon: mdiInformationOutline, label: 'common.tab.about', link: '/about' }, + // { icon: mdiInformationOutline, label: 'common.tab.about', link: '/about' }, { icon: mdiWrenchOutline, label: 'common.tab.admin', link: '/admin/games', admin: true }, ] diff --git a/src/GZCTF/ClientApp/src/locales/en_US/common.json b/src/GZCTF/ClientApp/src/locales/en_US/common.json index 0f478d3c..12888325 100644 --- a/src/GZCTF/ClientApp/src/locales/en_US/common.json +++ b/src/GZCTF/ClientApp/src/locales/en_US/common.json @@ -93,7 +93,7 @@ "admin": "Admin", "game": "Games", "home": "Home", - "post": "Posts", + "post": "Announcements", "team": "Team", "theme": { "dark": "dark mode", diff --git a/src/GZCTF/ClientApp/src/locales/en_US/post.json b/src/GZCTF/ClientApp/src/locales/en_US/post.json index 3f3eccd9..a4436371 100644 --- a/src/GZCTF/ClientApp/src/locales/en_US/post.json +++ b/src/GZCTF/ClientApp/src/locales/en_US/post.json @@ -7,27 +7,27 @@ "summary": "Summary" }, "title": { - "index": "Posts" + "index": "Announcements" }, "button": { - "new": "New Post", - "edit": "Edit Post", - "goto": "Go to Post", - "save": "Save Post", - "delete": "Delete Post" + "new": "New Announcement", + "edit": "Edit Announcement", + "goto": "Go to Announcement", + "save": "Save Announcement", + "delete": "Delete Announcement" }, "content": { "metadata": "{{author}} published on {{date}}", "pinned": "[Pinned]", "details": "View Details", - "delete": "Are you sure you want to delete post {{title}}?", + "delete": "Are you sure you want to delete announcement {{title}}?", "updated": { - "title": "Post has been changed", - "content": "The post has been changed. Save it?" + "title": "Announcement has been changed", + "content": "The announcement has been changed. Save it?" } }, "notification": { - "saved": "Post has been saved", - "created": "Post has been created" + "saved": "Announcement has been saved", + "created": "Announcement has been created" } }