Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
drupal.org
clientside_validation
Commits
bcdf9db4
Commit
bcdf9db4
authored
Sep 02, 2013
by
lkmorlan
Committed by
Jelle
Sep 02, 2013
Browse files
Issue #2055923 by Liam Morland: Fixed Grammer error: to 'be' different.
parent
6a70c829
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
clientside_validation.module
clientside_validation.module
+1
-1
clientside_validation.strings.php
clientside_validation.strings.php
+1
-1
No files found.
clientside_validation.module
View file @
bcdf9db4
...
...
@@ -961,7 +961,7 @@ function _clientside_validation_set_not_equal($name, $title, $elements, &$js_rul
}
if
(
empty
(
$message
))
{
$variables
=
array
(
'message'
=>
'!title field has to different from !firstone'
,
'message'
=>
'!title field has to
be
different from !firstone'
,
'placeholders'
=>
array
(
'!title'
=>
$title
,
'!firstone'
=>
theme
(
'item_list'
,
$items
)),
'error_type'
=>
'notequalto'
,
'element_name'
=>
$name
,
...
...
clientside_validation.strings.php
View file @
bcdf9db4
...
...
@@ -18,7 +18,7 @@ t('!title field has to have maximum !max words.', array('!title' => 'title', '!m
t
(
'!title field can not contain any HTML tags'
,
array
(
'!title'
=>
'title'
));
t
(
'!title field can not contain any HTML tags exept !allowed'
,
array
(
'!title'
=>
'title'
,
'!allowed'
=>
'a'
));
t
(
'!title field has to be equal to !firstone.'
,
array
(
'!title'
=>
'title'
,
'!firstone'
=>
'title2'
));
t
(
'!title field has to different from !firstone'
,
array
(
'!title'
=>
'title'
,
'!firstone'
=>
'title2'
));
t
(
'!title field has to
be
different from !firstone'
,
array
(
'!title'
=>
'title'
,
'!firstone'
=>
'title2'
));
t
(
'!title field has to be one of the following values: !values.'
,
array
(
'!title'
=>
'title'
,
'!values'
=>
'value1, value2'
));
t
(
'!title field must consist of following elements only: !elements.'
,
array
(
'!title'
=>
'title'
,
'!elements'
=>
'element1, element2'
));
t
(
'!title field can not consist of following elements: !elements.'
,
array
(
'!title'
=>
'title'
,
'!elements'
=>
'element1, element2'
));
...
...
Write
Preview
Markdown
is supported
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