|
1 | 1 | { |
2 | | - "dashboard": { |
| 2 | + "top-bar": { |
| 3 | + "create-snapshot": "Snapshot", |
| 4 | + "libraries": "Libraries", |
| 5 | + "load-project": "My Projects", |
| 6 | + "new-project": "New Project", |
3 | 7 | "session": { |
4 | | - "not-logged-in": "Not logged in", |
5 | | - "log-in-prompt": "Sign in", |
6 | | - "log-out-prompt": "Sign out" |
7 | | - }, |
| 8 | + "log-in-prompt": "Log in to save", |
| 9 | + "log-out-prompt": "Log out" |
| 10 | + } |
| 11 | + }, |
| 12 | + "dashboard": { |
8 | 13 | "menu": { |
9 | | - "new-project": "New Project", |
10 | | - "load-project": "Load Project", |
11 | | - "libraries": "Libraries", |
12 | 14 | "export-gist": "Export Gist", |
13 | | - "send-feedback": "Send Feedback" |
| 15 | + "send-feedback": "Send Feedback", |
| 16 | + "export-repo": "Export Repo" |
14 | 17 | } |
15 | 18 | }, |
16 | 19 | "editors": { |
|
29 | 32 | "empty-gist": "You need some code in your project to export a gist!", |
30 | 33 | "gist-export-error": "Something went wrong trying to create that gist. Please try again.", |
31 | 34 | "gist-export-complete": "Your gist export is ready!", |
32 | | - "gist-export-link": "Click here to open it", |
| 35 | + "github-export-link": "Click here to open it", |
33 | 36 | "gist-import-not-found": "Looks like that gist doesn’t exist. Check the URL and try again.", |
34 | 37 | "gist-import-error": "There was a problem importing that gist.", |
35 | | - "gist-import-link": "Click here to open it" |
| 38 | + "gist-import-link": "Click here to open it", |
| 39 | + "repo-export-error": "Something went wrong trying to create that repo. Please try again.", |
| 40 | + "repo-export-complete": "Your repo export is ready!", |
| 41 | + "snapshot-created": "Your snapshot is ready!", |
| 42 | + "click-to-copy": "Click here to copy it", |
| 43 | + "snapshot-export-error": "Something went wrong trying to create that snapshot. Please try again.", |
| 44 | + "snapshot-import-error": "Something went wrong trying to load that snapshot. Please try again.", |
| 45 | + "snapshot-not-found": "That snapshot doesn’t seem to exist. Check the link and try again." |
36 | 46 | }, |
37 | 47 | "languages": { |
38 | 48 | "html": "HTML", |
|
99 | 109 | "empty-title-element": "You have an empty <title> tag. A <title> tag should always contain text.", |
100 | 110 | "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 | 111 | "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 | 112 | "self-closing-non-void-element": "{{tag, en-handle-an|capitalize}} <{{tag}}> tag always needs a closing </{{tag}}> tag. Writing <{{tag}}/> is not allowed.", |
104 | 113 | "unclosed-tag": "Your <{{tag}}> tag needs to be closed by an </{{tag}}> tag.", |
105 | 114 | "unexpected-close-tag": "You have a closing </{{tag}}> tag that doesn’t match any opening <{{tag}}> tag.", |
|
109 | 118 | "unterminated-comment": "You have a comment that never ends. End the comment with -->", |
110 | 119 | "unbound-attribute-value": "The value {{value}} isn’t attached to an attribute. Are you missing an = sign?", |
111 | 120 | "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}}>." |
| 121 | + "space-before-tag-name": "You can’t put any space after the < in an HTML tag. Write <{{tag}}> instead of < {{tag}}>.", |
| 122 | + "misplaced-close-tag": "This closing </{{open}}> tag should go to before the </{{close}}> tag on line {{mismatch}}." |
113 | 123 | }, |
114 | 124 | "css": { |
115 | 125 | "missing-opening-curly": "You should have a { at the end of this line.", |
|
0 commit comments