zahmis 5 лет назад
Родитель
Сommit
6099f41c95

+ 2 - 2
resource/locales/en_US/admin/admin.json

@@ -115,8 +115,8 @@
       "tab_switch_desc2": "By invalidating, you can make page transition as the only object for forward/back command of the browser.",
       "attach_title_header": "Add h1 section when create new page automatically",
       "attach_title_header_desc": "Add page path to the first line as h1 section when create new page",
-      "recent_created__n_draft_num_desc": "Number of recently created pages & drafts displayed",
-      "recently_created_n_draft_num_desc": "Number of recently created pages and drafts displayed on user page",
+      "list_num_desc_in_user_page": "Number of user page displayed",
+      "all_list_num_desc_in_user_page": "Number of Bookmarks, recently created pages and drafts displayed on user page",
       "stale_notification": "Display notification on stale pages",
       "stale_notification_desc": "Displays the notification to pages more than 1 year since the last update.",
       "show_all_reply_comments": "Show all reply comments",

+ 2 - 2
resource/locales/ja_JP/admin/admin.json

@@ -115,8 +115,8 @@
       "tab_switch_desc2": "無効化することで、ページ遷移のみを戻る/進む操作の対象にすることができます。",
       "attach_title_header": "新規ページ作成時の h1 セクション自動挿入",
       "attach_title_header_desc": "新規作成したページの1行目に、ページのパスを h1 セクションとして挿入します。",
-      "recent_created__n_draft_num_desc": "最近作成したページと下書きの表示数",
-      "recently_created_n_draft_num_desc": "ホーム画面の Recently Created での、1ページの表示数を設定します。",
+      "list_num_desc_in_user_page": "ユーザーページに表示されるリスト数",
+      "all_list_num_desc_in_user_page": "ユーザーページにおける Boolmarks Recently Created My Drafts での、1ページの表示数を設定します。",
       "stale_notification": "古いページに通知を表示する",
       "stale_notification_desc": "最後の更新から1年を超えるページへの通知を表示します。",
       "show_all_reply_comments": "返信コメントを全て表示する",

+ 4 - 4
resource/locales/zh_CN/admin/admin.json

@@ -129,9 +129,9 @@
 			"tab_switch_desc1": "在浏览器中保存编辑选项卡和历史选项卡切换,并使其成为浏览器的前向/后向命令的对象。",
 			"tab_switch_desc2": "通过失效,您可以将页面转换作为浏览器的前向/后向命令的唯一对象。",
 			"attach_title_header": "自动创建新页面时添加h1节",
-			"attach_title_header_desc": "创建新页面时,将页面路径作为h1节添加到第一行",
-			"recent_created__n_draft_num_desc": "显示最近创建的页数和草稿数",
-			"recently_created_n_draft_num_desc": "用户页上显示的最近创建的页和草稿数",
+      "attach_title_header_desc": "创建新页面时,将页面路径作为h1节添加到第一行",
+	  	"list_num_desc_in_user_page": "Number of user page displayed",
+      "all_list_num_desc_in_user_page": "Number of Bookmarks, recently created pages and drafts displayed on user page",
 			"stale_notification": "在过期页上显示通知",
 			"stale_notification_desc": "显示自上次更新以来超过1年的页面通知。",
 			"show_all_reply_comments": "显示所有回复评论",
@@ -315,4 +315,4 @@
 			"transfer_pages": "转移到另一组"
 		}
 	}
-}
+}

+ 2 - 2
src/client/js/components/Admin/Customize/CustomizeFunctionSetting.jsx

@@ -110,7 +110,7 @@ class CustomizeFunctionSetting extends React.Component {
             <div className="form-group row">
               <div className="offset-md-3 col-md-6 text-left">
                 <div className="my-0 w-100">
-                  <label>{t('admin:customize_setting.function_options.recent_created__n_draft_num_desc')}</label>
+                  <label>{t('admin:customize_setting.function_options.list_num_desc_in_user_page')}</label>
                 </div>
                 <Dropdown isOpen={this.state.isDropdownOpen} toggle={this.onToggleDropdown}>
                   <DropdownToggle className="text-right col-6" caret>
@@ -129,7 +129,7 @@ class CustomizeFunctionSetting extends React.Component {
                   </DropdownMenu>
                 </Dropdown>
                 <p className="form-text text-muted">
-                  {t('admin:customize_setting.function_options.recently_created_n_draft_num_desc')}
+                  {t('admin:customize_setting.function_options.all_list_num_desc_in_user_page')}
                 </p>
               </div>
             </div>