|
1 | 1 | { |
2 | | - "dashboard": { |
| 2 | + "top-bar": { |
| 3 | + "create-snapshot": "Snapshot", |
| 4 | + "export-gist": "Export Gist", |
| 5 | + "export-repo": "Export Repo", |
| 6 | + "libraries": "Libraries", |
| 7 | + "load-project": "My Projects", |
| 8 | + "new-project": "New Project", |
| 9 | + "send-feedback": "Send Feedback", |
3 | 10 | "session": { |
4 | | - "not-logged-in": "Not logged in", |
5 | | - "log-in-prompt": "Sign in", |
6 | | - "log-out-prompt": "Sign out" |
7 | | - }, |
8 | | - "menu": { |
9 | | - "new-project": "New Project", |
10 | | - "load-project": "Load Project", |
11 | | - "libraries": "Libraries", |
12 | | - "export-gist": "Export Gist", |
13 | | - "send-feedback": "Send Feedback" |
| 11 | + "log-in-prompt": "Log in to save", |
| 12 | + "log-out-prompt": "Log out" |
14 | 13 | } |
15 | 14 | }, |
16 | 15 | "editors": { |
|
29 | 28 | "empty-gist": "You need some code in your project to export a gist!", |
30 | 29 | "gist-export-error": "Something went wrong trying to create that gist. Please try again.", |
31 | 30 | "gist-export-complete": "Your gist export is ready!", |
32 | | - "gist-export-link": "Click here to open it", |
| 31 | + "github-export-link": "Click here to open it", |
33 | 32 | "gist-import-not-found": "Looks like that gist doesn’t exist. Check the URL and try again.", |
34 | 33 | "gist-import-error": "There was a problem importing that gist.", |
35 | | - "gist-import-link": "Click here to open it" |
| 34 | + "gist-import-link": "Click here to open it", |
| 35 | + "repo-export-error": "Something went wrong trying to create that repo. Please try again.", |
| 36 | + "repo-export-complete": "Your repo export is ready!", |
| 37 | + "snapshot-created": "Your snapshot is ready!", |
| 38 | + "click-to-copy": "Click here to copy it", |
| 39 | + "snapshot-export-error": "Something went wrong trying to create that snapshot. Please try again.", |
| 40 | + "snapshot-import-error": "Something went wrong trying to load that snapshot. Please try again.", |
| 41 | + "snapshot-not-found": "That snapshot doesn’t seem to exist. Check the link and try again." |
36 | 42 | }, |
37 | 43 | "languages": { |
38 | 44 | "html": "HTML", |
|
41 | 47 | }, |
42 | 48 | "workspace": { |
43 | 49 | "confirmations": { |
44 | | - "unload-unsaved": "If you leave the page, you will lose your work. To save your work, you must log in using your GitHub account.", |
45 | 50 | "anonymous-gist-export": "Are you sure you want to export this gist anonymously? If you sign in before exporting, the gist will be added to your GitHub account." |
46 | 51 | }, |
47 | 52 | "loading": "Loading…", |
|
99 | 104 | "empty-title-element": "You have an empty <title> tag. A <title> tag should always contain text.", |
100 | 105 | "html-in-css-block": "It looks like you typed some HTML code inside a <style> tag. Remember that only CSS code can go inside a <style> tag.", |
101 | 106 | "invalid-attribute-name": "{{attribute}} isn’t allowed as an attribute name.", |
102 | | - "mismatched-close-tag": "Your <{{open}}> tag needs a closing tag, but instead there’s a </{{close}}> tag where the </{{open}}> tag should be.", |
103 | 107 | "self-closing-non-void-element": "{{tag, en-handle-an|capitalize}} <{{tag}}> tag always needs a closing </{{tag}}> tag. Writing <{{tag}}/> is not allowed.", |
104 | 108 | "unclosed-tag": "Your <{{tag}}> tag needs to be closed by an </{{tag}}> tag.", |
105 | 109 | "unexpected-close-tag": "You have a closing </{{tag}}> tag that doesn’t match any opening <{{tag}}> tag.", |
|
109 | 113 | "unterminated-comment": "You have a comment that never ends. End the comment with -->", |
110 | 114 | "unbound-attribute-value": "The value {{value}} isn’t attached to an attribute. Are you missing an = sign?", |
111 | 115 | "invalid-tag-name": "<{{tag}}> isn’t a valid HTML tag. If you want to create a custom tag, make sure the name has a - in it, like <my-tag>", |
112 | | - "space-before-tag-name": "You can’t put any space after the < in an HTML tag. Write <{{tag}}> instead of < {{tag}}>." |
| 116 | + "space-before-tag-name": "You can’t put any space after the < in an HTML tag. Write <{{tag}}> instead of < {{tag}}>.", |
| 117 | + "misplaced-close-tag": "This closing </{{open}}> tag should go to before the </{{close}}> tag on line {{mismatch}}." |
113 | 118 | }, |
114 | 119 | "css": { |
115 | 120 | "missing-opening-curly": "You should have a { at the end of this line.", |
|
0 commit comments