mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
Minor fixes to translations
This commit is contained in:
parent
1cfc3876e0
commit
fbb04e558a
7 changed files with 11 additions and 5 deletions
|
|
@ -29,12 +29,12 @@
|
|||
{
|
||||
:content-dir "resources/public/content"
|
||||
;; where content is served from.
|
||||
:default-locale "en-GB" ;; default language used for messages
|
||||
:default-locale "lt-LT" ;; default language used for messages
|
||||
:formatters {"vega" smeagol.formatting/process-vega
|
||||
"vis" smeagol.formatting/process-vega
|
||||
"mermaid" smeagol.formatting/process-mermaid
|
||||
"backticks" smeagol.formatting/process-backticks}
|
||||
:log-level :info ;; the minimum logging level; one of
|
||||
:log-level :trace ;; the minimum logging level; one of
|
||||
;; :trace :debug :info :warn :error :fatal
|
||||
:passwd "resources/passwd"
|
||||
;; where the password file is stored
|
||||
|
|
|
|||
|
|
@ -135,10 +135,10 @@ nicht finden; wahrscheinlich wegen einer Fehlkonfiguration oder fehlenden Umgebu
|
|||
;; text of the is admin widget prompt on edit user page
|
||||
:user-title-prefix "Benutzer bearbeiten" ;; prefix for title of edit user page
|
||||
:vers-col-hdr "Version" ;; header for the version column in history
|
||||
:what-col-hdr "Wann" ;; header for the what column in history
|
||||
:what-col-hdr "Wass" ;; header for the what column in history
|
||||
:what-changed-prompt "Was haben Sie verändert?"
|
||||
;; text of the summary widget prompt on edit
|
||||
;; content page
|
||||
:when-col-hdr "When" ;; header for the when column in history
|
||||
:when-col-hdr "Was" ;; header for the when column in history
|
||||
:your-uname-prompt "Ihr Benutzername" ;; text of the username widget prompt on the login page
|
||||
}
|
||||
|
|
|
|||
1
resources/i18n/de.edn
Symbolic link
1
resources/i18n/de.edn
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
de-DE.edn
|
||||
1
resources/i18n/lt.edn
Symbolic link
1
resources/i18n/lt.edn
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
lt_LT.edn
|
||||
1
resources/i18n/ru.edn
Symbolic link
1
resources/i18n/ru.edn
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
ru_RU.edn
|
||||
|
|
@ -17,6 +17,9 @@ Smeagol uses the Markdown format as provided by [markdown-clj](https://github.co
|
|||
## Security and authentication
|
||||
Smeagol now has good security and authentication. While the initial password supplied with the system is not encrypted, when it is changed it will be; and passwords for new users added through the user administration pages are encrypted. Read more about [[Security and authentication]].
|
||||
|
||||
## Internationalisation
|
||||
Smeagol has built in internationalisation. Currently it has translation files for English, German, Lithuanian and Russian. We'd welcome volunteers to translate it into other languages.
|
||||
|
||||
## Images
|
||||
You can (if you're logged in) upload files, including images, using the **Upload a file** link on the top menu bar. You can link to an uploaded image, or to other images already available on the web, like this:
|
||||
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@
|
|||
(timbre/info (format "Showing history of page '%s'" page))
|
||||
(layout/render "history.html"
|
||||
(merge (util/standard-params request)
|
||||
{:title (str "History of " page)
|
||||
{:title (util/get-message :history-title-prefix request)
|
||||
:page page
|
||||
:history (hist/find-history repo-path file-name)}))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue