Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: go-back-with-backspace/_locales/en/messages.json

Issue 2325963003: Add options and a browser-action popup. (Closed) Base URL: https://chromium.googlesource.com/chromium/extensions-by-google.git@master
Patch Set: Response to comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | go-back-with-backspace/assets/icon19.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: go-back-with-backspace/_locales/en/messages.json
diff --git a/go-back-with-backspace/_locales/en/messages.json b/go-back-with-backspace/_locales/en/messages.json
index 92dfd7b76fe00d6cad7039dac38e44fea5549cea..4649c0517c73e5bbc13e97271887322e415c7f2f 100644
--- a/go-back-with-backspace/_locales/en/messages.json
+++ b/go-back-with-backspace/_locales/en/messages.json
@@ -1,10 +1,116 @@
{
"extensionName": {
"message": "Go Back With Backspace",
- "description": "Name of this extension."
+ "description": "Name of this extension, used in Chrome's UI as well as in the extension's own UI pages."
},
"extensionDescription": {
"message": "Re-enables the backspace key as a back navigation button (except when writing text).",
"description": "Brief description of this extension."
+ },
+ "installedTitle": {
+ "message": "Go Back With Backspace Installed",
+ "description": "title of the installation notes page shown on first installation."
+ },
+ "installedHeading": {
+ "message": "Go Back With Backspace installation notes",
+ "description": "Page heading for the installation notes page."
+ },
+ "installedNotes": {
+ "message": "Thank you for installing the \"Go Back With Backspace\" extension. After this extension is newly installed, enabled, or updated, any open tabs will need to be reloaded for the changes to take effect.",
+ "description": "Content of the installation notes page, explaining how to get the extension to workimmediately after installation."
+ },
+ "optionsTitle": {
+ "message": "Go Back With Backspace Options",
+ "description": "Used in the page title and top heading of the options page."
+ },
+ "optionsBlacklist": {
+ "message": "Backspace should never navigate back on these pages (one per line):",
+ "description": "Heading for the text entry box in which the user enters a list of pages on which the backspace extension should never go back."
+ },
+ "optionsAppletCheckbox": {
+ "message": "Backspace should also not navigate back in embedded applets (Flash, Java, etc.).",
+ "description": "Label for a checkbox indicating whether the extension should go back when focus is in embedded content such as a Java or Flash applet."
+ },
+ "optionsWhitelist": {
+ "message": "But even in an embedded applet, backspace should navigate back on these pages:",
+ "description": "Heading for the text entry box in which the user enters a list of pages on which the backspace extension should go back even when focus is in embedded content."
+ },
+ "optionsSave": {
+ "message": "Done",
+ "description": "Label for the button that saves settings and closes the dialog."
+ },
+ "optionsCancel": {
+ "message": "Cancel",
+ "description": "Label for the button that closes the dialog without saving changes."
+ },
+ "popupTitle": {
+ "message": "Go Back With Backspace",
+ "description": "Title for the small popup window associated with the browser action."
+ },
+ "popupCurrentURL": {
+ "message": "Current page: $URL$",
+ "description": "Label indicating the current page's URL, as shown in the browser-action popup. Long URLs will be truncated.",
+ "placeholders": {
+ "url": {
+ "content": "$1",
+ "example": "https://www.google.com"
+ }
+ }
+ },
+ "popupDisallowedURL": {
+ "message": "The extension is unable to work on this page.",
+ "description": "Status message shown in the popup when the current page is one of the special pages on which extensions are prohibited."
+ },
+ "popupFileURL": {
+ "message": "Allow this extension access to file URLs",
+ "description": "Text of a link shown in the popup when the current page is a file:// URL, whether or not the extension currently has access to file:// URLs. The link leads to chrome://extensions."
+ },
+ "popupAddBlacklist": {
+ "message": "Never go back on this page",
+ "description": "Label for the button in the popup that adds the current pageto a blacklist, on which the extension will never navigate back."
+ },
+ "popupRemoveBlacklist": {
+ "message": "Start going back from this page again",
+ "description": "Label for the button in the popup that removes the current page from the list that controls when the extension won't navigate back from a page at all."
+ },
+ "popupStatusSaved": {
+ "message": "Change saved.",
+ "description": "Status message shown in the browser action popup when the current page has been added or removed from the white- or blacklist."
+ },
+ "errorSaving": {
+ "message": "Error saving change: $ERROR$",
+ "description": "Status message shown in either the options or the popup when changes to the settings couldn't be saved.",
+ "placeholders": {
+ "error": {
+ "content": "$1",
+ "example": "Storage is full."
+ }
+ }
+ },
+ "openOptions": {
+ "message": "Options",
+ "description": "Label for the link to open the extension's options UI."
+ },
+ "sendFeedback": {
+ "message": "Send feedback",
+ "description": "Label for the link in the popup to email feedback to the extension developers."
+ },
+ "reportSubject": {
+ "message": "Go Back With Backspace feedback",
+ "description": "Initial Subject of the feedback email created by the 'Send feedback' button."
+ },
+ "reportBody": {
+ "message": "Is something not working properly? A feature you'd like to see in this extension? Let us know! (We won't be able to respond to every piece of feedback individually, but we appreciate your time and thoughts.)",
+ "description": "Initial body of the feedback email created by the 'Send feedback' button in places where there is no relevant URL (e.g., the installation notes page)."
+ },
+ "reportBodyWithURL": {
+ "message": "The extension doesn't do the right thing on the page at\n$URL$.\n\nAdd any details below. Which part of the page doesn't work properly? We won't be able to respond to every piece of feedback individually, but we appreciate your time and thoughts.)",
+ "description": "Initial body of the feedback email created by the 'Send feedback' button in places where we have a relevant URL (e.g. the browser action popup).",
+ "placeholders": {
+ "url": {
+ "content": "$1",
+ "example": "http://www.google.com"
+ }
+ }
}
}
« no previous file with comments | « no previous file | go-back-with-backspace/assets/icon19.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698