diff --git a/app/locales/en.json b/app/locales/en.json
index c8629384a..7ffeee538 100644
--- a/app/locales/en.json
+++ b/app/locales/en.json
@@ -193,5 +193,31 @@
"Bug report submitted": "Bug report submitted",
"Your bug report has been submitted! Thank you for your feedback.": "Your bug report has been submitted! Thank you for your feedback.",
"Balance": "Balance",
+ "Open in Folder": "Open in Folder",
+ "Checking availability": "Checking availability",
+ "Confirm Purchase": "Confirm Purchase",
+ "This will purchase": "This will purchase",
+ "for": "for",
+ "credits": "credits",
+ "Not enough credits": "Not enough credits",
+ "You don't have enough LBRY credits to pay for this stream.": "You don't have enough LBRY credits to pay for this stream.",
+ "Download failed": "Download failed",
+ "LBRY was unable to download the stream": "LBRY was unable to download the stream",
+ "Remove": "Remove",
+ "Are you sure you'd like to remove": "Are you sure you'd like to remove",
+ "from LBRY?": "from LBRY?",
+ "Delete this file from my computer": "Delete this file from my computer",
+ "Download": "Download",
+ "Content unavailable.": "Content unavailable.",
+ "Why?": "Why?",
+ "The content on LBRY is hosted by its users. It appears there are no users connected that have this file at the moment.": "The content on LBRY is hosted by its users. It appears there are no users connected that have this file at the moment.",
+ "Try Anyway": "Try Anyway",
+ "Open": "Open",
+ "Remove...": "Remove...",
+ "% complete": "% complete",
+ "Loading...": "Loading...",
+ "Empty claim or metadata info.": "Empty claim or metadata info.",
+ "This content is Not Safe For Work. To view adult content, please change your": "This content is Not Safe For Work. To view adult content, please change your",
+ "This address contains no content.": "This address contains no content.",
"Looking up version info": "Looking up version info"
-}
\ No newline at end of file
+}
diff --git a/ui/js/component/fileActions/view.jsx b/ui/js/component/fileActions/view.jsx
index 4924d059d..f72893df1 100644
--- a/ui/js/component/fileActions/view.jsx
+++ b/ui/js/component/fileActions/view.jsx
@@ -66,7 +66,7 @@ class FileActions extends React.Component {
const deleteChecked = this.state.deleteChecked,
metadata = fileInfo ? fileInfo.metadata : null,
- openInFolderMessage = platform.startsWith('Mac') ? 'Open in Finder' : 'Open in Folder',
+ openInFolderMessage = platform.startsWith('Mac') ? __('Open in Finder') : __('Open in Folder'),
showMenu = fileInfo && Object.keys(fileInfo).length > 0,
title = metadata ? metadata.title : uri;
@@ -76,7 +76,7 @@ class FileActions extends React.Component {
const
progress = (fileInfo && fileInfo.written_bytes) ? fileInfo.written_bytes / fileInfo.total_bytes * 100 : 0,
- label = fileInfo ? progress.toFixed(0) + '% complete' : 'Connecting...',
+ label = fileInfo ? progress.toFixed(0) + __('% complete') : __('Connecting...'),
labelWithIcon =
Are you sure you'd like to remove {title} from LBRY?
+{__("Are you sure you'd like to remove")} {title} {__("from LBRY?")}
- +- This content is Not Safe For Work. - To view adult content, please change your navigate('settings')} label="Settings" />. + {__("This content is Not Safe For Work. To view adult content, please change your")} navigate('settings')} label={__("Settings")} />.