1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-15 01:49:55 +00:00

Documentation language (#3540)

* Improve documentation install language on node.js

* Singing the CLA
This commit is contained in:
G0erman 2018-11-15 16:43:01 -05:00 committed by Jeremy Ruston
parent 9752531b61
commit d317bdf3da
3 changed files with 10 additions and 3 deletions

View File

@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
!! Language Plugins
The core TiddlyWiki user interface is available in over 20 languages. You can install language plugins using the plugin manager under the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} ''plugins'' tab. You can change the current language using the ''language'' button, found on the "Tools" tab in the sidebar.
The core TiddlyWiki user interface is available in over 20 languages. You can install language plugins following the instruccions [[Installing a plugin from the plugin library]]. You can change the current language using the ''language'' button, found on the "Tools" tab in the sidebar.
You can contribute a new language to the library by learning how to [[translate TiddlyWiki into your language|Translate TiddlyWiki into your language]].

View File

@ -26,7 +26,7 @@ Follow these instructions when using TiddlyWiki under Node.js:
# Identify the plugins you want to install using the ''Plugins'' tab of [[control panel|$:/ControlPanel]] (''don't'' install the plugins from here, though). Plugins are identified by their type (ie language, theme or plugin) and their publisher and title. For example, the plugin `$:/plugins/tiddlywiki/internals` is referred to as ''tiddlywiki/internals''
# Quit the server if it is running
# Edit the `tiddlywiki.info` file (it is in JSON format) and locate the `plugins` and `themes` section (see below)
# Edit the `tiddlywiki.info` file (it is in JSON format) and locate the `plugins`, `themes` or `languages` section (see below)
# Add entries corresponding to the plugins you wish to add. Take care to retain commas to separate items, but do not terminate the last item in a list with a comma
# Restart the server
@ -38,6 +38,11 @@ Follow these instructions when using TiddlyWiki under Node.js:
"themes": [
"tiddlywiki/vanilla",
"tiddlywiki/snowwhite"
]
],
"languages": [
"es-ES",
"fr-FR",
"en-EN"
]
}
```

View File

@ -335,3 +335,5 @@ Bimba László, @bimlas, 2018/08/10
Yurii Rashkovskii, @yrashk, 2018/10/19
Abraham Samma, @abesamma, 2018/10/31
German Ramírez, @g0erman, 2018/11/14