more wordsmithing

pull/1/head
Andromeda Yelton 2012-05-12 11:58:33 -04:00
parent 8e3baba673
commit 83730badbb
11 changed files with 99 additions and 28 deletions

View File

@ -125,17 +125,56 @@ successful_campaign.connect(notify_successful_campaign)
# The notification templates need some context; I'm making a note of that here
# This can be removed as the relevant functions are written
# if there is a campaign.rightsholder property accessible from template (which would
# be awesome), we no longer need rightsholder as context in cases where we have
# campaign (and cases where we have rightsholder and work but not campaign, we could
# pass campaign instead)
# PLEDGE_CHARGED:
# 'site': (site)
# 'rightsholder': (rightsholder name)
# 'amount': (amount supporter's card will be charged)
# 'premium': (premium requested by the supporter)
# 'work': (campaign.work)
# 'payment_processor': (the payment processor)
# PLEDGE_CHANGE_STATUS:
# 'site': (site)
# 'work': (campaign.work)
# 'rightsholder': (rightsholder name)
# 'amount': (amount supporter's card will be charged)
# 'premium': (premium requested by the supporter)
# RIGHTS_HOLDER_CLAIM_APPROVED:
# 'site': (site)
# 'claim': (claim)
# RIGHTS_HOLDER_CREATED: (no context needed)
# note -- it might be that wishlist_near_target and wishlist_near_deadline would
# both be triggered at about the same time -- do we want to prevent supporters
# from getting both within a small time frame? if so which supersedes?
# WISHLIST_NEAR_DEADLINE:
# 'site': (site)
# 'campaign': (the campaign)
# 'pledged': (true if the supporter has pledged, false otherwise)
# 'amount': (amount the supporter has pledged; only needed if pledged is true)
# 'rightsholder': (the rights holder's name)
# WISHLIST_NEAR_TARGET:
# 'site': (site)
# 'campaign': (the campaign)
# 'pledged': (true if the supporter has pledged, false otherwise)
# 'amount': (amount the supporter has pledged; only needed if pledged is true)
# 'rightsholder': (the rights holder's name)
# WISHLIST_PREMIUM_LIMITED_SUPPLY:
# (note we should not send this to people who have already claimed this premium)
# should we only send this to people who haven't pledged at all, or whose pledge
# is smaller than the amount of this premium? (don't want to encourage people to
# lower their pledge)
# the text assumes there is only 1 left -- if we're going to send at some other
# threshhold this will need to be revised
# 'rightsholder': (rightsholder)
# 'campaign': (campaign)
# 'premium': (the premium in question)
# 'site': (site)
# WISHLIST_PRICE_DROP:
# 'rightsholder'
# 'campaign'
# 'pledged': (true if recipient has pledged to campaign, otherwise false)
# 'amount': (amount recipient has pledged, only needed if pledged=True)
# 'site'

View File

@ -1,6 +1,6 @@
Congratulations! Your claim to {{ claim.work }} on Unglue.it has been approved.
You are now free to run a campaign to unglue your work. If you're logged in, you will see the option to open a campaign at https://unglue.it/rightsholders . (You can also find this page by clicking on "Rights Holder Tools" at the bottom of any Unglue.it page.)
You are now free to run a campaign to unglue your work. If you're logged in, you will see the option to open a campaign at https://{{ site.domain }}/rightsholders . (You can also find this page by clicking on "Rights Holder Tools" at the bottom of any Unglue.it page.)
To run a campaign, you'll need to select a target price and a deadline. You'll also need to write a pitch. This will appear in the Description tab on your book's page (https://{{ site.domain }}{% url work claim.work.id %}). Think about who your book's audience is, and remind them why they love this book -- your pitch is not a catalog page! We encourage video, audio, and links to make your pitch come alive. Feel free to email us (rights@gluejar.com) if you need any help with this.

View File

@ -2,11 +2,11 @@ Congratulations, you wished for it, and now there is an active Campaign for {{ c
You can help!
Pledge toward ungluing. https://{{ site.domain }}/{% url pledge work_id=campaign.work.id %}
Pledge toward ungluing. https://{{ site.domain }}{% url pledge work_id=campaign.work.id %}
Tell your friends -- there are handy share options on the campaign page. There's even a widget you can put on your blog or home page. https://{{ site.domain }}/{% url work campaign.work.id %}
Tell your friends -- there are handy share options on the campaign page. There's even a widget you can put on your blog or home page. https://{{ site.domain }}{% url work campaign.work.id %}
Join the discussion: share why you love {{ campaign.work.title }} and the world will too. https://{{ site.domain }}/{% url work campaign.work.id %}?tab=2
Join the discussion: share why you love {{ campaign.work.title }} and the world will too. https://{{ site.domain }}{% url work campaign.work.id %}?tab=2
Thank you!

View File

@ -1,7 +1,26 @@
Message! About {{ campaign.work.title}}
(http://{{site.domain}}{% url work campaign.work.id %}?tab=2) something.
You will something.
{% if campaign.left > 0 %}
The campaign to unglue a book you've wishlisted, {{ campaign.work.title}}, is almost out of time. We need to raise ${{ campaign.left }} more by {{ campaign.deadline }} in order to give this book to the world.
{% if pledged %}
Your pledge of {{ amount }} is helping {{ campaign.work.title }} to reach its goal, but we can only unglue this book if the campaign succeeds. You can help your pledge go farther by sharing the campaign (https://{{ site.domain }}{% url work work_id=campaign.work.id %}) with your friends through your favorite media: tweet, Facebook, Tumblr, blog, G+, Pinterest, email, carrier pigeon, or good old-fashioned conversation.
{% else %}
We need your pledge to reach this target. Any amount helps. You can chip in towards giving this book to the world at https://{{ site.domain }}{% url pledge work_id=campaign.work.id %} .
You can also help by sharing the campaign (https://{{ site.domain }}{% url work work_id=campaign.work.id %}) with your friends through your favorite media: tweet, Facebook, Tumblr, blog, G+, Pinterest, email, carrier pigeon, or good old-fashioned conversation.
{% endif %}
Thank you!
You will be also something.
{% else %}
The campaign to unglue a book you've wishlisted, {{ campaign.work.title}}, is on track to succeed! It has met its target price of {{ campaign.target }} and will close soon.
{% if pledged %}
Your pledge of {{ amount }} is helping us give this book to the world. Thank you! When the campaign closes, we'll be in touch about how and when you'll receive your premiums.
{% else %}
If you wanted to support this campaign, this is your last chance. Pledge by midnight (Eastern US time) if you want to help the campaign or receive any premiums: https://{{ site.domain }}{% url pledge work_id=campaign.work.id %}
{% endif %}
Thanks to ungluers like you, we'll soon be able to give this book to the world together. Hooray!
{% endif %}
Give ebooks to the world; give income to authors and publishers. Unglue.it.
{{ rightsholder }} and the Unglue.it team

View File

@ -1 +1 @@
blurb for {{campaign.work.title}}
{{campaign.work.title}} is running out of time

View File

@ -1,7 +1,13 @@
Message! About {{ campaign.work.title}}
(http://{{site.domain}}{% url work campaign.work.id %}?tab=2) something.
You will something.
The campaign to unglue a book you've wishlisted, {{ campaign.work.title}}, is close to succeeding! We only need to raise ${{ campaign.left }} more by {{ campaign.deadline }} in order to give this book to the world.
You will be also something.
{% if pledged %}
Your pledge of {{ amount }} is helping {{ campaign.work.title }} to reach its goal, but we can only unglue this book if the campaign succeeds. You can tip the balance by sharing the campaign (https://{{ site.domain }}{% url work work_id=campaign.work.id %}) with your friends through your favorite media: tweet, Facebook, Tumblr, blog, G+, Pinterest, email, carrier pigeon, or good old-fashioned conversation.
{% else %}
We need your pledge to reach this target. Any amount helps. You can chip in towards giving this book to the world at https://{{ site.domain }}{% url pledge work_id=campaign.work.id %} .
You can also help by sharing the campaign (https://{{ site.domain }}{% url work work_id=campaign.work.id %}) with your friends through your favorite media: tweet, Facebook, Tumblr, blog, G+, Pinterest, email, carrier pigeon, or good old-fashioned conversation.
{% endif %}
Give ebooks to the world; give income to authors and publishers. Unglue.it.
Thank you!
{{ rightsholder }} and the Unglue.it team

View File

@ -1 +1 @@
blurb for {{campaign.work.title}}
The campaign for {{campaign.work.title}} has almost succeeded!

View File

@ -1,7 +1,8 @@
Message! About {{ campaign.work.title}}
(http://{{site.domain}}{% url work campaign.work.id %}?tab=2) something.
You will something.
Did you want one of the limited-edition premiums for the campaign to unglue {{ campaign.work.title }}? This is your last chance -- there's only one left!
You will be also something.
Premium: {{ premium.description }}
Amount: {{ premium.amount }}
Give ebooks to the world; give income to authors and publishers. Unglue.it.
If you'd like to claim the last one, pledge here: https://{{ site.domain }}{% url pledge work_id=campaign.work.id %}
{{ rightsholder }} (rights holder for {{ campaign.work.title }}) and the Unglue.it team

View File

@ -1 +1 @@
blurb for {{campaign.work.title}}
Last chance for a limited-edition premium for {{campaign.work.title}}

View File

@ -1,7 +1,13 @@
Message! About {{ campaign.work.title}}
(http://{{site.domain}}{% url work campaign.work.id %}?tab=2) something.
You will something.
Good news! The rights holder, {{ rightsholder }}, has lowered the target price to ${{ campaign.target }} for {{ campaign.work.title }}. Now we only need to raise ${{ campaign.left }} by {{ campaign.deadline }} in order to give this book to the world.
You will be also something.
{% if pledged %}
Your pledge of {{ amount }} is now going even farther toward helping {{ campaign.work.title }} to reach its goal. Still, we can only unglue this book if the campaign succeeds. You can help by sharing the campaign (https://{{ site.domain }}{% url work work_id=campaign.work.id %}) with your friends through your favorite media: tweet, Facebook, Tumblr, blog, G+, Pinterest, email, carrier pigeon, or good old-fashioned conversation.
{% else %}
The target may be lower, but we still need your help to reach it. Pledges of any amount help. You can chip in towards giving this book to the world at https://{{ site.domain }}{% url pledge work_id=campaign.work.id %} .
You can also help by sharing the campaign (https://{{ site.domain }}{% url work work_id=campaign.work.id %}) with your friends through your favorite media: tweet, Facebook, Tumblr, blog, G+, Pinterest, email, carrier pigeon, or good old-fashioned conversation.
{% endif %}
Give ebooks to the world; give income to authors and publishers. Unglue.it.
Thank you!
{{ rightsholder }} and the Unglue.it team

View File

@ -1 +1 @@
blurb for {{campaign.work.title}}
It just got easier to unglue {{campaign.work.title}}!