jam411 3 лет назад
Родитель
Сommit
80efff4ae7

+ 1 - 1
packages/app/public/static/locales/en_US/admin.json

@@ -580,7 +580,7 @@
     "export": "Export",
     "export": "Export",
     "cancel": "Cancel",
     "cancel": "Cancel",
     "file": "File",
     "file": "File",
-    "growi_version": "Growi Version",
+    "growi_version": "GROWI Version",
     "collections": "Collections",
     "collections": "Collections",
     "exported_at": "Exported At",
     "exported_at": "Exported At",
     "export_menu": "Export Menu",
     "export_menu": "Export Menu",

+ 1 - 1
packages/app/public/static/locales/ja_JP/admin.json

@@ -534,7 +534,7 @@
     "export": "エクスポート",
     "export": "エクスポート",
     "cancel": "キャンセル",
     "cancel": "キャンセル",
     "file": "ファイル名",
     "file": "ファイル名",
-    "growi_version": "Growi バージョン",
+    "growi_version": "GROWI バージョン",
     "collections": "コレクション",
     "collections": "コレクション",
     "exported_at": "エクスポートされた時間",
     "exported_at": "エクスポートされた時間",
     "export_menu": "エクスポートメニュー",
     "export_menu": "エクスポートメニュー",

+ 1 - 1
packages/app/public/static/locales/zh_CN/admin.json

@@ -626,7 +626,7 @@
     "export": "导出",
     "export": "导出",
     "cancel": "取消",
     "cancel": "取消",
     "file": "文件",
     "file": "文件",
-    "growi_version": "Growi Version",
+    "growi_version": "GROWI Version",
     "collections": "Collections",
     "collections": "Collections",
     "exported_at": "Exported At",
     "exported_at": "Exported At",
     "export_menu": "导出菜单",
     "export_menu": "导出菜单",

+ 1 - 1
packages/app/src/components/Admin/Notification/NotificationSetting.jsx

@@ -74,7 +74,7 @@ const LegacySlackIntegrationListItem = ({ isEnabled }) => {
     <li className="list-group-item">
     <li className="list-group-item">
       <h4>
       <h4>
         <Badge isEnabled={isEnabled} />
         <Badge isEnabled={isEnabled} />
-        <a href="/admin/slack-integration-legacy" className="ml-2">{t('legacy_slack_integration')}</a>
+        <a href="/admin/slack-integration-legacy" className="ml-2">{t('slack_integration_legacy.slack_integration_legacy')}</a>
       </h4>
       </h4>
       { isEnabled && (
       { isEnabled && (
         <ul className="mt-2 pl-4">
         <ul className="mt-2 pl-4">

+ 1 - 1
packages/app/src/components/Admin/Security/LocalSecuritySettingContents.jsx

@@ -100,7 +100,7 @@ class LocalSecuritySettingContents extends React.Component {
 
 
             <div className="row">
             <div className="row">
               <div className="col-12 col-md-3 text-left text-md-right py-2">
               <div className="col-12 col-md-3 text-left text-md-right py-2">
-                <strong>{t('Register limitation')}</strong>
+                <strong>{t('security_settings.Register limitation')}</strong>
               </div>
               </div>
               <div className="col-12 col-md-6">
               <div className="col-12 col-md-6">
                 <div className="dropdown">
                 <div className="dropdown">

+ 1 - 1
packages/app/test/cypress/integration/50-sidebar/access-to-side-bar.spec.ts

@@ -165,7 +165,7 @@ context('Access to sidebar', () => {
   //   });
   //   });
   //   cy.screenshot(`${ssPrefix}access-to-drafts-page`);
   //   cy.screenshot(`${ssPrefix}access-to-drafts-page`);
   // });
   // });
-  it('Successfully access to Growi Docs page', () => {
+  it('Successfully access to GROWI Docs page', () => {
     cy.visit('/');
     cy.visit('/');
     cy.get('.grw-sidebar-nav-secondary-container').within(() => {
     cy.get('.grw-sidebar-nav-secondary-container').within(() => {
       cy.get('a[href*="https://docs.growi.org"]').then(($a) => {
       cy.get('a[href*="https://docs.growi.org"]').then(($a) => {

+ 10 - 10
packages/slackbot-proxy/src/services/SelectGrowiService.ts

@@ -146,9 +146,9 @@ export class SelectGrowiService implements GrowiCommandProcessor<SelectGrowiComm
 
 
     const selectGrowiValue = interactionPayloadAccessor.firstAction()?.value;
     const selectGrowiValue = interactionPayloadAccessor.firstAction()?.value;
     if (selectGrowiValue == null) {
     if (selectGrowiValue == null) {
-      logger.error('Growi command failed: The first action element must have the value parameter.');
+      logger.error('GROWI command failed: The first action element must have the value parameter.');
       await respond(responseUrl, {
       await respond(responseUrl, {
-        text: 'Growi command failed',
+        text: 'GROWI command failed',
         blocks: [
         blocks: [
           markdownSectionBlock('Error occurred while processing GROWI command.'),
           markdownSectionBlock('Error occurred while processing GROWI command.'),
         ],
         ],
@@ -159,9 +159,9 @@ export class SelectGrowiService implements GrowiCommandProcessor<SelectGrowiComm
 
 
 
 
     if (growiCommand == null) {
     if (growiCommand == null) {
-      logger.error('Growi command failed: The first action value must have growiCommand parameter.');
+      logger.error('GROWI command failed: The first action value must have growiCommand parameter.');
       await respond(responseUrl, {
       await respond(responseUrl, {
-        text: 'Growi command failed',
+        text: 'GROWI command failed',
         blocks: [
         blocks: [
           markdownSectionBlock('Error occurred while processing GROWI command.'),
           markdownSectionBlock('Error occurred while processing GROWI command.'),
         ],
         ],
@@ -183,9 +183,9 @@ export class SelectGrowiService implements GrowiCommandProcessor<SelectGrowiComm
       installation = await this.installationRepository.findByTeamIdOrEnterpriseId(installationId!);
       installation = await this.installationRepository.findByTeamIdOrEnterpriseId(installationId!);
     }
     }
     catch (err) {
     catch (err) {
-      logger.error('Growi command failed: No installation found.\n', err);
+      logger.error('GROWI command failed: No installation found.\n', err);
       await respond(responseUrl, {
       await respond(responseUrl, {
-        text: 'Growi command failed',
+        text: 'GROWI command failed',
         blocks: [
         blocks: [
           markdownSectionBlock('Error occurred while processing GROWI command.'),
           markdownSectionBlock('Error occurred while processing GROWI command.'),
         ],
         ],
@@ -200,9 +200,9 @@ export class SelectGrowiService implements GrowiCommandProcessor<SelectGrowiComm
       .getOne();
       .getOne();
 
 
     if (relation == null) {
     if (relation == null) {
-      logger.error('Growi command failed: No installation found.');
+      logger.error('GROWI command failed: No installation found.');
       await respond(responseUrl, {
       await respond(responseUrl, {
-        text: 'Growi command failed',
+        text: 'GROWI command failed',
         blocks: [
         blocks: [
           markdownSectionBlock('Error occurred while processing GROWI command.'),
           markdownSectionBlock('Error occurred while processing GROWI command.'),
         ],
         ],
@@ -213,9 +213,9 @@ export class SelectGrowiService implements GrowiCommandProcessor<SelectGrowiComm
     // increment sendCommandBody
     // increment sendCommandBody
     const channel = interactionPayloadAccessor.getChannel();
     const channel = interactionPayloadAccessor.getChannel();
     if (channel == null) {
     if (channel == null) {
-      logger.error('Growi command failed: channel not found.');
+      logger.error('GROWI command failed: channel not found.');
       await respond(responseUrl, {
       await respond(responseUrl, {
-        text: 'Growi command failed',
+        text: 'GROWI command failed',
         blocks: [
         blocks: [
           markdownSectionBlock('Error occurred while processing GROWI command.'),
           markdownSectionBlock('Error occurred while processing GROWI command.'),
         ],
         ],