Hello! What’s up in this little summer ? I hope you drink well!
This week, a bunch of Hotfix, but also:
-
The plugin is now translated in french (including the documentation!) and chinese (only for the plugin). Here is a little tutorial to add a new language for the plugin (detected by your obsidian configuration).
- First, get your obsidian “language id”. I use templater for that, with that :
<% tp.obsidian.moment.locale() %>
- Clone the file
i18n/locales/en-us.ts
and rename it with your language. - Translate the differents variables in the new created file.
- In
i18n/index.ts
import the new file with `import from “.locales/” - In the
localeMap
, add in a new line :<obsidian language found>:<filename>
. - Additionnality, try your new translation.
- Generate a pull request to add your translation.
- First, get your obsidian “language id”. I use templater for that, with that :
-
With the last Dataview update, it is now possible to transform dataview (not javascript one) query in markdown, so the plugin support it naturally. Thanks to @oleeskild in obsidian-digital-garden, where i take the code !