Skip to content

Solved issue #3329 #3344

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions client/modules/IDE/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ export default function SideBar() {
<li>
<button
aria-label={t('Sidebar.AddFolderARIA')}
onMouseDown={(e) => e.preventDefault()}
onClick={() => {
dispatch(newFolder(rootFile.id));
setTimeout(() => dispatch(closeProjectOptions()), 0);
Expand All @@ -104,6 +105,7 @@ export default function SideBar() {
<li>
<button
aria-label={t('Sidebar.AddFileARIA')}
onMouseDown={(e) => e.preventDefault()}
onClick={() => {
dispatch(newFile(rootFile.id));
setTimeout(() => dispatch(closeProjectOptions()), 0);
Expand All @@ -117,6 +119,7 @@ export default function SideBar() {
<li>
<button
aria-label={t('Sidebar.UploadFileARIA')}
onMouseDown={(e) => e.preventDefault()}
onClick={() => {
dispatch(openUploadFileModal(rootFile.id));
setTimeout(() => dispatch(closeProjectOptions()), 0);
Expand Down
6 changes: 5 additions & 1 deletion translations/locales/fr-CA/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@
"UsernameOrEmailARIA": "Courriel ou nom d'utilisateur",
"Password": "Mot de passe",
"PasswordARIA": "Mot de passe",
"Submit": "Se connecter"
"Submit": "Se connecter",
"Errors": {
"invalidCredentials": "E-mail ou mot de passe invalide.",
"networkError": "Erreur réseau. Veuillez réessayer plus tard."
}
},
"LoginView": {
"Title": "Editeur web p5.js | Se connecter",
Expand Down