zahmis 5 лет назад
Родитель
Сommit
51d86bd552

+ 1 - 1
resource/locales/en_US/translation.json

@@ -47,7 +47,7 @@
   "Timeline View": "Timeline",
   "Timeline View": "Timeline",
   "History": "History",
   "History": "History",
   "attachment_data": "Attachment Data",
   "attachment_data": "Attachment Data",
-  "No attachments yet.": "No attachments yet.",
+  "No attachments yet": "No attachments yet",
   "Presentation Mode": "Presentation",
   "Presentation Mode": "Presentation",
   "Not available for guest": "Not available for guest",
   "Not available for guest": "Not available for guest",
   "Create Archive Page": "Create Archive Page",
   "Create Archive Page": "Create Archive Page",

+ 1 - 1
resource/locales/ja_JP/translation.json

@@ -48,7 +48,7 @@
   "Timeline View": "タイムライン",
   "Timeline View": "タイムライン",
   "History": "更新履歴",
   "History": "更新履歴",
   "attachment_data": "添付データ",
   "attachment_data": "添付データ",
-  "No attachments yet.": "No attachments yet.",
+  "No attachments yet": "No attachments yet",
   "Presentation Mode": "プレゼンテーション",
   "Presentation Mode": "プレゼンテーション",
   "Not available for guest": "ゲストユーザーは利用できません",
   "Not available for guest": "ゲストユーザーは利用できません",
   "Create Archive Page": "アーカイブページの作成",
   "Create Archive Page": "アーカイブページの作成",

+ 1 - 1
src/client/js/components/PageAttachment.jsx

@@ -117,7 +117,7 @@ class PageAttachment extends React.Component {
 
 
     const { t } = this.props;
     const { t } = this.props;
     if (this.state.attachments.length === 0) {
     if (this.state.attachments.length === 0) {
-      return t('No attachments yet.');
+      return `${t('No attachments yet')}.`;
 
 
     }
     }