Hi
This phrase is not translatable due to lack of t() function.
NOTE: False claims may lead to termination of your account on our site.

Solution:
I have added the t() function as follows in nodeownership.module:
'#value' =>'<br/><br/>'. t('NOTE: False claims may lead to termination of your account on our site.'),

Comments

lameei’s picture

This one is also the same as #1:
drupal_set_message('Your claim has been recorded and a mail has been sent to admin. We will contact you shortly.');

gauravkumar87’s picture

Assigned: Unassigned » gauravkumar87
gauravkumar87’s picture

Fixed in the 7.x dev branch, will add to the 6.x branch.

Gaurav

gauravkumar87’s picture

Issue summary: View changes

Solution added.

Pradnya Pingat’s picture

Assigned: gauravkumar87 » Pradnya Pingat
Issue summary: View changes
Status: Active » Needs review
StatusFileSize
new1.11 KB
ashishdalvi’s picture

Status: Needs review » Needs work
+++ b/nodeownership.module
@@ -254,7 +254,7 @@ function nodeownership_claim_form($form_state, $nid) {
+    '#value' => '<br/><br/> '.t('NOTE: False claims may lead to termination of your account on our site.'),

Minor Improvement required in patch.

Always use a space between the dot and the concatenated parts to improve readability.

https://www.drupal.org/coding-standards#concat

Sonal.Sangale’s picture

Sonal.Sangale’s picture

Status: Needs work » Needs review
StatusFileSize
new1.11 KB

Added space between string and concatenation operator.

ashishdalvi’s picture

Status: Needs review » Reviewed & tested by the community

ashishdalvi’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.