Skip to content

Instantly share code, notes, and snippets.

@olleolleolle
Created March 14, 2011 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olleolleolle/52c860383144ecc79e27 to your computer and use it in GitHub Desktop.
Save olleolleolle/52c860383144ecc79e27 to your computer and use it in GitHub Desktop.
diff --git a/README.md b/README.md
index a3317c1..9315b7c 100644
--- a/README.md
+++ b/README.md
@@ -11,12 +11,12 @@ What is this?
[Thinglink.com](http://Thinglink.com) is a web service that allows regions in images to be "tagged" in
a manner similar to that you may be used to from Flickr's "Add Notes" feature.
-The Thinglink API supports to embedding of an "in-place tagging tool on third-
+The Thinglink API supports embedding of an "in-place tagging tool on third-
party websites that allows images to be tagged without the need to visit the
-Thinglink.com site.
+Thinglink.com site."
This Drupal module enables this process for a Drupal site: once installed and
-configured, the module automatically adds the necessary Thinglink Javascript
+configured, the module automatically adds the necessary Thinglink JavaScript
to every image on your Drupal site, allowing you to add tags, share the image,
and obtain an image embed code directly on your site.
@@ -30,4 +30,4 @@ How to Install
You should now find all images on your site automatically have the Thinglink
tagging tool enabled: just hover over an image and you should see the
-Thinglink toolbar in the top-left.
\ No newline at end of file
+Thinglink toolbar in the top-left corner.
\ No newline at end of file
diff --git a/thinglink.info b/thinglink.info
index 5a9c86d..8fb6b91 100755
--- a/thinglink.info
+++ b/thinglink.info
@@ -1,3 +1,3 @@
name = Thinglink
-description = Add Thinglink "personal tagging tool" Javascript to all pages. Requires a (free) account from Thinglink.com.
+description = Add Thinglink "personal tagging tool" JavaScript to all pages. Requires a (free) account from Thinglink.com.
core = 6.x
\ No newline at end of file
diff --git a/thinglink.module b/thinglink.module
index 12ed737..8fbd545 100755
--- a/thinglink.module
+++ b/thinglink.module
@@ -49,7 +49,7 @@ function thinglink_admin_settings_form(&$form_state) {
'#size' => 45,
'#maxlength' => 100,
'#required' => TRUE,
- '#description' => t('The URL for the Thinglink Javascript code. Likely no reason to change this, but see <a href="@url">Thinglink website</a> if needed.', array('@url' => 'http://www.thinglink.com/action/massembed')),
+ '#description' => t('The URL for the Thinglink JavaScript code. Likely no reason to change this, but see <a href="@url">Thinglink website</a> if needed.', array('@url' => 'http://www.thinglink.com/action/massembed')),
);
return system_settings_form($form);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment