-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from PasteBar/zh-CN-es-ES-uk-languages-support
Adding es-ES, uk, it and zh-CH languages support, new requested features and bug fixes
- Loading branch information
Showing
144 changed files
with
9,840 additions
and
3,001 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
'pastebar-app-ui': minor | ||
--- | ||
|
||
Added support for zhCN Simplified Chinese language translation (thanks to @katelya77) | ||
Added support for UK Ukrainian language with auto-generated translation (seeking help to improve) | ||
Added support for esES Spanish language with auto-generated translation (seeking help to improve) | ||
Added support for IT Italian language with auto-generated translation (seeking help to improve) | ||
Added data-fn locale for each language | ||
Added global hotkeys for show/hide the main app window option | ||
Added global hotkeys for show/hide Quick Paste window near user's current cursor position | ||
Added hide the app dock icon (macOS) option | ||
Added "The app starts with main window hidden" option | ||
Added "Show navbar elements on hover only" option | ||
Added "Hide collections name on the navbar" option | ||
Added PasteBar Quick Paste window with keyboard navigation, Enter or Ctrl + [number] to paste, Ctrl + F to search | ||
Added Ctrl + click or Cmd + click to multi select/deselect history items | ||
Fixed a bug where the contact form used an invalid link on Windows (#125) | ||
Fixed a bug causing a markdown undefined error on window |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
DATABASE_URL=sqlite://local.pastebar-db.data | ||
VITE_ENABLE_REACT_QUERY_DEVTOOLS= | ||
VITE_DISABLE_SAVE_TRANSLATIONS= | ||
VITE_DISABLE_LANGUAGE_FALLBACK= | ||
MISSING_TRANSLATION_SAVE_PATH=../packages/pastebar-app-ui/src/locales/lang |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
DATABASE_URL= | ||
VITE_ENABLE_REACT_QUERY_DEVTOOLS= | ||
VITE_DISABLE_SAVE_TRANSLATIONS= | ||
VITE_DISABLE_LANGUAGE_FALLBACK= | ||
MISSING_TRANSLATION_SAVE_PATH= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
VITE_ENABLE_REACT_QUERY_DEVTOOLS= | ||
VITE_DISABLE_SAVE_TRANSLATIONS= | ||
VITE_DISABLE_LANGUAGE_FALLBACK= | ||
VITE_ENABLE_DEV_AUTO_UPDATER= | ||
PASTEBAR_APP_PATH=../.. | ||
VITE_CONTACT_SERVER_URL=https://contact.pastebar.app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<!-- react-debugger, run on dev: npx react-devtools --> | ||
<!-- <script src="http://localhost:8097"></script> --> | ||
<link rel="preload" href="src/assets/SourceCodePro-Regular.otf.woff2" as="font" type="font/woff2" crossorigin /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>PasteBar App</title> | ||
</head> | ||
<body class="bg-transparent"> | ||
<div id="root"></div> | ||
<script> | ||
window.isHistoryWindow = false; | ||
window.isQuickPasteWindow = true; | ||
window.isMainWindow = false; | ||
</script> | ||
<script type="module" src="src/quickpaste-main.tsx"></script> | ||
<script> | ||
function handleDrop(e) { | ||
e.preventDefault(); | ||
} | ||
|
||
window.addEventListener("dragover", handleDrop, false); | ||
window.addEventListener("drop", handleDrop, false); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.