Skip to content

Commit

Permalink
Added french translation (Contribution by yannicka), build 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ransome1 committed Jan 10, 2021
1 parent 51ab05f commit c73871c
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 25 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ You can find binaries for Windows, MacOS and Linux on the <a href="https://githu
- German
- Italian
- Spanish
- French
* Tabindex available
* Basic keyboard shortcuts are available:
- New todo: CMD/CTRL + n
Expand All @@ -79,6 +80,9 @@ You can find binaries for Windows, MacOS and Linux on the <a href="https://githu
- Open file: CMD/CTRL + o
- Open settings: CMD/CTRL + ,

### Contributions
- French translations by @yannicka

### Used libraries
- Electron: https://github.com/electron/electron
- Electron builder: https://github.com/electron-userland/electron-builder
Expand Down
4 changes: 2 additions & 2 deletions flatpak/com.github.ransome1.sleek.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<developer_name>Robin Ahle</developer_name>
<content_rating type="oars-1.0" />
<releases>
<release version="0.7.1" date="2021-01-09"/>
<release version="0.7.2" date="2021-01-10"/>
</releases>
<url type="homepage">https://github.com/ransome1/sleek</url>

Expand Down Expand Up @@ -45,7 +45,7 @@
<li>Dark and light mode can be toggled</li>
<li>A file watcher rereads the file if it has been changed</li>
<li>Multiple todo.txt files can be added</li>
<li>Multiple languages are automatically detected or set by hand to German, English, Italian and Spanish</li>
<li>Multiple languages are automatically detected or set by hand to German, English, Italian, Spanish and French</li>
<li>Tabindex available</li>
<li>Basic keyboard shortcuts are available</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion flatpak/com.github.ransome1.sleek.desktop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Desktop Entry]
Version=0.7.1
Version=0.7.2
Name=sleek
Exec=sleek
Type=Application
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sleek",
"productName": "sleek",
"version": "0.7.1",
"version": "0.7.2",
"description": "sleek is a todo app based on the concept of todo.txt",
"synopsis": "sleek is a todo app based on the concept of todo.txt",
"category": "ProjectManagement",
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: sleek
base: core18
version: '0.7.1'
version: '0.7.2'
summary: sleek is a todo app based on todo.txt, free and open-source
description: |
sleek offers a clean and simple interface that can be used with mouse and keyboard, keyboard only or touch devices. You will use an easy to understand but powerful syntax to create todos. According to the concept of todo.txt you can add contexts to your todos or assign them to projects you're working on. Priorities can be set and if you add due dates sleek will send you notifications just in time.
Expand Down
3 changes: 0 additions & 3 deletions src/configs/i18next.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
const fs = require("fs");
const path = require("path");
//const i18next = require("i18next");
//const i18nextBackend = require("i18next-fs-backend");
//const i18nextBrowserLanguageDetector = require("i18next-browser-languagedetector");
const detectionOptions = {
order: ["querystring", "navigator"],
lookupQuerystring: "lng"
Expand Down
3 changes: 0 additions & 3 deletions src/locales/de/translation.missing.json
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
{
"settings": "settings"
}
13 changes: 0 additions & 13 deletions src/locales/en/translation.missing.json
Original file line number Diff line number Diff line change
@@ -1,13 +0,0 @@
{
"help": "help",
"settings": "settings",
"key": "key",
"createFile": "createFile",
"modalChangeFileOpen": "modalChangeFileOpen",
"modalChangeFileCreate": "modalChangeFileCreate",
"onboardingContainerBtnCreate": "onboardingContainerBtnCreate",
"selected": "selected",
"windowTitleOpenFile": "windowTitleOpenFile",
"formInfoDuplicate": "formInfoDuplicate",
"language": "language"
}
2 changes: 1 addition & 1 deletion src/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -1873,7 +1873,7 @@ function matomoEventsConsent(setting) {
}
_paq.push(['setUserId', uid]);
_paq.push(['setCustomDimension', 1, theme]);
_paq.push(['setCustomDimension', 2, language]);
_paq.push(['setCustomDimension', 2, languageCode]);
_paq.push(['setCustomDimension', 3, notifications]);
_paq.push(['setCustomDimension', 4, matomoEvents]);
_paq.push(['requireConsent']);
Expand Down

0 comments on commit c73871c

Please sign in to comment.