aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n
Commit message (Collapse)AuthorAge
...
* Added more logging while publishing of debug info.Libravatar Vijay A2021-07-15
|
* New Crowdin updates (#1641)Libravatar Ferdi Bot2021-07-14
|
* New Crowdin updates (#1617)Libravatar Ferdi Bot2021-07-08
|
* New Crowdin updates (#1612)Libravatar Ferdi Bot2021-07-07
|
* New Crowdin updates (#1607)Libravatar Ferdi Bot2021-07-06
|
* Added new help text for lay-users to figure out what their user-agent value is.Libravatar Vijay A2021-07-06
|
* Removed references to png images since they were not being used anyways.Libravatar Vijay A2021-07-06
|
* Fixed issue with not being able to add new service.Libravatar Vijay A2021-07-04
|
* New Crowdin updates (#1590)Libravatar Ferdi Bot2021-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * en-US.json (Romanian) * en-US.json (Turkish) * en-US.json (Portuguese) * en-US.json (Russian) * en-US.json (Slovak) * en-US.json (Slovenian) * en-US.json (Serbian (Cyrillic)) * en-US.json (Swedish) * en-US.json (Ukrainian) * en-US.json (Norwegian) * en-US.json (Chinese Simplified) * en-US.json (Chinese Traditional) * en-US.json (Vietnamese) * en-US.json (Portuguese, Brazilian) * en-US.json (Indonesian) * en-US.json (Croatian) * en-US.json (Flemish) * en-US.json (Polish) * en-US.json (Dutch) * en-US.json (French) * en-US.json (German) * en-US.json (Spanish) * en-US.json (Afrikaans) * en-US.json (Arabic) * en-US.json (Belarusian) * en-US.json (Catalan) * en-US.json (Czech) * en-US.json (Danish) * en-US.json (Greek) * en-US.json (Korean) * en-US.json (Finnish) * en-US.json (Irish) * en-US.json (Hebrew) * en-US.json (Hungarian) * en-US.json (Italian) * en-US.json (Japanese) * en-US.json (Georgian) * en-US.json (Bosnian)
* Upgrade various dependencies to latest part 2 (#1557)Libravatar Markus Hatvan2021-07-03
| | | | | | | | * Upgrade various dependencies to latest, remove unnecessary electron-hunspell - upgrade eslint and friends to latest - remove deprecated 'node-sass' in favor of 'sass' - disable new rules from 'eslint-config-airbnb' that are conflicting with current code style - add workspace config for 'vscode' that silences 'experimentalDecorator' warning and forces 'prettier' to single quote * Run yarn lint to autofix with new ruleset and worked down lint issues to zero
* Minor refactoring to move all runtime configs from 'config.js' into ↵Libravatar Vijay Raghavan Aravamudhan2021-07-03
| | | | 'environment.js'. (#1588)
* New translations en-US.json (Portuguese, Brazilian)Libravatar Ferdi Bot2021-06-29
|
* Updated package-lock.json (missed in prev commit)Libravatar Vijay A2021-06-29
|
* New translations en-US.json (Belarusian)Libravatar Ferdi Bot2021-06-29
|
* New Crowdin updates (#1572)Libravatar Ferdi Bot2021-06-27
|
* New Crowdin updates (#1555)Libravatar Ferdi Bot2021-06-24
| | | | | | | | | | | | | | | | | | | | | * New translations en-US.json (Portuguese, Brazilian) * New translations en-US.json (French) * New translations en-US.json (German) * New translations en-US.json (Spanish) * New translations en-US.json (Danish) * New translations en-US.json (Finnish) * New translations en-US.json (Hebrew) * New translations en-US.json (Italian) * New translations en-US.json (Italian) * New translations en-US.json (Italian)
* Upgraded eslint and fixed all the reported errors. (#1549)Libravatar Vijay Raghavan Aravamudhan2021-06-23
|
* Added new message when the user doesn't find a service (but that is present ↵Libravatar Vijay A2021-06-23
| | | | in the website).
* Upgraded to Electron 13.1.3 (#1542)Libravatar Vijay Raghavan Aravamudhan2021-06-22
|
* New Crowdin updates (#1536)Libravatar Ferdi Bot2021-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Romanian Hebrew Portuguese Polish Norwegian French Korean Georgian Japanese Italian Hungarian Dutch Irish Belarusian Finnish Spanish Afrikaans Arabic Catalan Czech Danish German Greek Chinese Traditional Flemish Croatian Indonesian Portuguese, Brazilian Vietnamese Slovenian Chinese Simplified Ukrainian Turkish Swedish Serbian (Cyrillic) Slovak Russian Bosnian
* User agent as a user-preference (#1535)Libravatar Vijay Raghavan Aravamudhan2021-06-17
| | | | | | | | | | | | | | | | | | | | Introduced a global and a service-specific 'user-agent' value that can be set by the user from the preference section. The global override is in Advanced, while the service override was moved to the bottom of the service editor form (and now occupies the full width of the form). Show 'restart reqd' prompt for user-agent setting. The order of the user-agent is the following: 1. Any request header overrides in the recipe will still override the user agent string. 2. If the user has set a user agent override for the service, use that. 3. If the recipe has a predefined user agent, use that. 4. If the user has set a global user agent override, use that. 5. Otherwise, use the user agent string corresponding to the underlying Electron version. If the current webpage is the Google login form, we still remove the Chrome version number from the user agent string. The value that would be used if no custom override is set (recipe-provided value or global override for the service, current Electron instance for the global override) is shown as a placeholder in the input box on the corresponding setting screen. Co-authored-by: Kristóf Marussy <kristof@marussy.com>
* Fix active Todos service behaviour (#1481)Libravatar kytwb2021-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Return false instead of null in isTodosServiceAdded * Resolve from TODOS_RECIPES_ID instead of hardcoded TODOS_RECIPE_ID * Fix TodosWebview width toggling when isTodosServiceActive * Add more todo service recipe IDs * Refactor todos state management * Moved todos service URL and recipe ID computation logic to todos/store * Simplified TodosWebview by delegating to the store for the URL and removing the (unused) payment logic * Made the todos service computation logic in the Service model depend on the logic in todos/store * Made ServicesStore depend on the todos service logic from the Service model * Todos appearance fixes * Hide double horizontal rules if todo settings are hidden due to an added todo service * Hide todos panel border when the panel is hidden or expanded * Make expanded todos panel obey sidebar width and vertical style settings * Make todos/store use isValidExternalURL * Harden isValidExternalURL against malformed URLs * Reduce todo URL string duplication in config.js Co-authored-by: Kristóf Marussy <kristof@marussy.com>
* New translations en-US.json (Korean)Libravatar Ferdi Bot2021-06-07
|
* New Crowdin updates (#1500)Libravatar Ferdi Bot2021-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New translations en-US.json (Romanian) * New translations en-US.json (Turkish) * New translations en-US.json (Portuguese) * New translations en-US.json (Russian) * New translations en-US.json (Slovak) * New translations en-US.json (Slovenian) * New translations en-US.json (Serbian (Cyrillic)) * New translations en-US.json (Swedish) * New translations en-US.json (Ukrainian) * New translations en-US.json (Norwegian) * New translations en-US.json (Chinese Simplified) * New translations en-US.json (Chinese Traditional) * New translations en-US.json (Vietnamese) * New translations en-US.json (Portuguese, Brazilian) * New translations en-US.json (Indonesian) * New translations en-US.json (Croatian) * New translations en-US.json (Flemish) * New translations en-US.json (Polish) * New translations en-US.json (Dutch) * New translations en-US.json (French) * New translations en-US.json (German) * New translations en-US.json (Spanish) * New translations en-US.json (Afrikaans) * New translations en-US.json (Arabic) * New translations en-US.json (Belarusian) * New translations en-US.json (Catalan) * New translations en-US.json (Czech) * New translations en-US.json (Danish) * New translations en-US.json (Greek) * New translations en-US.json (Korean) * New translations en-US.json (Finnish) * New translations en-US.json (Irish) * New translations en-US.json (Hebrew) * New translations en-US.json (Hungarian) * New translations en-US.json (Italian) * New translations en-US.json (Japanese) * New translations en-US.json (Georgian) * New translations en-US.json (Bosnian)
* Added ability to turn off notifications for clipboard events generated by ↵Libravatar Vijay Raghavan Aravamudhan2021-06-05
| | | | context menu actions (#1494)
* Removed hardcoded strings and reused constants defined in config.js (#1499)Libravatar Vijay Raghavan Aravamudhan2021-06-05
|
* Expose Chrome version to todos webview (fix #1211) (#1478)Libravatar Kristóf Marussy2021-06-03
| | | | | | | | | | | | | | | | | * Expose Chrome version to todos webview (fix #1211) The TickTick todo service fails to load if the Chrome version number does not appear in the User-Agent string. However, login to Google Tasks is prevented by the same. We adopt the "chromeless" User-Agent logic from the service webview, which selectively exposes the Chrome version everywhere except the Google login screen. The common logic was moved into the userAgent-helpers module. * Refactor user agent switching * "Chromeless" user agent switching is extracted into a separate model * Both the service and the todos webview uses the same model
* Environmental variables for dev/production mode (#1455)Libravatar Kristóf Marussy2021-05-27
| | | | | | | | | | | | | | | | | | | | | * Restore ELECTRON_IS_DEV environment variable As part of migrating to @electron/remote from electron.remote, 296ce5ce6 removed the electron-is-dev package and with it the support of selecting dev/production mode with the ELECTRON_IS_DEV environmental variable. This commit restores support for this variable. Because even the newest version of the electron-is-dev package breaks in renderer processes, we instead query the environment ourselves. * Add support for NODE_ENV variable Also support NODE_ENV for specifying dev mode in addition to the ELECTRON_IS_DEV variable. This variable is used by e.g., the packaging in Arch Linux to trigger production mode with an explicit electron command line invocation: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ferdi-git&id=61dc59e5eb19a2c9e8f9edaf0a63aaae72990a0b#n109 * Refactor environmental variable handling
* Auto-generated files and linter fixes.Libravatar Vijay A2021-05-26
|
* Replace 'remote' with 'electron/remote' (#1448)Libravatar Vijay Raghavan Aravamudhan2021-05-26
| | | * Locked new version of 'recipes' submodule with corresponding changes.
* Changed occurrences of 'Franz' to 'Ferdi' (probably missed earlier while ↵Libravatar Vijay A2021-05-17
| | | | catchup from Franz source). [skip ci]
* New Crowdin updates (#1421)Libravatar Ferdi Bot2021-05-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Russian * Turkish * Polish * Portuguese * Slovak * Slovenian * Serbian (Cyrillic) * Swedish * Ukrainian * Dutch * Chinese Simplified * Chinese Traditional * Vietnamese * Portuguese, Brazilian * Indonesian * Croatian * Flemish * Norwegian * Korean * Romanian * Danish * French * Spanish * Afrikaans * Arabic * Belarusian * Catalan * Czech * German * Georgian * Greek * Finnish * Irish * Hebrew * Hungarian * Italian * Japanese * Bosnian
* Fix for #1417: Mac Nomenclature for Menu BarLibravatar Vijay A2021-05-16
|
* New Crowdin updates (#1418)Libravatar Ferdi Bot2021-05-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New translations en-US.json (Russian) * New translations en-US.json (Turkish) * New translations en-US.json (Polish) * New translations en-US.json (Portuguese) * New translations en-US.json (Slovak) * New translations en-US.json (Slovenian) * New translations en-US.json (Serbian (Cyrillic)) * New translations en-US.json (Swedish) * New translations en-US.json (Ukrainian) * New translations en-US.json (Dutch) * New translations en-US.json (Chinese Simplified) * New translations en-US.json (Chinese Traditional) * New translations en-US.json (Vietnamese) * New translations en-US.json (Portuguese, Brazilian) * New translations en-US.json (Indonesian) * New translations en-US.json (Croatian) * New translations en-US.json (Flemish) * New translations en-US.json (Norwegian) * New translations en-US.json (Korean) * New translations en-US.json (Romanian) * New translations en-US.json (Danish) * New translations en-US.json (French) * New translations en-US.json (Spanish) * New translations en-US.json (Afrikaans) * New translations en-US.json (Arabic) * New translations en-US.json (Belarusian) * New translations en-US.json (Catalan) * New translations en-US.json (Czech) * New translations en-US.json (German) * New translations en-US.json (Georgian) * New translations en-US.json (Greek) * New translations en-US.json (Finnish) * New translations en-US.json (Irish) * New translations en-US.json (Hebrew) * New translations en-US.json (Hungarian) * New translations en-US.json (Italian) * New translations en-US.json (Japanese) * New translations en-US.json (Bosnian)
* Separated privacy & security settings into its own tab in the preferences ↵Libravatar Vijay Raghavan Aravamudhan2021-05-15
| | | | | | | screen (#1416) * Separated privacy & security settings into its own tab in the preferences screen. * Fixing review comments.
* New Crowdin updates (#1415)Libravatar Ferdi Bot2021-05-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New translations en-US.json (Russian) * New translations en-US.json (Turkish) * New translations en-US.json (Polish) * New translations en-US.json (Portuguese) * New translations en-US.json (Slovak) * New translations en-US.json (Slovenian) * New translations en-US.json (Serbian (Cyrillic)) * New translations en-US.json (Swedish) * New translations en-US.json (Ukrainian) * New translations en-US.json (Dutch) * New translations en-US.json (Chinese Simplified) * New translations en-US.json (Chinese Traditional) * New translations en-US.json (Vietnamese) * New translations en-US.json (Portuguese, Brazilian) * New translations en-US.json (Indonesian) * New translations en-US.json (Croatian) * New translations en-US.json (Flemish) * New translations en-US.json (Norwegian) * New translations en-US.json (Korean) * New translations en-US.json (Romanian) * New translations en-US.json (Danish) * New translations en-US.json (French) * New translations en-US.json (Spanish) * New translations en-US.json (Afrikaans) * New translations en-US.json (Arabic) * New translations en-US.json (Belarusian) * New translations en-US.json (Catalan) * New translations en-US.json (Czech) * New translations en-US.json (German) * New translations en-US.json (Georgian) * New translations en-US.json (Greek) * New translations en-US.json (Finnish) * New translations en-US.json (Irish) * New translations en-US.json (Hebrew) * New translations en-US.json (Hungarian) * New translations en-US.json (Italian) * New translations en-US.json (Japanese) * New translations en-US.json (Bosnian)
* Adding DuckDuckGo as an alternative search engine (#1414)Libravatar Vijay Raghavan Aravamudhan2021-05-15
| | | | | | | * Adding DuckDuckGo as an alternative search engine. * Fixing review comments. * Fixing review comments.
* New Crowdin updates (#1412)Libravatar Ferdi Bot2021-05-15
| | | | | | | * New translations en-US.json (Japanese) * New translations en-US.json (Japanese) * New translations en-US.json (Japanese)
* New Crowdin updates (Portuguese, Brazilian) (#1411)Libravatar Ferdi Bot2021-05-14
|
* Lazily compute cache size (#1404)Libravatar Kristóf Marussy2021-05-13
| | | | | | | | | | | | Computing the cache size can take a long time if the cache is large. Previously, cache size computation was triggered by opening the Settings pane, which slowed down changing settings even if the user wasn't interested in the cache size. This patch defers cache size computation until the Advanced tab is open in the Setting page. Additionally, cache size rendering (in MB / GB) is moved from the AppStore into the EditSettingsForm to fix the notCleared functionality.
* New Crowdin updates for Japanese (#1406)Libravatar Ferdi Bot2021-05-13
|
* New Crowdin updates (#1401)Libravatar Ferdi Bot2021-05-13
| | | | | | | | | | | | | | New translations en-US.json * Arabic * Danish * Finnish * French * German * Italian * Norwegian * Portuguese * Portuguese, Brazilian * Spanish * Swedish
* Alternative shortcut for service switch (fix #850)Libravatar Kristóf Marussy2021-05-13
| | | | | | | | | | | | On Linux, the default Ctrl+Alt+{Left, Right} shortcuts are not always usable, because many desktop environments use them for workspace switching. We also set Ctrl+Tab and Ctrl+Shift+Tab as a service switching shortcut. On Linux, these shortcuts are displayed in the menu, while on other platforms, the older shortcuts remain displayed. However, both shortcuts are enabled on all platforms, unless they are eaten by the desktop environment.
* Fix some appearance issues (#1398)Libravatar Kristóf Marussy2021-05-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix property spelling in Sidebar component * Fix typo in todos partition name * Use the FerdiDev setting.json in dev mode The app.setPath calls are still a mess and need to be fixed, but this at least allows me to experiment locally. * Make @meetfranz/theme follow the accent color We inject the value of the accent color into the themes, so the buttons show the appropriate color. This allows removing some existing css hacks. In order to do this, the themes had to be turned into functions that take the brand color (accent color) as an argument instead of hard-coding it. The css-based accent color for legacy components is left unchanged. * Remove superfluous scrollbars While overflow: scroll doesn't look ugly on macs, because the system hides scrollbars by default (except on hower), on Linux and Windows, the disabled scrollbars appearing by default look ugly. We set overflow-y: auto instead to display a scrollbar only when needed. * Simplify theme generation in @meetfranz/themes * Remove default accent color code duplication * Apply accent color to styles not in themeInfo.json Some colors are darkened/lightened versions of the primary brand color, so they are not caught by build-theme-info. We create these styles with `color` manually. * Inset shadow on sidebar This creates a more flat look that projecting a shadow over the service, and avoid compositing a shadow over the webview. * Apply accent color to vertical style tab bar * Workspace drawer styling in vertical mode * Fix sidebar layout In vertical mode, the top of the service was clipped by the sidebar Also removes unnecessary whitespace in sidebar * Fix 1px wide line on right when todos are hidden * Fix window menu When building the menu bar, the File / app menu is added later, so we must be careful about indexing the menu bar. * Update locale files * Report the default accent color accurately * Fix inverted button with dark theme * Fix crash with invalid accent color Fall back to the default accent color instead * Darker secondary buttons in dark mode * Vertical workspace drawer style outside debug mode In order to reliably apply the style, we need to add a class name to the drawer manually, as component names only appear in class names in debug mode.
* New translations en-US.json (Swedish)Libravatar Ferdi Bot2021-05-10
|
* New translations en-US.json (Swedish)Libravatar Ferdi Bot2021-05-10
|
* Fixing missed default translation file from prior commit.Libravatar Vijay A2021-05-09
|
* Enhanced 'About dialog' to show the build date, git SHA & branch (fixes ↵Libravatar Vijay Raghavan Aravamudhan2021-05-09
| | | | #1373) (#1375)
* New Crowdin updates (#1340)Libravatar Ferdi Bot2021-05-04
|
* Quick switch enhancements (#1326)Libravatar Vijay Raghavan Aravamudhan2021-05-03
|