1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-20 05:21:12 +02:00

Merge branch 'l10n' into preact-x

This commit is contained in:
Kushagra Gour
2019-07-16 17:17:13 +05:30
15 changed files with 1737 additions and 172 deletions

1
.gitignore vendored
View File

@@ -17,3 +17,4 @@ node_modules/
.sass-cache .sass-cache
extension/ extension/
yarn-error.log yarn-error.log
src/locales/_build

View File

@@ -34,8 +34,8 @@
}, },
"devDependencies": { "devDependencies": {
"@11ty/eleventy": "^0.7.1", "@11ty/eleventy": "^0.7.1",
"@lingui/cli": "^2.7.0", "@lingui/cli": "^2.8.3",
"@lingui/macro": "^2.7.0", "@lingui/macro": "^2.8.3",
"babel-core": "^6.26.3", "babel-core": "^6.26.3",
"babel-eslint": "^7.2.3", "babel-eslint": "^7.2.3",
"babel-minify": "^0.2.0", "babel-minify": "^0.2.0",
@@ -64,7 +64,7 @@
}, },
"dependencies": { "dependencies": {
"@emmetio/codemirror-plugin": "^0.5.4", "@emmetio/codemirror-plugin": "^0.5.4",
"@lingui/react": "^2.7.0", "@lingui/react": "^2.7.4",
"code-blast-codemirror": "chinchang/code-blast-codemirror#web-maker", "code-blast-codemirror": "chinchang/code-blast-codemirror#web-maker",
"codemirror": "^5.37.0", "codemirror": "^5.37.0",
"copy-webpack-plugin": "^4.5.1", "copy-webpack-plugin": "^4.5.1",

View File

@@ -1,6 +1,7 @@
import { h } from 'preact'; import { h } from 'preact';
import Modal from './Modal'; import Modal from './Modal';
import { Button } from './common'; import { Button } from './common';
import { Trans } from '@lingui/macro';
export function HelpModal(props) { export function HelpModal(props) {
return ( return (
@@ -12,6 +13,7 @@ export function HelpModal(props) {
<div> <div>
<p> <p>
<notrans>
Made with <span style="margin-right: 8px;">💖</span>&{' '} Made with <span style="margin-right: 8px;">💖</span>&{' '}
<span style="margin-right: 8px;"> 🙌</span> by{' '} <span style="margin-right: 8px;"> 🙌</span> by{' '}
<a <a
@@ -21,14 +23,15 @@ export function HelpModal(props) {
> >
Kushagra Gour Kushagra Gour
</a> </a>
</notrans>
</p> </p>
<p> <p>
<a href="/docs" target="_blank" rel="noopener noreferrer"> <a href="/docs" target="_blank" rel="noopener noreferrer">
Read the documentation <Trans>Read the documentation.</Trans>
</a> </a>
.
</p> </p>
<p> <p>
<notrans>
Tweet out your feature requests, comments & suggestions to{' '} Tweet out your feature requests, comments & suggestions to{' '}
<a <a
target="_blank" target="_blank"
@@ -37,9 +40,11 @@ export function HelpModal(props) {
> >
@webmakerApp @webmakerApp
</a> </a>
</notrans>
. .
</p> </p>
<p class="show-when-extension"> <p class="show-when-extension">
<notrans>
Like this extension? Please{' '} Like this extension? Please{' '}
<a <a
href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews"
@@ -49,10 +54,10 @@ export function HelpModal(props) {
rate it here rate it here
</a> </a>
. .
</notrans>
</p> </p>
<p> <p>
<Button <Button
aria-label="Support the developer"
onClick={props.onSupportBtnClick} onClick={props.onSupportBtnClick}
data-event-action="supportDeveloperHelpBtnClick" data-event-action="supportDeveloperHelpBtnClick"
data-event-category="ui" data-event-category="ui"
@@ -61,10 +66,9 @@ export function HelpModal(props) {
<svg> <svg>
<use xlinkHref="#gift-icon" /> <use xlinkHref="#gift-icon" />
</svg> </svg>
Support the developer <Trans>Support the developer</Trans>
</Button>{' '} </Button>{' '}
<a <a
aria-label="Rate Web Maker"
href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
@@ -73,10 +77,9 @@ export function HelpModal(props) {
<svg> <svg>
<use xlinkHref="#heart-icon" /> <use xlinkHref="#heart-icon" />
</svg> </svg>
Review Web Maker <Trans>Review Web Maker</Trans>
</a>{' '} </a>{' '}
<a <a
aria-label="Chat"
href="https://spectrum.chat/web-maker" href="https://spectrum.chat/web-maker"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
@@ -85,10 +88,9 @@ export function HelpModal(props) {
<svg> <svg>
<use xlinkHref="#chat-icon" /> <use xlinkHref="#chat-icon" />
</svg> </svg>
Chat <Trans>Chat</Trans>
</a>{' '} </a>{' '}
<a <a
aria-label="Report a Bug"
href="https://github.com/chinchang/web-maker/issues" href="https://github.com/chinchang/web-maker/issues"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
@@ -97,14 +99,16 @@ export function HelpModal(props) {
<svg> <svg>
<use xlinkHref="#bug-icon" /> <use xlinkHref="#bug-icon" />
</svg> </svg>
Report a bug <Trans>Report a bug</Trans>
</a> </a>
</p> </p>
<p> <p>
<details> <details>
<summary> <summary>
<h3 class="d-i">See awesome libraries used</h3> <h3 class="d-i">
<Trans>See awesome libraries used</Trans>
</h3>
</summary> </summary>
<ul> <ul>
<li> <li>
@@ -187,7 +191,10 @@ export function HelpModal(props) {
</p> </p>
<p> <p>
<h3>License</h3> <h3>
<Trans>License</Trans>
</h3>
<notrans>
"Web Maker" is{' '} "Web Maker" is{' '}
<a <a
target="_blank" target="_blank"
@@ -204,7 +211,7 @@ export function HelpModal(props) {
> >
MIT License MIT License
</a> </a>
. </notrans>
</p> </p>
</div> </div>
</Modal> </Modal>

View File

@@ -1,95 +1,124 @@
import { h } from 'preact'; import { h } from 'preact';
import Modal from './Modal'; import Modal from './Modal';
import { Trans } from '@lingui/macro';
export function KeyboardShortcutsModal({ show, closeHandler }) { export function KeyboardShortcutsModal({ show, closeHandler }) {
return ( return (
<Modal show={show} closeHandler={closeHandler}> <Modal show={show} closeHandler={closeHandler}>
<h1>Keyboard Shortcuts</h1> <h1>
<Trans>Keyboard Shortcuts</Trans>
</h1>
<div class="flex"> <div class="flex">
<div> <div>
<h2>Global</h2> <h2>
<Trans>Global</Trans>
</h2>
{/*<p> {/*<p>
<span class="kbd-shortcut__keys">Ctrl/⌘ + Shift + ?</span> <span class="kbd-shortcut__keys">Ctrl/⌘ + Shift + ?</span>
<span class="kbd-shortcut__details">See keyboard shortcuts</span> <span class="kbd-shortcut__details">See keyboard shortcuts</span>
</p>*/} </p>*/}
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + Shift + 5</span> <span class="kbd-shortcut__keys">Ctrl/ + Shift + 5</span>
<span class="kbd-shortcut__details">Refresh preview</span> <span class="kbd-shortcut__details">
<Trans>Refresh preview</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + S</span> <span class="kbd-shortcut__keys">Ctrl/ + S</span>
<span class="kbd-shortcut__details">Save current creations</span> <span class="kbd-shortcut__details">
<Trans>Save current creations</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + O</span> <span class="kbd-shortcut__keys">Ctrl/ + O</span>
<span class="kbd-shortcut__details"> <span class="kbd-shortcut__details">
Open list of saved creations <Trans>Open list of saved creations</Trans>
</span> </span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl + L</span> <span class="kbd-shortcut__keys">Ctrl + L</span>
<span class="kbd-shortcut__details"> <span class="kbd-shortcut__details">
Clear console (works when console input is focused) <Trans>Clear console (works when console input is focused)</Trans>
</span> </span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Esc</span> <span class="kbd-shortcut__keys">Esc</span>
<span class="kbd-shortcut__details"> <span class="kbd-shortcut__details">
Close saved creations panel & modals <Trans>Close saved creations panel & modals</Trans>
</span> </span>
</p> </p>
</div> </div>
<div class="ml-2"> <div class="ml-2">
<h2>Editor</h2> <h2>
<Trans>Editor</Trans>
</h2>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + F</span> <span class="kbd-shortcut__keys">Ctrl/ + F</span>
<span class="kbd-shortcut__details">Find</span> <span class="kbd-shortcut__details">
<Trans>Find</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + G</span> <span class="kbd-shortcut__keys">Ctrl/ + G</span>
<span class="kbd-shortcut__details">Select next match</span> <span class="kbd-shortcut__details">
<Trans>Select next match</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + Shift + G</span> <span class="kbd-shortcut__keys">Ctrl/ + Shift + G</span>
<span class="kbd-shortcut__details">Select previous match</span> <span class="kbd-shortcut__details">
<Trans>Select previous match</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + Opt/Alt + F</span> <span class="kbd-shortcut__keys">Ctrl/ + Opt/Alt + F</span>
<span class="kbd-shortcut__details">Find & replace</span> <span class="kbd-shortcut__details">
<Trans>Find & replace</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Shift + Tab</span> <span class="kbd-shortcut__keys">Shift + Tab</span>
<span class="kbd-shortcut__details">Realign code</span> <span class="kbd-shortcut__details">
<Trans>Realign code</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + ]</span> <span class="kbd-shortcut__keys">Ctrl/ + ]</span>
<span class="kbd-shortcut__details">Indent code right</span> <span class="kbd-shortcut__details">
<Trans>Indent code right</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + [</span> <span class="kbd-shortcut__keys">Ctrl/ + [</span>
<span class="kbd-shortcut__details">Indent code left</span> <span class="kbd-shortcut__details">
<Trans>Indent code left</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Tab</span> <span class="kbd-shortcut__keys">Tab</span>
<span class="kbd-shortcut__details"> <span class="kbd-shortcut__details">
Emmet code completion{' '} <Trans>Emmet code completion</Trans>{' '}
<a <a
href="https://emmet.io/" href="https://emmet.io/"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
Read more <Trans>Read more</Trans>
</a> </a>
</span> </span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl/ + /</span> <span class="kbd-shortcut__keys">Ctrl/ + /</span>
<span class="kbd-shortcut__details">Single line comment</span> <span class="kbd-shortcut__details">
<Trans>Single line comment</Trans>
</span>
</p> </p>
<p> <p>
<span class="kbd-shortcut__keys">Ctrl + Shift + F</span> <span class="kbd-shortcut__keys">Ctrl + Shift + F</span>
<span class="kbd-shortcut__details">Run Prettier</span> <span class="kbd-shortcut__details">
<Trans>Run Prettier</Trans>
</span>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -1,6 +1,6 @@
import { h } from 'preact'; import { h } from 'preact';
import { Button } from './common'; import { Button } from './common';
import { Trans, t } from '@lingui/macro'; import { Trans, NumberFormat, t } from '@lingui/macro';
import { I18n } from '@lingui/react'; import { I18n } from '@lingui/react';
const DEFAULT_PROFILE_IMG = const DEFAULT_PROFILE_IMG =
@@ -23,7 +23,7 @@ export function MainHeader(props) {
<button <button
id="runBtn" id="runBtn"
class="hide btn btn btn--dark flex flex-v-center hint--rounded hint--bottom-left" class="hide btn btn btn--dark flex flex-v-center hint--rounded hint--bottom-left"
aria-label="Run preview (Ctrl/⌘ + Shift + 5)" aria-label={i18n._(t`Run preview (Ctrl/⌘ + Shift + 5)`)}
onClick={props.runBtnClickHandler} onClick={props.runBtnClickHandler}
> >
<svg> <svg>
@@ -48,14 +48,14 @@ export function MainHeader(props) {
}`} }`}
class="count-label" class="count-label"
> >
{props.externalLibCount} <NumberFormat value={props.externalLibCount} />
</span> </span>
</Button> </Button>
)} )}
<button <button
class="btn btn--dark hint--rounded hint--bottom-left" class="btn btn--dark hint--rounded hint--bottom-left"
aria-label="Start a new creation" aria-label={i18n._(t`Start a new creation`)}
onClick={props.newBtnHandler} onClick={props.newBtnHandler}
> >
<svg viewBox="0 0 24 24"> <svg viewBox="0 0 24 24">
@@ -68,7 +68,7 @@ export function MainHeader(props) {
class={`btn btn--dark hint--rounded hint--bottom-left ${ class={`btn btn--dark hint--rounded hint--bottom-left ${
props.isSaving ? 'is-loading' : '' props.isSaving ? 'is-loading' : ''
} ${props.unsavedEditCount ? 'is-marked' : 0}`} } ${props.unsavedEditCount ? 'is-marked' : 0}`}
aria-label="Save current creation (Ctrl/⌘ + S)" aria-label={i18n._(t`Save current creation (Ctrl/⌘ + S)`)}
onClick={props.saveBtnHandler} onClick={props.saveBtnHandler}
> >
<svg viewBox="0 0 24 24"> <svg viewBox="0 0 24 24">
@@ -84,7 +84,7 @@ export function MainHeader(props) {
class={`btn btn--dark hint--rounded hint--bottom-left ${ class={`btn btn--dark hint--rounded hint--bottom-left ${
props.isFetchingItems ? 'is-loading' : '' props.isFetchingItems ? 'is-loading' : ''
}`} }`}
aria-label="Open a saved creation (Ctrl/⌘ + O)" aria-label={i18n._(t`Open a saved creation (Ctrl/⌘ + O)`)}
onClick={props.openBtnHandler} onClick={props.openBtnHandler}
> >
<svg viewBox="0 0 24 24"> <svg viewBox="0 0 24 24">
@@ -100,15 +100,14 @@ export function MainHeader(props) {
data-event-category="ui" data-event-category="ui"
data-event-action="loginButtonClick" data-event-action="loginButtonClick"
class="hide-on-login btn btn--dark hint--rounded hint--bottom-left" class="hide-on-login btn btn--dark hint--rounded hint--bottom-left"
aria-label="Login/Signup"
> >
<Trans>Login</Trans>/<Trans>Signup</Trans> <Trans>Login/Signup</Trans>
</Button> </Button>
<Button <Button
onClick={props.profileBtnHandler} onClick={props.profileBtnHandler}
data-event-category="ui" data-event-category="ui"
data-event-action="headerAvatarClick" data-event-action="headerAvatarClick"
aria-label="See profile or Logout" aria-label={i18n._(t`See profile or Logout`)}
class="hide-on-logout btn--dark hint--rounded hint--bottom-left" class="hide-on-logout btn--dark hint--rounded hint--bottom-left"
> >
<img <img

View File

@@ -1,8 +0,0 @@
{
"Console": {
"origin": [
["src/components/Console.jsx", 58],
["src/components/Console.jsx", 58]
]
}
}

View File

@@ -1,47 +0,0 @@
{
"Run": {
"origin": [
["src/components/MainHeader.jsx", 32],
["src/components/MainHeader.jsx", 32]
]
},
"Add a JS/CSS library": {
"origin": [["src/components/MainHeader.jsx", 41]]
},
"Add library": {
"origin": [
["src/components/MainHeader.jsx", 43],
["src/components/MainHeader.jsx", 43]
]
},
"New": {
"origin": [
["src/components/MainHeader.jsx", 64],
["src/components/MainHeader.jsx", 64]
]
},
"Save": {
"origin": [
["src/components/MainHeader.jsx", 80],
["src/components/MainHeader.jsx", 80]
]
},
"Open": {
"origin": [
["src/components/MainHeader.jsx", 96],
["src/components/MainHeader.jsx", 96]
]
},
"Login": {
"origin": [
["src/components/MainHeader.jsx", 105],
["src/components/MainHeader.jsx", 105]
]
},
"Signup": {
"origin": [
["src/components/MainHeader.jsx", 105],
["src/components/MainHeader.jsx", 105]
]
}
}

View File

@@ -18,14 +18,107 @@
} }
}, },
messages: { messages: {
'"Web Maker" <0>CHill</0>.': '"Web Maker" <0>CHill</0>.',
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.':
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.',
'Add Library': 'Add Library',
'Add a JS/CSS library': 'Add a JS/CSS library', 'Add a JS/CSS library': 'Add a JS/CSS library',
'Add library': 'Add library', 'Add library': 'Add library',
Chat: 'Chat',
'Choose from popular libraries': 'Choose from popular libraries',
'Clear console (CTRL + L)': 'Clear console (CTRL + L)',
'Clear console (works when console input is focused)':
'Clear console (works when console input is focused)',
'Close saved creations panel & modals':
'Close saved creations panel & modals',
Console: 'Console', Console: 'Console',
'Detach Preview': 'Detach Preview',
Donate: 'Donate',
'Double click to toggle console': 'Double click to toggle console',
'Download game as zip': 'Download game as zip',
'Edit on CodePen': 'Edit on CodePen',
Editor: 'Editor',
'Emmet code completion': 'Emmet code completion',
Export: 'Export',
'Export all your creations into a single importable file.':
'Export all your creations into a single importable file.',
Find: 'Find',
'Find & replace': 'Find & replace',
Global: 'Global',
Help: 'Help',
Import: 'Import',
"Import your creations. Only the file that you export through the 'Export' button can be imported.":
"Import your creations. Only the file that you export through the 'Export' button can be imported.",
'Indent code left': 'Indent code left',
'Indent code right': 'Indent code right',
'Keyboard Shortcuts': 'Keyboard Shortcuts',
'Keyboard shortcuts': 'Keyboard shortcuts',
License: 'License',
'Like this extension? Please <0>rate it here</0>.':
'Like this extension? Please <0>rate it here</0>.',
Login: 'Login', Login: 'Login',
'Login/Signup': 'Login/Signup',
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>':
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>',
'My Library ({0})': function(a) {
return ['My Library (', a('0'), ')'];
},
New: 'New', New: 'New',
'No match found.': 'No match found.',
'Note: You can load external scripts from following domains:':
'Note: You can load external scripts from following domains:',
'Nothing saved here.': 'Nothing saved here.',
Open: 'Open', Open: 'Open',
'Open a saved creation (Ctrl/\u2318 + O)':
'Open a saved creation (Ctrl/\u2318 + O)',
'Open list of saved creations': 'Open list of saved creations',
'Powered by cdnjs': 'Powered by cdnjs',
'Put each library in new line': 'Put each library in new line',
'Read more': 'Read more',
'Read the documentation.': 'Read the documentation.',
'Realign code': 'Realign code',
'Refresh preview': 'Refresh preview',
'Report a bug': 'Report a bug',
'Review Web Maker': 'Review Web Maker',
Run: 'Run', Run: 'Run',
'Run Prettier': 'Run Prettier',
'Run preview (Ctrl/\u2318 + Shift + 5)':
'Run preview (Ctrl/\u2318 + Shift + 5)',
Save: 'Save', Save: 'Save',
Signup: 'Signup' 'Save as HTML file': 'Save as HTML file',
'Save current creation (Ctrl/\u2318 + S)':
'Save current creation (Ctrl/\u2318 + S)',
'Save current creations': 'Save current creations',
'Search your creations here...': 'Search your creations here...',
'See Changelog': 'See Changelog',
'See awesome libraries used': 'See awesome libraries used',
'See profile or Logout': 'See profile or Logout',
'Select next match': 'Select next match',
'Select previous match': 'Select previous match',
Settings: 'Settings',
Signup: 'Signup',
'Single line comment': 'Single line comment',
'Start a new creation': 'Start a new creation',
'Support the developer': 'Support the developer',
'Support the developer by pledging some amount':
'Support the developer by pledging some amount',
'Switch to full screen preview': 'Switch to full screen preview',
'Switch to layout with all vertical panes':
'Switch to layout with all vertical panes',
'Switch to layout with preview on bottom':
'Switch to layout with preview on bottom',
'Switch to layout with preview on left':
'Switch to layout with preview on left',
'Switch to layout with preview on left"':
'Switch to layout with preview on left"',
'Switch to layout with preview on right':
'Switch to layout with preview on right',
'Take screenshot of preview': 'Take screenshot of preview',
'Toggle console': 'Toggle console',
"Tweet about 'Web Maker'": "Tweet about 'Web Maker'",
'Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>':
'Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>',
'Type here to search libraries': 'Type here to search libraries',
'Upload Image': 'Upload Image'
} }
}; };

View File

@@ -13,6 +13,18 @@ msgstr ""
"Language-Team: \n" "Language-Team: \n"
"Plural-Forms: \n" "Plural-Forms: \n"
#: src/components/HelpModal.jsx:201
msgid "\"Web Maker\" <0>CHill</0>."
msgstr "\"Web Maker\" <0>CHill</0>."
#: src/components/SavedItemPane.jsx:111
msgid "'Oops! Selected file is corrupted. Please select a file that was generated by clicking the \"Export\" button."
msgstr "'Oops! Selected file is corrupted. Please select a file that was generated by clicking the \"Export\" button."
#: src/components/AddLibrary.jsx:67
msgid "Add Library"
msgstr "Add Library"
#: src/components/MainHeader.jsx:41 #: src/components/MainHeader.jsx:41
msgid "Add a JS/CSS library" msgid "Add a JS/CSS library"
msgstr "Add a JS/CSS library" msgstr "Add a JS/CSS library"
@@ -22,37 +34,328 @@ msgstr "Add a JS/CSS library"
msgid "Add library" msgid "Add library"
msgstr "Add library" msgstr "Add library"
#: src/components/Console.jsx:58 #: src/components/HelpModal.jsx:91
#: src/components/Console.jsx:58 msgid "Chat"
msgstr "Chat"
#: src/components/AddLibrary.jsx:92
#: src/components/AddLibrary.jsx:92
msgid "Choose from popular libraries"
msgstr "Choose from popular libraries"
#: src/components/Console.jsx:70
msgid "Clear console (CTRL + L)"
msgstr "Clear console (CTRL + L)"
#: src/components/KeyboardShortcutsModal.jsx:42
msgid "Clear console (works when console input is focused)"
msgstr "Clear console (works when console input is focused)"
#: src/components/KeyboardShortcutsModal.jsx:48
msgid "Close saved creations panel & modals"
msgstr "Close saved creations panel & modals"
#: src/components/Console.jsx:61
#: src/components/Console.jsx:61
msgid "Console" msgid "Console"
msgstr "Console" msgstr "Console"
#: src/components/Footer.jsx:301
msgid "Detach Preview"
msgstr "Detach Preview"
#: src/components/Footer.jsx:146
#: src/components/Footer.jsx:146
msgid "Donate"
msgstr "Donate"
#: src/components/Console.jsx:57
msgid "Double click to toggle console"
msgstr "Double click to toggle console"
#: src/components/Footer.jsx:174
#: src/components/Footer.jsx:174
msgid "Download game as zip"
msgstr "Download game as zip"
#: src/components/Footer.jsx:229
msgid "Edit on CodePen"
msgstr "Edit on CodePen"
#: src/components/KeyboardShortcutsModal.jsx:54
msgid "Editor"
msgstr "Editor"
#: src/components/KeyboardShortcutsModal.jsx:101
msgid "Emmet code completion"
msgstr "Emmet code completion"
#: src/components/SavedItemPane.jsx:183
#: src/components/SavedItemPane.jsx:183
msgid "Export"
msgstr "Export"
#: src/components/SavedItemPane.jsx:180
msgid "Export all your creations into a single importable file."
msgstr "Export all your creations into a single importable file."
#: src/components/KeyboardShortcutsModal.jsx:59
msgid "Find"
msgstr "Find"
#: src/components/KeyboardShortcutsModal.jsx:77
msgid "Find & replace"
msgstr "Find & replace"
#: src/components/KeyboardShortcutsModal.jsx:15
msgid "Global"
msgstr "Global"
#: src/components/Footer.jsx:94
#: src/components/Footer.jsx:194
#: src/components/Footer.jsx:194
msgid "Help"
msgstr "Help"
#: src/components/SavedItemPane.jsx:192
#: src/components/SavedItemPane.jsx:192
msgid "Import"
msgstr "Import"
#: src/components/SavedItemPane.jsx:189
msgid "Import your creations. Only the file that you export through the 'Export' button can be imported."
msgstr "Import your creations. Only the file that you export through the 'Export' button can be imported."
#: src/components/KeyboardShortcutsModal.jsx:95
msgid "Indent code left"
msgstr "Indent code left"
#: src/components/KeyboardShortcutsModal.jsx:89
msgid "Indent code right"
msgstr "Indent code right"
#: src/components/KeyboardShortcutsModal.jsx:9
msgid "Keyboard Shortcuts"
msgstr "Keyboard Shortcuts"
#: src/components/Footer.jsx:108
msgid "Keyboard shortcuts"
msgstr "Keyboard shortcuts"
#: src/components/HelpModal.jsx:199
msgid "License"
msgstr "License"
#: src/components/HelpModal.jsx:47
msgid "Like this extension? Please <0>rate it here</0>."
msgstr "Like this extension? Please <0>rate it here</0>."
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
msgid "Login" #~ msgid "Login"
msgstr "Login" #~ msgstr "Login"
#: src/components/MainHeader.jsx:104
#: src/components/MainHeader.jsx:104
msgid "Login/Signup"
msgstr "Login/Signup"
#: src/components/HelpModal.jsx:16
msgid "Made with <0>💖</0>& <1> 🙌</1> by <2>Kushagra Gour</2>"
msgstr "Made with <0>💖</0>& <1> 🙌</1> by <2>Kushagra Gour</2>"
#: src/components/SavedItemPane.jsx:172
msgid "My Library ({0})"
msgstr "My Library ({0})"
#: src/components/MainHeader.jsx:64 #: src/components/MainHeader.jsx:64
#: src/components/MainHeader.jsx:64 #: src/components/MainHeader.jsx:64
msgid "New" msgid "New"
msgstr "New" msgstr "New"
#: src/components/SavedItemPane.jsx:207
msgid "No match found."
msgstr "No match found."
#: src/components/AddLibrary.jsx:125
msgid "Note: You can load external scripts from following domains:"
msgstr "Note: You can load external scripts from following domains:"
#: src/components/SavedItemPane.jsx:223
msgid "Nothing saved here."
msgstr "Nothing saved here."
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
#: src/components/MainHeader.jsx:87
msgid "Open a saved creation (Ctrl/⌘ + O)"
msgstr "Open a saved creation (Ctrl/⌘ + O)"
#: src/components/KeyboardShortcutsModal.jsx:36
msgid "Open list of saved creations"
msgstr "Open list of saved creations"
#: src/components/AddLibrary.jsx:88
msgid "Powered by cdnjs"
msgstr "Powered by cdnjs"
#: src/components/AddLibrary.jsx:118
#: src/components/AddLibrary.jsx:147
msgid "Put each library in new line"
msgstr "Put each library in new line"
#: src/components/KeyboardShortcutsModal.jsx:107
msgid "Read more"
msgstr "Read more"
#: src/components/HelpModal.jsx:30
msgid "Read the documentation."
msgstr "Read the documentation."
#: src/components/KeyboardShortcutsModal.jsx:83
msgid "Realign code"
msgstr "Realign code"
#: src/components/KeyboardShortcutsModal.jsx:24
msgid "Refresh preview"
msgstr "Refresh preview"
#: src/components/HelpModal.jsx:102
msgid "Report a bug"
msgstr "Report a bug"
#: src/components/HelpModal.jsx:80
msgid "Review Web Maker"
msgstr "Review Web Maker"
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
msgid "Run" msgid "Run"
msgstr "Run" msgstr "Run"
#: src/components/KeyboardShortcutsModal.jsx:120
msgid "Run Prettier"
msgstr "Run Prettier"
#: src/components/MainHeader.jsx:26
msgid "Run preview (Ctrl/⌘ + Shift + 5)"
msgstr "Run preview (Ctrl/⌘ + Shift + 5)"
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
msgid "Save" msgid "Save"
msgstr "Save" msgstr "Save"
#: src/components/Footer.jsx:206
msgid "Save as HTML file"
msgstr "Save as HTML file"
#: src/components/MainHeader.jsx:71
msgid "Save current creation (Ctrl/⌘ + S)"
msgstr "Save current creation (Ctrl/⌘ + S)"
#: src/components/KeyboardShortcutsModal.jsx:30
msgid "Save current creations"
msgstr "Save current creations"
#: src/components/SavedItemPane.jsx:201
msgid "Search your creations here..."
msgstr "Search your creations here..."
#: src/components/Footer.jsx:317
msgid "See Changelog"
msgstr "See Changelog"
#: src/components/HelpModal.jsx:110
msgid "See awesome libraries used"
msgstr "See awesome libraries used"
#: src/components/MainHeader.jsx:110
msgid "See profile or Logout"
msgstr "See profile or Logout"
#: src/components/KeyboardShortcutsModal.jsx:65
msgid "Select next match"
msgstr "Select next match"
#: src/components/KeyboardShortcutsModal.jsx:71
msgid "Select previous match"
msgstr "Select previous match"
#: src/components/Footer.jsx:329
msgid "Settings"
msgstr "Settings"
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
msgid "Signup" #~ msgid "Signup"
msgstr "Signup" #~ msgstr "Signup"
#: src/components/KeyboardShortcutsModal.jsx:114
msgid "Single line comment"
msgstr "Single line comment"
#: src/components/MainHeader.jsx:58
msgid "Start a new creation"
msgstr "Start a new creation"
#: src/components/HelpModal.jsx:69
#: src/components/HelpModal.jsx:69
msgid "Support the developer"
msgstr "Support the developer"
#: src/components/Footer.jsx:143
msgid "Support the developer by pledging some amount"
msgstr "Support the developer by pledging some amount"
#: src/components/Footer.jsx:293
msgid "Switch to full screen preview"
msgstr "Switch to full screen preview"
#: src/components/Footer.jsx:283
msgid "Switch to layout with all vertical panes"
msgstr "Switch to layout with all vertical panes"
#: src/components/Footer.jsx:263
msgid "Switch to layout with preview on bottom"
msgstr "Switch to layout with preview on bottom"
#: src/components/Footer.jsx:273
msgid "Switch to layout with preview on left"
msgstr "Switch to layout with preview on left"
#: src/components/Footer.jsx:273
#~ msgid "Switch to layout with preview on left\""
#~ msgstr "Switch to layout with preview on left\""
#: src/components/Footer.jsx:253
msgid "Switch to layout with preview on right"
msgstr "Switch to layout with preview on right"
#: src/components/Footer.jsx:240
msgid "Take screenshot of preview"
msgstr "Take screenshot of preview"
#: src/components/Console.jsx:79
msgid "Toggle console"
msgstr "Toggle console"
#: src/components/Footer.jsx:122
msgid "Tweet about 'Web Maker'"
msgstr "Tweet about 'Web Maker'"
#: src/components/HelpModal.jsx:34
msgid "Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>"
msgstr "Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>"
#: src/components/AddLibrary.jsx:82
msgid "Type here to search libraries"
msgstr "Type here to search libraries"
#: src/components/Footer.jsx:187
#: src/components/Footer.jsx:187
msgid "Upload Image"
msgstr "Upload Image"

View File

@@ -6,14 +6,107 @@
} }
}, },
messages: { messages: {
'"Web Maker" <0>CHill</0>.': '"Web Maker" <0>CHill</0>.',
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.':
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.',
'Add Library': 'Add Library',
'Add a JS/CSS library': 'Add a JS/CSS library', 'Add a JS/CSS library': 'Add a JS/CSS library',
'Add library': 'Add library', 'Add library': 'Add library',
Chat: 'Chat',
'Choose from popular libraries': 'Choose from popular libraries',
'Clear console (CTRL + L)': 'Clear console (CTRL + L)',
'Clear console (works when console input is focused)':
'Clear console (works when console input is focused)',
'Close saved creations panel & modals':
'Close saved creations panel & modals',
Console: 'Console', Console: 'Console',
'Detach Preview': 'Detach Preview',
Donate: 'Donate',
'Double click to toggle console': 'Double click to toggle console',
'Download game as zip': 'Download game as zip',
'Edit on CodePen': 'Edit on CodePen',
Editor: 'Editor',
'Emmet code completion': 'Emmet code completion',
Export: 'Export',
'Export all your creations into a single importable file.':
'Export all your creations into a single importable file.',
Find: 'Find',
'Find & replace': 'Find & replace',
Global: 'Global',
Help: 'Help',
Import: 'Import',
"Import your creations. Only the file that you export through the 'Export' button can be imported.":
"Import your creations. Only the file that you export through the 'Export' button can be imported.",
'Indent code left': 'Indent code left',
'Indent code right': 'Indent code right',
'Keyboard Shortcuts': 'Keyboard Shortcuts',
'Keyboard shortcuts': 'Keyboard shortcuts',
License: 'License',
'Like this extension? Please <0>rate it here</0>.':
'Like this extension? Please <0>rate it here</0>.',
Login: 'Login', Login: 'Login',
'Login/Signup': 'Login/Signup',
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>':
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>',
'My Library ({0})': function(a) {
return ['My Library (', a('0'), ')'];
},
New: 'New', New: 'New',
'No match found.': 'No match found.',
'Note: You can load external scripts from following domains:':
'Note: You can load external scripts from following domains:',
'Nothing saved here.': 'Nothing saved here.',
Open: 'Open', Open: 'Open',
'Open a saved creation (Ctrl/\u2318 + O)':
'Open a saved creation (Ctrl/\u2318 + O)',
'Open list of saved creations': 'Open list of saved creations',
'Powered by cdnjs': 'Powered by cdnjs',
'Put each library in new line': 'Put each library in new line',
'Read more': 'Read more',
'Read the documentation.': 'Read the documentation.',
'Realign code': 'Realign code',
'Refresh preview': 'Refresh preview',
'Report a bug': 'Report a bug',
'Review Web Maker': 'Review Web Maker',
Run: 'Run', Run: 'Run',
'Run Prettier': 'Run Prettier',
'Run preview (Ctrl/\u2318 + Shift + 5)':
'Run preview (Ctrl/\u2318 + Shift + 5)',
Save: 'Save', Save: 'Save',
Signup: 'Signup' 'Save as HTML file': 'Save as HTML file',
'Save current creation (Ctrl/\u2318 + S)':
'Save current creation (Ctrl/\u2318 + S)',
'Save current creations': 'Save current creations',
'Search your creations here...': 'Search your creations here...',
'See Changelog': 'See Changelog',
'See awesome libraries used': 'See awesome libraries used',
'See profile or Logout': 'See profile or Logout',
'Select next match': 'Select next match',
'Select previous match': 'Select previous match',
Settings: 'Settings',
Signup: 'Signup',
'Single line comment': 'Single line comment',
'Start a new creation': 'Start a new creation',
'Support the developer': 'Support the developer',
'Support the developer by pledging some amount':
'Support the developer by pledging some amount',
'Switch to full screen preview': 'Switch to full screen preview',
'Switch to layout with all vertical panes':
'Switch to layout with all vertical panes',
'Switch to layout with preview on bottom':
'Switch to layout with preview on bottom',
'Switch to layout with preview on left':
'Switch to layout with preview on left',
'Switch to layout with preview on left"':
'Switch to layout with preview on left"',
'Switch to layout with preview on right':
'Switch to layout with preview on right',
'Take screenshot of preview': 'Take screenshot of preview',
'Toggle console': 'Toggle console',
"Tweet about 'Web Maker'": "Tweet about 'Web Maker'",
'Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>':
'Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>',
'Type here to search libraries': 'Type here to search libraries',
'Upload Image': 'Upload Image'
} }
}; };

View File

@@ -13,6 +13,18 @@ msgstr ""
"Language-Team: \n" "Language-Team: \n"
"Plural-Forms: \n" "Plural-Forms: \n"
#: src/components/HelpModal.jsx:201
msgid "\"Web Maker\" <0>CHill</0>."
msgstr ""
#: src/components/SavedItemPane.jsx:111
msgid "'Oops! Selected file is corrupted. Please select a file that was generated by clicking the \"Export\" button."
msgstr ""
#: src/components/AddLibrary.jsx:67
msgid "Add Library"
msgstr ""
#: src/components/MainHeader.jsx:41 #: src/components/MainHeader.jsx:41
msgid "Add a JS/CSS library" msgid "Add a JS/CSS library"
msgstr "" msgstr ""
@@ -22,14 +34,138 @@ msgstr ""
msgid "Add library" msgid "Add library"
msgstr "" msgstr ""
#: src/components/Console.jsx:58 #: src/components/HelpModal.jsx:91
#: src/components/Console.jsx:58 msgid "Chat"
msgstr ""
#: src/components/AddLibrary.jsx:92
#: src/components/AddLibrary.jsx:92
msgid "Choose from popular libraries"
msgstr ""
#: src/components/Console.jsx:70
msgid "Clear console (CTRL + L)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:42
msgid "Clear console (works when console input is focused)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:48
msgid "Close saved creations panel & modals"
msgstr ""
#: src/components/Console.jsx:61
#: src/components/Console.jsx:61
msgid "Console" msgid "Console"
msgstr "" msgstr ""
#: src/components/Footer.jsx:301
msgid "Detach Preview"
msgstr ""
#: src/components/Footer.jsx:146
#: src/components/Footer.jsx:146
msgid "Donate"
msgstr ""
#: src/components/Console.jsx:57
msgid "Double click to toggle console"
msgstr ""
#: src/components/Footer.jsx:174
#: src/components/Footer.jsx:174
msgid "Download game as zip"
msgstr ""
#: src/components/Footer.jsx:229
msgid "Edit on CodePen"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:54
msgid "Editor"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:101
msgid "Emmet code completion"
msgstr ""
#: src/components/SavedItemPane.jsx:183
#: src/components/SavedItemPane.jsx:183
msgid "Export"
msgstr ""
#: src/components/SavedItemPane.jsx:180
msgid "Export all your creations into a single importable file."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:59
msgid "Find"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:77
msgid "Find & replace"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:15
msgid "Global"
msgstr ""
#: src/components/Footer.jsx:94
#: src/components/Footer.jsx:194
#: src/components/Footer.jsx:194
msgid "Help"
msgstr ""
#: src/components/SavedItemPane.jsx:192
#: src/components/SavedItemPane.jsx:192
msgid "Import"
msgstr ""
#: src/components/SavedItemPane.jsx:189
msgid "Import your creations. Only the file that you export through the 'Export' button can be imported."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:95
msgid "Indent code left"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:89
msgid "Indent code right"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:9
msgid "Keyboard Shortcuts"
msgstr ""
#: src/components/Footer.jsx:108
msgid "Keyboard shortcuts"
msgstr ""
#: src/components/HelpModal.jsx:199
msgid "License"
msgstr ""
#: src/components/HelpModal.jsx:47
msgid "Like this extension? Please <0>rate it here</0>."
msgstr ""
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
msgid "Login" #~ msgid "Login"
#~ msgstr ""
#: src/components/MainHeader.jsx:104
#: src/components/MainHeader.jsx:104
msgid "Login/Signup"
msgstr ""
#: src/components/HelpModal.jsx:16
msgid "Made with <0>💖</0>& <1> 🙌</1> by <2>Kushagra Gour</2>"
msgstr ""
#: src/components/SavedItemPane.jsx:172
msgid "My Library ({0})"
msgstr "" msgstr ""
#: src/components/MainHeader.jsx:64 #: src/components/MainHeader.jsx:64
@@ -37,22 +173,189 @@ msgstr ""
msgid "New" msgid "New"
msgstr "" msgstr ""
#: src/components/SavedItemPane.jsx:207
msgid "No match found."
msgstr ""
#: src/components/AddLibrary.jsx:125
msgid "Note: You can load external scripts from following domains:"
msgstr ""
#: src/components/SavedItemPane.jsx:223
msgid "Nothing saved here."
msgstr ""
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
msgid "Open" msgid "Open"
msgstr "" msgstr ""
#: src/components/MainHeader.jsx:87
msgid "Open a saved creation (Ctrl/⌘ + O)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:36
msgid "Open list of saved creations"
msgstr ""
#: src/components/AddLibrary.jsx:88
msgid "Powered by cdnjs"
msgstr ""
#: src/components/AddLibrary.jsx:118
#: src/components/AddLibrary.jsx:147
msgid "Put each library in new line"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:107
msgid "Read more"
msgstr ""
#: src/components/HelpModal.jsx:30
msgid "Read the documentation."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:83
msgid "Realign code"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:24
msgid "Refresh preview"
msgstr ""
#: src/components/HelpModal.jsx:102
msgid "Report a bug"
msgstr ""
#: src/components/HelpModal.jsx:80
msgid "Review Web Maker"
msgstr ""
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
msgid "Run" msgid "Run"
msgstr "" msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:120
msgid "Run Prettier"
msgstr ""
#: src/components/MainHeader.jsx:26
msgid "Run preview (Ctrl/⌘ + Shift + 5)"
msgstr ""
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: src/components/MainHeader.jsx:105 #: src/components/Footer.jsx:206
#: src/components/MainHeader.jsx:105 msgid "Save as HTML file"
msgid "Signup" msgstr ""
#: src/components/MainHeader.jsx:71
msgid "Save current creation (Ctrl/⌘ + S)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:30
msgid "Save current creations"
msgstr ""
#: src/components/SavedItemPane.jsx:201
msgid "Search your creations here..."
msgstr ""
#: src/components/Footer.jsx:317
msgid "See Changelog"
msgstr ""
#: src/components/HelpModal.jsx:110
msgid "See awesome libraries used"
msgstr ""
#: src/components/MainHeader.jsx:110
msgid "See profile or Logout"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:65
msgid "Select next match"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:71
msgid "Select previous match"
msgstr ""
#: src/components/Footer.jsx:329
msgid "Settings"
msgstr ""
#: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105
#~ msgid "Signup"
#~ msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:114
msgid "Single line comment"
msgstr ""
#: src/components/MainHeader.jsx:58
msgid "Start a new creation"
msgstr ""
#: src/components/HelpModal.jsx:69
#: src/components/HelpModal.jsx:69
msgid "Support the developer"
msgstr ""
#: src/components/Footer.jsx:143
msgid "Support the developer by pledging some amount"
msgstr ""
#: src/components/Footer.jsx:293
msgid "Switch to full screen preview"
msgstr ""
#: src/components/Footer.jsx:283
msgid "Switch to layout with all vertical panes"
msgstr ""
#: src/components/Footer.jsx:263
msgid "Switch to layout with preview on bottom"
msgstr ""
#: src/components/Footer.jsx:273
msgid "Switch to layout with preview on left"
msgstr ""
#: src/components/Footer.jsx:273
#~ msgid "Switch to layout with preview on left\""
#~ msgstr ""
#: src/components/Footer.jsx:253
msgid "Switch to layout with preview on right"
msgstr ""
#: src/components/Footer.jsx:240
msgid "Take screenshot of preview"
msgstr ""
#: src/components/Console.jsx:79
msgid "Toggle console"
msgstr ""
#: src/components/Footer.jsx:122
msgid "Tweet about 'Web Maker'"
msgstr ""
#: src/components/HelpModal.jsx:34
msgid "Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>"
msgstr ""
#: src/components/AddLibrary.jsx:82
msgid "Type here to search libraries"
msgstr ""
#: src/components/Footer.jsx:187
#: src/components/Footer.jsx:187
msgid "Upload Image"
msgstr "" msgstr ""

View File

@@ -15,14 +15,107 @@
} }
}, },
messages: { messages: {
'"Web Maker" <0>CHill</0>.': '"Web Maker" <0>CHill</0>.',
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.':
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.',
'Add Library': 'Add Library',
'Add a JS/CSS library': 'Add a JS/CSS library', 'Add a JS/CSS library': 'Add a JS/CSS library',
'Add library': 'Add library', 'Add library': 'Add library',
Chat: 'Chat',
'Choose from popular libraries': 'Choose from popular libraries',
'Clear console (CTRL + L)': 'Clear console (CTRL + L)',
'Clear console (works when console input is focused)':
'Clear console (works when console input is focused)',
'Close saved creations panel & modals':
'Close saved creations panel & modals',
Console: 'Console', Console: 'Console',
'Detach Preview': 'Detach Preview',
Donate: 'Donate',
'Double click to toggle console': 'Double click to toggle console',
'Download game as zip': 'Download game as zip',
'Edit on CodePen': 'Edit on CodePen',
Editor: 'Editor',
'Emmet code completion': 'Emmet code completion',
Export: 'Export',
'Export all your creations into a single importable file.':
'Export all your creations into a single importable file.',
Find: 'Find',
'Find & replace': 'Find & replace',
Global: 'Global',
Help: 'Help',
Import: 'Import',
"Import your creations. Only the file that you export through the 'Export' button can be imported.":
"Import your creations. Only the file that you export through the 'Export' button can be imported.",
'Indent code left': 'Indent code left',
'Indent code right': 'Indent code right',
'Keyboard Shortcuts': 'Keyboard Shortcuts',
'Keyboard shortcuts': 'Keyboard shortcuts',
License: 'License',
'Like this extension? Please <0>rate it here</0>.':
'Like this extension? Please <0>rate it here</0>.',
Login: '\u0932\u0949\u0917\u093F\u0928', Login: '\u0932\u0949\u0917\u093F\u0928',
'Login/Signup': 'Login/Signup',
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>':
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>',
'My Library ({0})': function(a) {
return ['My Library (', a('0'), ')'];
},
New: '\u0928\u092F\u093E \u092C\u0928\u093E\u090F\u0901', New: '\u0928\u092F\u093E \u092C\u0928\u093E\u090F\u0901',
Open: 'Open', 'No match found.': 'No match found.',
Run: 'Run', 'Note: You can load external scripts from following domains:':
'Note: You can load external scripts from following domains:',
'Nothing saved here.': 'Nothing saved here.',
Open: '\u0916\u094B\u0932\u0947\u0902',
'Open a saved creation (Ctrl/\u2318 + O)':
'Open a saved creation (Ctrl/\u2318 + O)',
'Open list of saved creations': 'Open list of saved creations',
'Powered by cdnjs': 'Powered by cdnjs',
'Put each library in new line': 'Put each library in new line',
'Read more': 'Read more',
'Read the documentation.': 'Read the documentation.',
'Realign code': 'Realign code',
'Refresh preview': 'Refresh preview',
'Report a bug': 'Report a bug',
'Review Web Maker': 'Review Web Maker',
Run: '\u091A\u0932\u093E\u090F\u0901',
'Run Prettier': 'Run Prettier',
'Run preview (Ctrl/\u2318 + Shift + 5)':
'Run preview (Ctrl/\u2318 + Shift + 5)',
Save: 'Save', Save: 'Save',
Signup: 'Signup' 'Save as HTML file': 'Save as HTML file',
'Save current creation (Ctrl/\u2318 + S)':
'Save current creation (Ctrl/\u2318 + S)',
'Save current creations': 'Save current creations',
'Search your creations here...': 'Search your creations here...',
'See Changelog': 'See Changelog',
'See awesome libraries used': 'See awesome libraries used',
'See profile or Logout': 'See profile or Logout',
'Select next match': 'Select next match',
'Select previous match': 'Select previous match',
Settings: 'Settings',
Signup: 'Signup',
'Single line comment': 'Single line comment',
'Start a new creation': 'Start a new creation',
'Support the developer': 'Support the developer',
'Support the developer by pledging some amount':
'Support the developer by pledging some amount',
'Switch to full screen preview': 'Switch to full screen preview',
'Switch to layout with all vertical panes':
'Switch to layout with all vertical panes',
'Switch to layout with preview on bottom':
'Switch to layout with preview on bottom',
'Switch to layout with preview on left':
'Switch to layout with preview on left',
'Switch to layout with preview on left"':
'Switch to layout with preview on left"',
'Switch to layout with preview on right':
'Switch to layout with preview on right',
'Take screenshot of preview': 'Take screenshot of preview',
'Toggle console': 'Toggle console',
"Tweet about 'Web Maker'": "Tweet about 'Web Maker'",
'Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>':
'\u0939\u0932\u0935\u093E \u0939\u093F\u092F\u093E\u0901 \u092F\u0947 \u0924\u094B <0>\u091A\u092E\u092A\u094D\u0930\u0936</0>',
'Type here to search libraries': 'Type here to search libraries',
'Upload Image': 'Upload Image'
} }
}; };

View File

@@ -13,6 +13,18 @@ msgstr ""
"Language-Team: \n" "Language-Team: \n"
"Plural-Forms: \n" "Plural-Forms: \n"
#: src/components/HelpModal.jsx:201
msgid "\"Web Maker\" <0>CHill</0>."
msgstr ""
#: src/components/SavedItemPane.jsx:111
msgid "'Oops! Selected file is corrupted. Please select a file that was generated by clicking the \"Export\" button."
msgstr ""
#: src/components/AddLibrary.jsx:67
msgid "Add Library"
msgstr ""
#: src/components/MainHeader.jsx:41 #: src/components/MainHeader.jsx:41
msgid "Add a JS/CSS library" msgid "Add a JS/CSS library"
msgstr "" msgstr ""
@@ -22,37 +34,328 @@ msgstr ""
msgid "Add library" msgid "Add library"
msgstr "" msgstr ""
#: src/components/Console.jsx:58 #: src/components/HelpModal.jsx:91
#: src/components/Console.jsx:58 msgid "Chat"
msgstr ""
#: src/components/AddLibrary.jsx:92
#: src/components/AddLibrary.jsx:92
msgid "Choose from popular libraries"
msgstr ""
#: src/components/Console.jsx:70
msgid "Clear console (CTRL + L)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:42
msgid "Clear console (works when console input is focused)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:48
msgid "Close saved creations panel & modals"
msgstr ""
#: src/components/Console.jsx:61
#: src/components/Console.jsx:61
msgid "Console" msgid "Console"
msgstr "" msgstr ""
#: src/components/Footer.jsx:301
msgid "Detach Preview"
msgstr ""
#: src/components/Footer.jsx:146
#: src/components/Footer.jsx:146
msgid "Donate"
msgstr ""
#: src/components/Console.jsx:57
msgid "Double click to toggle console"
msgstr ""
#: src/components/Footer.jsx:174
#: src/components/Footer.jsx:174
msgid "Download game as zip"
msgstr ""
#: src/components/Footer.jsx:229
msgid "Edit on CodePen"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:54
msgid "Editor"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:101
msgid "Emmet code completion"
msgstr ""
#: src/components/SavedItemPane.jsx:183
#: src/components/SavedItemPane.jsx:183
msgid "Export"
msgstr ""
#: src/components/SavedItemPane.jsx:180
msgid "Export all your creations into a single importable file."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:59
msgid "Find"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:77
msgid "Find & replace"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:15
msgid "Global"
msgstr ""
#: src/components/Footer.jsx:94
#: src/components/Footer.jsx:194
#: src/components/Footer.jsx:194
msgid "Help"
msgstr ""
#: src/components/SavedItemPane.jsx:192
#: src/components/SavedItemPane.jsx:192
msgid "Import"
msgstr ""
#: src/components/SavedItemPane.jsx:189
msgid "Import your creations. Only the file that you export through the 'Export' button can be imported."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:95
msgid "Indent code left"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:89
msgid "Indent code right"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:9
msgid "Keyboard Shortcuts"
msgstr ""
#: src/components/Footer.jsx:108
msgid "Keyboard shortcuts"
msgstr ""
#: src/components/HelpModal.jsx:199
msgid "License"
msgstr ""
#: src/components/HelpModal.jsx:47
msgid "Like this extension? Please <0>rate it here</0>."
msgstr ""
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
msgid "Login" #~ msgid "Login"
msgstr "लॉगिन" #~ msgstr "लॉगिन"
#: src/components/MainHeader.jsx:104
#: src/components/MainHeader.jsx:104
msgid "Login/Signup"
msgstr ""
#: src/components/HelpModal.jsx:16
msgid "Made with <0>💖</0>& <1> 🙌</1> by <2>Kushagra Gour</2>"
msgstr ""
#: src/components/SavedItemPane.jsx:172
msgid "My Library ({0})"
msgstr ""
#: src/components/MainHeader.jsx:64 #: src/components/MainHeader.jsx:64
#: src/components/MainHeader.jsx:64 #: src/components/MainHeader.jsx:64
msgid "New" msgid "New"
msgstr "नया बनाएँ" msgstr "नया बनाएँ"
#: src/components/SavedItemPane.jsx:207
msgid "No match found."
msgstr ""
#: src/components/AddLibrary.jsx:125
msgid "Note: You can load external scripts from following domains:"
msgstr ""
#: src/components/SavedItemPane.jsx:223
msgid "Nothing saved here."
msgstr ""
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
msgid "Open" msgid "Open"
msgstr "खोलें" msgstr "खोलें"
#: src/components/MainHeader.jsx:87
msgid "Open a saved creation (Ctrl/⌘ + O)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:36
msgid "Open list of saved creations"
msgstr ""
#: src/components/AddLibrary.jsx:88
msgid "Powered by cdnjs"
msgstr ""
#: src/components/AddLibrary.jsx:118
#: src/components/AddLibrary.jsx:147
msgid "Put each library in new line"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:107
msgid "Read more"
msgstr ""
#: src/components/HelpModal.jsx:30
msgid "Read the documentation."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:83
msgid "Realign code"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:24
msgid "Refresh preview"
msgstr ""
#: src/components/HelpModal.jsx:102
msgid "Report a bug"
msgstr ""
#: src/components/HelpModal.jsx:80
msgid "Review Web Maker"
msgstr ""
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
msgid "Run" msgid "Run"
msgstr "चलाएँ" msgstr "चलाएँ"
#: src/components/KeyboardShortcutsModal.jsx:120
msgid "Run Prettier"
msgstr ""
#: src/components/MainHeader.jsx:26
msgid "Run preview (Ctrl/⌘ + Shift + 5)"
msgstr ""
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: src/components/MainHeader.jsx:105 #: src/components/Footer.jsx:206
#: src/components/MainHeader.jsx:105 msgid "Save as HTML file"
msgid "Signup" msgstr ""
#: src/components/MainHeader.jsx:71
msgid "Save current creation (Ctrl/⌘ + S)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:30
msgid "Save current creations"
msgstr ""
#: src/components/SavedItemPane.jsx:201
msgid "Search your creations here..."
msgstr ""
#: src/components/Footer.jsx:317
msgid "See Changelog"
msgstr ""
#: src/components/HelpModal.jsx:110
msgid "See awesome libraries used"
msgstr ""
#: src/components/MainHeader.jsx:110
msgid "See profile or Logout"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:65
msgid "Select next match"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:71
msgid "Select previous match"
msgstr ""
#: src/components/Footer.jsx:329
msgid "Settings"
msgstr ""
#: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105
#~ msgid "Signup"
#~ msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:114
msgid "Single line comment"
msgstr ""
#: src/components/MainHeader.jsx:58
msgid "Start a new creation"
msgstr ""
#: src/components/HelpModal.jsx:69
#: src/components/HelpModal.jsx:69
msgid "Support the developer"
msgstr ""
#: src/components/Footer.jsx:143
msgid "Support the developer by pledging some amount"
msgstr ""
#: src/components/Footer.jsx:293
msgid "Switch to full screen preview"
msgstr ""
#: src/components/Footer.jsx:283
msgid "Switch to layout with all vertical panes"
msgstr ""
#: src/components/Footer.jsx:263
msgid "Switch to layout with preview on bottom"
msgstr ""
#: src/components/Footer.jsx:273
msgid "Switch to layout with preview on left"
msgstr ""
#: src/components/Footer.jsx:273
#~ msgid "Switch to layout with preview on left\""
#~ msgstr ""
#: src/components/Footer.jsx:253
msgid "Switch to layout with preview on right"
msgstr ""
#: src/components/Footer.jsx:240
msgid "Take screenshot of preview"
msgstr ""
#: src/components/Console.jsx:79
msgid "Toggle console"
msgstr ""
#: src/components/Footer.jsx:122
msgid "Tweet about 'Web Maker'"
msgstr ""
#: src/components/HelpModal.jsx:34
msgid "Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>"
msgstr "हलवा हियाँ ये तो <0>चमप्रश</0>"
#: src/components/AddLibrary.jsx:82
msgid "Type here to search libraries"
msgstr ""
#: src/components/Footer.jsx:187
#: src/components/Footer.jsx:187
msgid "Upload Image"
msgstr "" msgstr ""

View File

@@ -6,14 +6,107 @@
} }
}, },
messages: { messages: {
'"Web Maker" <0>CHill</0>.': '"Web Maker" <0>CHill</0>.',
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.':
'\'Oops! Selected file is corrupted. Please select a file that was generated by clicking the "Export" button.',
'Add Library': 'Add Library',
'Add a JS/CSS library': 'Add a JS/CSS library', 'Add a JS/CSS library': 'Add a JS/CSS library',
'Add library': 'Add library', 'Add library': 'Add library',
Chat: 'Chat',
'Choose from popular libraries': 'Choose from popular libraries',
'Clear console (CTRL + L)': 'Clear console (CTRL + L)',
'Clear console (works when console input is focused)':
'Clear console (works when console input is focused)',
'Close saved creations panel & modals':
'Close saved creations panel & modals',
Console: 'Console', Console: 'Console',
'Detach Preview': 'Detach Preview',
Donate: 'Donate',
'Double click to toggle console': 'Double click to toggle console',
'Download game as zip': 'Download game as zip',
'Edit on CodePen': 'Edit on CodePen',
Editor: 'Editor',
'Emmet code completion': 'Emmet code completion',
Export: 'Export',
'Export all your creations into a single importable file.':
'Export all your creations into a single importable file.',
Find: 'Find',
'Find & replace': 'Find & replace',
Global: 'Global',
Help: 'Help',
Import: 'Import',
"Import your creations. Only the file that you export through the 'Export' button can be imported.":
"Import your creations. Only the file that you export through the 'Export' button can be imported.",
'Indent code left': 'Indent code left',
'Indent code right': 'Indent code right',
'Keyboard Shortcuts': 'Keyboard Shortcuts',
'Keyboard shortcuts': 'Keyboard shortcuts',
License: 'License',
'Like this extension? Please <0>rate it here</0>.':
'Like this extension? Please <0>rate it here</0>.',
Login: 'Login', Login: 'Login',
'Login/Signup': 'Login/Signup',
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>':
'Made with <0>\uD83D\uDC96</0>& <1> \uD83D\uDE4C</1> by <2>Kushagra Gour</2>',
'My Library ({0})': function(a) {
return ['My Library (', a('0'), ')'];
},
New: 'New', New: 'New',
'No match found.': 'No match found.',
'Note: You can load external scripts from following domains:':
'Note: You can load external scripts from following domains:',
'Nothing saved here.': 'Nothing saved here.',
Open: 'Open', Open: 'Open',
'Open a saved creation (Ctrl/\u2318 + O)':
'Open a saved creation (Ctrl/\u2318 + O)',
'Open list of saved creations': 'Open list of saved creations',
'Powered by cdnjs': 'Powered by cdnjs',
'Put each library in new line': 'Put each library in new line',
'Read more': 'Read more',
'Read the documentation.': 'Read the documentation.',
'Realign code': 'Realign code',
'Refresh preview': 'Refresh preview',
'Report a bug': 'Report a bug',
'Review Web Maker': 'Review Web Maker',
Run: 'Run', Run: 'Run',
'Run Prettier': 'Run Prettier',
'Run preview (Ctrl/\u2318 + Shift + 5)':
'Run preview (Ctrl/\u2318 + Shift + 5)',
Save: 'Save', Save: 'Save',
Signup: 'Signup' 'Save as HTML file': 'Save as HTML file',
'Save current creation (Ctrl/\u2318 + S)':
'Save current creation (Ctrl/\u2318 + S)',
'Save current creations': 'Save current creations',
'Search your creations here...': 'Search your creations here...',
'See Changelog': 'See Changelog',
'See awesome libraries used': 'See awesome libraries used',
'See profile or Logout': 'See profile or Logout',
'Select next match': 'Select next match',
'Select previous match': 'Select previous match',
Settings: 'Settings',
Signup: 'Signup',
'Single line comment': 'Single line comment',
'Start a new creation': 'Start a new creation',
'Support the developer': 'Support the developer',
'Support the developer by pledging some amount':
'Support the developer by pledging some amount',
'Switch to full screen preview': 'Switch to full screen preview',
'Switch to layout with all vertical panes':
'Switch to layout with all vertical panes',
'Switch to layout with preview on bottom':
'Switch to layout with preview on bottom',
'Switch to layout with preview on left':
'Switch to layout with preview on left',
'Switch to layout with preview on left"':
'Switch to layout with preview on left"',
'Switch to layout with preview on right':
'Switch to layout with preview on right',
'Take screenshot of preview': 'Take screenshot of preview',
'Toggle console': 'Toggle console',
"Tweet about 'Web Maker'": "Tweet about 'Web Maker'",
'Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>':
'Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>',
'Type here to search libraries': 'Type here to search libraries',
'Upload Image': 'Upload Image'
} }
}; };

View File

@@ -13,6 +13,18 @@ msgstr ""
"Language-Team: \n" "Language-Team: \n"
"Plural-Forms: \n" "Plural-Forms: \n"
#: src/components/HelpModal.jsx:201
msgid "\"Web Maker\" <0>CHill</0>."
msgstr ""
#: src/components/SavedItemPane.jsx:111
msgid "'Oops! Selected file is corrupted. Please select a file that was generated by clicking the \"Export\" button."
msgstr ""
#: src/components/AddLibrary.jsx:67
msgid "Add Library"
msgstr ""
#: src/components/MainHeader.jsx:41 #: src/components/MainHeader.jsx:41
msgid "Add a JS/CSS library" msgid "Add a JS/CSS library"
msgstr "" msgstr ""
@@ -22,14 +34,138 @@ msgstr ""
msgid "Add library" msgid "Add library"
msgstr "" msgstr ""
#: src/components/Console.jsx:58 #: src/components/HelpModal.jsx:91
#: src/components/Console.jsx:58 msgid "Chat"
msgstr ""
#: src/components/AddLibrary.jsx:92
#: src/components/AddLibrary.jsx:92
msgid "Choose from popular libraries"
msgstr ""
#: src/components/Console.jsx:70
msgid "Clear console (CTRL + L)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:42
msgid "Clear console (works when console input is focused)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:48
msgid "Close saved creations panel & modals"
msgstr ""
#: src/components/Console.jsx:61
#: src/components/Console.jsx:61
msgid "Console" msgid "Console"
msgstr "" msgstr ""
#: src/components/Footer.jsx:301
msgid "Detach Preview"
msgstr ""
#: src/components/Footer.jsx:146
#: src/components/Footer.jsx:146
msgid "Donate"
msgstr ""
#: src/components/Console.jsx:57
msgid "Double click to toggle console"
msgstr ""
#: src/components/Footer.jsx:174
#: src/components/Footer.jsx:174
msgid "Download game as zip"
msgstr ""
#: src/components/Footer.jsx:229
msgid "Edit on CodePen"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:54
msgid "Editor"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:101
msgid "Emmet code completion"
msgstr ""
#: src/components/SavedItemPane.jsx:183
#: src/components/SavedItemPane.jsx:183
msgid "Export"
msgstr ""
#: src/components/SavedItemPane.jsx:180
msgid "Export all your creations into a single importable file."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:59
msgid "Find"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:77
msgid "Find & replace"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:15
msgid "Global"
msgstr ""
#: src/components/Footer.jsx:94
#: src/components/Footer.jsx:194
#: src/components/Footer.jsx:194
msgid "Help"
msgstr ""
#: src/components/SavedItemPane.jsx:192
#: src/components/SavedItemPane.jsx:192
msgid "Import"
msgstr ""
#: src/components/SavedItemPane.jsx:189
msgid "Import your creations. Only the file that you export through the 'Export' button can be imported."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:95
msgid "Indent code left"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:89
msgid "Indent code right"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:9
msgid "Keyboard Shortcuts"
msgstr ""
#: src/components/Footer.jsx:108
msgid "Keyboard shortcuts"
msgstr ""
#: src/components/HelpModal.jsx:199
msgid "License"
msgstr ""
#: src/components/HelpModal.jsx:47
msgid "Like this extension? Please <0>rate it here</0>."
msgstr ""
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105 #: src/components/MainHeader.jsx:105
msgid "Login" #~ msgid "Login"
#~ msgstr ""
#: src/components/MainHeader.jsx:104
#: src/components/MainHeader.jsx:104
msgid "Login/Signup"
msgstr ""
#: src/components/HelpModal.jsx:16
msgid "Made with <0>💖</0>& <1> 🙌</1> by <2>Kushagra Gour</2>"
msgstr ""
#: src/components/SavedItemPane.jsx:172
msgid "My Library ({0})"
msgstr "" msgstr ""
#: src/components/MainHeader.jsx:64 #: src/components/MainHeader.jsx:64
@@ -37,22 +173,189 @@ msgstr ""
msgid "New" msgid "New"
msgstr "" msgstr ""
#: src/components/SavedItemPane.jsx:207
msgid "No match found."
msgstr ""
#: src/components/AddLibrary.jsx:125
msgid "Note: You can load external scripts from following domains:"
msgstr ""
#: src/components/SavedItemPane.jsx:223
msgid "Nothing saved here."
msgstr ""
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
#: src/components/MainHeader.jsx:96 #: src/components/MainHeader.jsx:96
msgid "Open" msgid "Open"
msgstr "" msgstr ""
#: src/components/MainHeader.jsx:87
msgid "Open a saved creation (Ctrl/⌘ + O)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:36
msgid "Open list of saved creations"
msgstr ""
#: src/components/AddLibrary.jsx:88
msgid "Powered by cdnjs"
msgstr ""
#: src/components/AddLibrary.jsx:118
#: src/components/AddLibrary.jsx:147
msgid "Put each library in new line"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:107
msgid "Read more"
msgstr ""
#: src/components/HelpModal.jsx:30
msgid "Read the documentation."
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:83
msgid "Realign code"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:24
msgid "Refresh preview"
msgstr ""
#: src/components/HelpModal.jsx:102
msgid "Report a bug"
msgstr ""
#: src/components/HelpModal.jsx:80
msgid "Review Web Maker"
msgstr ""
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
#: src/components/MainHeader.jsx:32 #: src/components/MainHeader.jsx:32
msgid "Run" msgid "Run"
msgstr "" msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:120
msgid "Run Prettier"
msgstr ""
#: src/components/MainHeader.jsx:26
msgid "Run preview (Ctrl/⌘ + Shift + 5)"
msgstr ""
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
#: src/components/MainHeader.jsx:80 #: src/components/MainHeader.jsx:80
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: src/components/MainHeader.jsx:105 #: src/components/Footer.jsx:206
#: src/components/MainHeader.jsx:105 msgid "Save as HTML file"
msgid "Signup" msgstr ""
#: src/components/MainHeader.jsx:71
msgid "Save current creation (Ctrl/⌘ + S)"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:30
msgid "Save current creations"
msgstr ""
#: src/components/SavedItemPane.jsx:201
msgid "Search your creations here..."
msgstr ""
#: src/components/Footer.jsx:317
msgid "See Changelog"
msgstr ""
#: src/components/HelpModal.jsx:110
msgid "See awesome libraries used"
msgstr ""
#: src/components/MainHeader.jsx:110
msgid "See profile or Logout"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:65
msgid "Select next match"
msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:71
msgid "Select previous match"
msgstr ""
#: src/components/Footer.jsx:329
msgid "Settings"
msgstr ""
#: src/components/MainHeader.jsx:105
#: src/components/MainHeader.jsx:105
#~ msgid "Signup"
#~ msgstr ""
#: src/components/KeyboardShortcutsModal.jsx:114
msgid "Single line comment"
msgstr ""
#: src/components/MainHeader.jsx:58
msgid "Start a new creation"
msgstr ""
#: src/components/HelpModal.jsx:69
#: src/components/HelpModal.jsx:69
msgid "Support the developer"
msgstr ""
#: src/components/Footer.jsx:143
msgid "Support the developer by pledging some amount"
msgstr ""
#: src/components/Footer.jsx:293
msgid "Switch to full screen preview"
msgstr ""
#: src/components/Footer.jsx:283
msgid "Switch to layout with all vertical panes"
msgstr ""
#: src/components/Footer.jsx:263
msgid "Switch to layout with preview on bottom"
msgstr ""
#: src/components/Footer.jsx:273
msgid "Switch to layout with preview on left"
msgstr ""
#: src/components/Footer.jsx:273
#~ msgid "Switch to layout with preview on left\""
#~ msgstr ""
#: src/components/Footer.jsx:253
msgid "Switch to layout with preview on right"
msgstr ""
#: src/components/Footer.jsx:240
msgid "Take screenshot of preview"
msgstr ""
#: src/components/Console.jsx:79
msgid "Toggle console"
msgstr ""
#: src/components/Footer.jsx:122
msgid "Tweet about 'Web Maker'"
msgstr ""
#: src/components/HelpModal.jsx:34
msgid "Tweet out your feature requests, comments & suggestions to <0>@webmakerApp</0>"
msgstr ""
#: src/components/AddLibrary.jsx:82
msgid "Type here to search libraries"
msgstr ""
#: src/components/Footer.jsx:187
#: src/components/Footer.jsx:187
msgid "Upload Image"
msgstr "" msgstr ""