mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
#32: Fix, and it's rather wonderful.
This commit is contained in:
parent
b6a2bdd4bc
commit
420dcb8016
4 changed files with 382 additions and 42 deletions
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
;;; en-GB.edn: English-language messages.
|
||||
;;; This is essentially all the text in the chrome - that which isn't editable
|
||||
;;; through the wiki itself
|
||||
;;; through the wiki itself; and the test in the sanity check report.
|
||||
|
||||
;; ; ; ; ; ; ; ; ; ;
|
||||
{:add-user-label "Add new user" ;; label for the add user link on edit users page
|
||||
|
|
@ -46,6 +46,12 @@
|
|||
;; error text if proposed password is too short
|
||||
:chpass-title-prefix "Change password for"
|
||||
;; prefix for title of change password page
|
||||
:content-dir "The content directory"
|
||||
;; used in sanity check report
|
||||
:content-dir-exists "The content directory exists"
|
||||
;; used in sanity check report
|
||||
:content-dir-is-dir "The content directory is a directory"
|
||||
;; used in sanity check report
|
||||
:cookies-about "About cookies" ;; about cookies text
|
||||
:cookies-more "This website stores session information as a 'cookie' on your browser. This helps us show you the content you want to see. This cookie does not identify you, and cannot be read by other websites. It is deleted by your browser as soon as you leave this site. This website does not use any third party cookies, so your visit here cannot be tracked by other websites."
|
||||
;; more about cookies text
|
||||
|
|
@ -57,6 +63,8 @@
|
|||
;; confirmation message on deletion of user
|
||||
:diff-title-prefix "Changes since version"
|
||||
;; prefix for the header of the changes page
|
||||
:does-not-exist "does not exist"
|
||||
;; (of a file or directory); used in sanity check report
|
||||
:edit-col-hdr "Edit" ;; header for edit column on edit users page
|
||||
:edit-page-link "Edit this page"
|
||||
;; text of the edit page link on the content frame
|
||||
|
|
@ -65,12 +73,21 @@
|
|||
:edit-users-title "Select user to edit"
|
||||
;; title of edit users page
|
||||
:email-prompt "Email address" ;; text of the email widget prompt on edit user page
|
||||
:file-or-directory "File or directory"
|
||||
;; used in sanity check report
|
||||
:file-upload-link-text "You may link to this file using a link of the form"
|
||||
;; Text introducing the link to an uploaded file
|
||||
:file-upload-prompt "File to upload" ;; prompt string for the file upload widget
|
||||
:file-upload-title "Upload a file" ;; title for the file upload page
|
||||
:is-admin-prompt "Is administrator?"
|
||||
:here "here" ;; used in sanity check report
|
||||
:home-link "Home" ;; text of the home link on the menu
|
||||
:is-not-directory "is not a directory"
|
||||
;; (of a file or directory) used in sanity check report
|
||||
:is-not-readable "is not readable"
|
||||
;; (of a file or directory) used in sanity check report
|
||||
:is-not-writable "is not writable"
|
||||
;; (of a file or directory) used in sanity check report
|
||||
:login-label "Log in!" ;; text of the login widget on the login page
|
||||
:login-link "Log in" ;; text of the login link on the menu
|
||||
:login-prompt "To edit this wiki"
|
||||
|
|
@ -83,9 +100,15 @@
|
|||
:history-title-prefix "History of" ;; prefix of the title on the history page
|
||||
:new-pass-prompt "New password" ;; text of the new password widget prompt on the change
|
||||
;; password and edit user pages
|
||||
:no-admin-users "There are no users in the 'passwd' file with administrative privileges"
|
||||
;; used in sanity check report
|
||||
:old-pass-prompt "Your password"
|
||||
;; text of the old password widget prompt on the change
|
||||
;; password page, and password widget on login page
|
||||
:password-file "the password ('passwd') file"
|
||||
;; used in sanity check report
|
||||
:problems-found "problems were found"
|
||||
;; used in sanity check report
|
||||
:rpt-pass-prompt "And again" ;; text of the new password widget prompt on the change
|
||||
;; password and edit user pages
|
||||
:save-prompt "When you have finished editing"
|
||||
|
|
@ -94,6 +117,17 @@
|
|||
:save-label "Save!" ;; text of the save widget itself
|
||||
:save-user-fail "Failed to store user"
|
||||
:save-user-success "Successfully stored user"
|
||||
:see-documentation "For more information please see documentation "
|
||||
;; used in sanity check report
|
||||
:smeagol-not-initialised
|
||||
"Smeagol is not initialised correctly"
|
||||
;; title of the sanity check report
|
||||
:smeagol-misconfiguration
|
||||
"Smeagol has been unable to find some of the resources on which it depends,
|
||||
possibly because of misconfiguration or missing environment variables."
|
||||
;; used in sanity check report
|
||||
:user-lacks-field "User record in the passwd file lacks a field"
|
||||
;; used in sanity check report
|
||||
:username-prompt "Username" ;; text of the username widget prompt on edit user page
|
||||
;; text of the is admin widget prompt on edit user page
|
||||
:user-title-prefix "Edit user" ;; prefix for title of edit user page
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ del {
|
|||
color: red;
|
||||
}
|
||||
|
||||
div.content, form, p, pre, h1, h2, h3, h4, h5 {
|
||||
div.content, div.error, div.message, form, p, pre, h1, h2, h3, h4, h5 {
|
||||
padding: 0.1em 5% 0 5%;
|
||||
}
|
||||
|
||||
|
|
@ -42,6 +42,14 @@ dl, menu, ol, table, ul {
|
|||
margin: 0.25em 5%;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dd {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* footer of the page - not-editable, provided by Smeagol */
|
||||
footer {
|
||||
border-top: thin solid gray;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue