Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubes
forgotpwd
Commits
a4ebd5f159ef
Commit
cef2bb99
authored
Jan 14, 2014
by
Dimitri Papadopoulos
Browse files
English typography (closes #3313805)
No space before question marks
parent
ba09a09dd8dd
Changes
5
Hide whitespace changes
Inline
Side-by-side
i18n/en.po
View file @
a4ebd5f1
...
...
@@ -18,7 +18,7 @@ msgstr ""
msgid "An error occured, this email address is unknown."
msgstr ""
msgid "Forgot your password
?"
msgid "Forgot your password?"
msgstr ""
# schema pot file, generated on 2010-01-21 16:01:14
...
...
i18n/es.po
View file @
a4ebd5f1
...
...
@@ -18,7 +18,7 @@ msgstr ""
msgid "An error occured, this email address is unknown."
msgstr ""
msgid "Forgot your password
?"
msgid "Forgot your password?"
msgstr ""
# schema pot file, generated on 2010-01-21 16:01:14
...
...
i18n/fr.po
View file @
a4ebd5f1
...
...
@@ -20,7 +20,7 @@ msgstr ""
msgid "An error occured, this email address is unknown."
msgstr "Cette adrese électronique est inconnue."
msgid "Forgot your password
?"
msgid "Forgot your password?"
msgstr "Mot de passe oublié ?"
# schema pot file, generated on 2010-01-21 16:19:37
...
...
setup.py
View file @
a4ebd5f1
...
...
@@ -116,7 +116,7 @@ def export(from_dir, to_dir,
try
:
os
.
mkdir
(
to_dir
)
except
OSError
,
ex
:
# file exists
?
# file exists?
import
errno
if
ex
.
errno
!=
errno
.
EEXIST
:
raise
...
...
views.py
View file @
a4ebd5f1
...
...
@@ -28,7 +28,7 @@ class LogFormView(basetemplates.LogFormView):
self
.
w
(
u
'<span class="forgotpwdLink"><a href="%s">%s</a></span>'
%
(
xml_escape
(
self
.
_cw
.
build_url
(
'forgottenpassword'
,
base_url
=
self
.
_cw
.
vreg
.
config
[
'base-url'
])),
self
.
_cw
.
_
(
'Forgot your password
?'
)))
self
.
_cw
.
_
(
'Forgot your password?'
)))
# First form, send an email
...
...
@@ -53,7 +53,7 @@ class ForgottenPasswordFormView(form.FormViewMixIn, StartupView):
def
call
(
self
):
form
=
self
.
_cw
.
vreg
[
'forms'
].
select
(
'forgottenpassword'
,
self
.
_cw
)
self
.
w
(
u
'<p>%s</p>'
%
self
.
_cw
.
_
(
u
'Forgot your password
?'
))
self
.
w
(
u
'<p>%s</p>'
%
self
.
_cw
.
_
(
u
'Forgot your password?'
))
form
.
render
(
w
=
self
.
w
)
class
ForgottenPasswordSendMailController
(
controller
.
Controller
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment