From 141d8fa1050747778739c914c1e7477eea519143 Mon Sep 17 00:00:00 2001 From: Bill Dengler Date: Sun, 12 Apr 2015 17:42:02 -0400 Subject: [PATCH] Improved strings for sounds tutorial. --- .../soundsTutorial_constants.py | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/src/extra/SoundsTutorial/soundsTutorial_constants.py b/src/extra/SoundsTutorial/soundsTutorial_constants.py index 9af85ee2..1f79dd5f 100644 --- a/src/extra/SoundsTutorial/soundsTutorial_constants.py +++ b/src/extra/SoundsTutorial/soundsTutorial_constants.py @@ -1,25 +1,25 @@ # -*- coding: utf-8 -*- -actions = [ ("audio", _(u"The tweet may contain a playable audio")), - ("create_timeline", _(u"A timeline has been created")), - ("delete_timeline", _(u"A timeline has been deleted")), - ("dm_received", _(u"You've received a direct message")), - ("dm_sent", _(u"You've sent a direct message")), - ("error", _(u"A bug has happened")), - ("favourite", _(u"You've added a tweet to your favourites")), - ("favourites_timeline_updated", _(u"Someone's favourites have been updated")), - ("geo", _(u"The tweet has coordinates to determine its location")), -("limit", _(u"There are no more tweets to read")), - ("list_tweet", _(u"A list has a new tweet")), - ("max_length", _(u"You can't add any more characters on the tweet")), - ("mention_received", _(u"You've been mentioned ")), - ("new_event", _(u"A new event has happened")), - ("ready", _(u"TW Blue is ready ")), - ("reply_send", _(u"You've replied")), - ("retweet_send", _(u"You've retweeted")), - ("search_updated", _(u"A search has been updated")), - ("tweet_received", _(u"There's a new tweet in the main buffer")), - ("tweet_send", _(u"You've sent a tweet")), - ("trends_updated", _(u"A trending topic buffer has been updated")), - ("tweet_timeline", _(u"There's a new tweet in a timeline")), - ("update_followers", _(u"You have a new follower")), - ("volume_changed", _(u"You've turned the volume up or down"))] \ No newline at end of file +actions = [ ("audio", _(u"Audio tweet.")), + ("create_timeline", _(u"User-defined buffer created.")), + ("delete_timeline", _(u"User-defined buffer destroied.")), + ("dm_received", _(u"Direct message received.")), + ("dm_sent", _(u"Direct message sent.")), + ("error", _(u"Error.")), + ("favourite", _(u"You favorited a tweet.")), + ("favourites_timeline_updated", _(u"Someone's favourites have been updated.")), + ("geo", _(u"Geotweet.")), +("limit", _(u"Boundary reached.")), + ("list_tweet", _(u"List updated.")), + ("max_length", _(u"Too many characters.")), + ("mention_received", _(u"You've been mentioned.")), + ("new_event", _(u"New event.")), + ("ready", _(u"Application is ready.")), + ("reply_send", _(u"You've replied publicly.")), + ("retweet_send", _(u"You've retweeted.")), + ("search_updated", _(u"A search buffer has been updated.")), + ("tweet_received", _(u"New tweet in home buffer.")), + ("tweet_send", _(u"You've sent a tweet.")), + ("trends_updated", _(u"A trending topic buffer has been updated.")), + ("tweet_timeline", _(u"New tweet in user-defined buffer.")), + ("update_followers", _(u"New follower.")), + ("volume_changed", _(u"Volume changed."))] \ No newline at end of file