@@ -144,6 +144,7 @@
"wide_view": "Wide View",
"Recent Changes": "Recent Changes",
"Page Tree": "Page Tree",
+ "In-App Notification": "Notifications",
"original_path":"Original path",
"new_path":"New path",
"duplicated_path":"Duplicated path",
@@ -145,6 +145,7 @@
"wide_view": "ワイドビュー",
"Recent Changes": "最新の変更",
"Page Tree": "ページツリー",
+ "In-App Notification": "通知",
"original_path":"元のパス",
"new_path":"新しいパス",
"duplicated_path":"重複したパス",
@@ -150,6 +150,7 @@
"wide_view": "视野开阔",
"Recent Changes": "最新修改",
"Page Tree": "页面树",
@@ -1,7 +1,16 @@
import React from 'react';
+import { useTranslation } from 'react-i18next';
+
export const InAppNotification = (): JSX.Element => {
+ const { t } = useTranslation();
return (
- <>In-App-Notification</>
+ <div className="px-3">
+ <div className="grw-sidebar-content-header py-3 d-flex">
+ <h3 className="mb-0">
+ {t('In-App Notification')}
+ </h3>
+ </div>
);
};